diff --git a/src/compiler/_namespaces/ts.ts b/src/compiler/_namespaces/ts.ts index bd9684e481982..55b8ebe5e0811 100644 --- a/src/compiler/_namespaces/ts.ts +++ b/src/compiler/_namespaces/ts.ts @@ -66,6 +66,7 @@ export * from "../builderStatePublic.js"; export * from "../builderState.js"; export * from "../builder.js"; export * from "../builderPublic.js"; +export * from "../sharedResolutionCache.js"; export * from "../resolutionCache.js"; export * from "../watch.js"; export * from "../watchPublic.js"; diff --git a/src/compiler/moduleNameResolver.ts b/src/compiler/moduleNameResolver.ts index 3fa7da5d5c960..a025d2cc772e2 100644 --- a/src/compiler/moduleNameResolver.ts +++ b/src/compiler/moduleNameResolver.ts @@ -58,10 +58,12 @@ import { hasProperty, hasTrailingDirectorySeparator, hostGetCanonicalFileName, + identity, inferredTypesContainingFile, isArray, isDeclarationFileName, isExternalModuleNameRelative, + isResolvedWithGlobalCachePass, isRootedDiskPath, isString, lastOrUndefined, @@ -253,6 +255,33 @@ function createResolvedModuleWithFailedLookupLocationsHandlingSymlink( ); } +function updateResultFromCache( + resultFromCache: ResolvedModuleWithFailedLookupLocations, + failedLookupLocations: string[], + affectingLocations: string[], + diagnostics: Diagnostic[], +) { + resultFromCache.failedLookupLocations = updateResolutionField(resultFromCache.failedLookupLocations, failedLookupLocations); + resultFromCache.affectingLocations = updateResolutionField(resultFromCache.affectingLocations, affectingLocations); + resultFromCache.resolutionDiagnostics = updateResolutionField(resultFromCache.resolutionDiagnostics, diagnostics); +} + +function updatePrimaryAndGlobalCacheResolution( + primaryWithGlobalCacheResult: ResolvedModuleWithFailedLookupLocations, + failedLookupLocations: string[], + affectingLocations: string[], + diagnostics: Diagnostic[], +) { + updateResultFromCache(primaryWithGlobalCacheResult, failedLookupLocations, affectingLocations, diagnostics); + if (primaryWithGlobalCacheResult.globalCacheResolution!.globalResult!.resolvedModule) { + updateResultFromCache(primaryWithGlobalCacheResult.globalCacheResolution!.globalResult!, failedLookupLocations, affectingLocations, diagnostics); + } + else { + primaryWithGlobalCacheResult.globalCacheResolution!.globalResult!.failedLookupLocations = primaryWithGlobalCacheResult.failedLookupLocations; + primaryWithGlobalCacheResult.globalCacheResolution!.globalResult!.affectingLocations = primaryWithGlobalCacheResult.affectingLocations; + primaryWithGlobalCacheResult.globalCacheResolution!.globalResult!.resolutionDiagnostics = primaryWithGlobalCacheResult.resolutionDiagnostics; + } +} function createResolvedModuleWithFailedLookupLocations( resolved: Resolved | undefined, isExternalLibraryImport: boolean | undefined, @@ -265,17 +294,25 @@ function createResolvedModuleWithFailedLookupLocations( ): ResolvedModuleWithFailedLookupLocations { if (resultFromCache) { if (!cache?.isReadonly) { - resultFromCache.failedLookupLocations = updateResolutionField(resultFromCache.failedLookupLocations, failedLookupLocations); - resultFromCache.affectingLocations = updateResolutionField(resultFromCache.affectingLocations, affectingLocations); - resultFromCache.resolutionDiagnostics = updateResolutionField(resultFromCache.resolutionDiagnostics, diagnostics); + // Handle the case where the result is from global cache or not!! + if (isResolvedWithGlobalCachePass(resultFromCache)) { + updatePrimaryAndGlobalCacheResolution(resultFromCache.globalCacheResolution.primary, failedLookupLocations, affectingLocations, diagnostics); + } + else if (resultFromCache.globalCacheResolution?.globalResult) { + updatePrimaryAndGlobalCacheResolution(resultFromCache, failedLookupLocations, affectingLocations, diagnostics); + } + else { + updateResultFromCache(resultFromCache, failedLookupLocations, affectingLocations, diagnostics); + } return resultFromCache; } else { return { - ...resultFromCache, + resolvedModule: resultFromCache.resolvedModule, failedLookupLocations: initializeResolutionFieldForReadonlyCache(resultFromCache.failedLookupLocations, failedLookupLocations), affectingLocations: initializeResolutionFieldForReadonlyCache(resultFromCache.affectingLocations, affectingLocations), resolutionDiagnostics: initializeResolutionFieldForReadonlyCache(resultFromCache.resolutionDiagnostics, diagnostics), + alternateResult: resultFromCache.alternateResult, }; } } @@ -297,8 +334,7 @@ function createResolvedModuleWithFailedLookupLocations( function initializeResolutionField(value: T[]): T[] | undefined { return value.length ? value : undefined; } -/** @internal */ -export function updateResolutionField(to: T[] | undefined, value: T[] | undefined): T[] | undefined { +function updateResolutionField(to: T[] | undefined, value: T[] | undefined): T[] | undefined { if (!value?.length) return to; if (!to?.length) return value; to.push(...value); @@ -635,11 +671,14 @@ export function resolveTypeReferenceDirective(typeReferenceDirectiveName: string affectingLocations: initializeResolutionField(affectingLocations), resolutionDiagnostics: initializeResolutionField(diagnostics), }; - if (containingDirectory && cache && !cache.isReadonly) { - cache.getOrCreateCacheForDirectory(containingDirectory, redirectedReference).set(typeReferenceDirectiveName, /*mode*/ resolutionMode, result); - if (!isExternalModuleNameRelative(typeReferenceDirectiveName)) { - cache.getOrCreateCacheForNonRelativeName(typeReferenceDirectiveName, resolutionMode, redirectedReference).set(containingDirectory, result); - } + if (containingDirectory) { + cache?.setPerDirectoryAndNonRelativeNameCacheResult( + typeReferenceDirectiveName, + resolutionMode, + containingDirectory, + redirectedReference, + result, + ); } if (traceEnabled) traceResult(result); return result; @@ -845,7 +884,10 @@ export function getAutomaticTypeDirectiveNames(options: CompilerOptions, host: M } export interface TypeReferenceDirectiveResolutionCache extends PerDirectoryResolutionCache, NonRelativeNameResolutionCache, PackageJsonInfoCache { - /** @internal */ clearAllExceptPackageJsonInfoCache(): void; +} + +/** @internal */ +export interface TypeReferenceDirectiveResolutionCache extends ModuleOrTypeReferenceResolutionCache { } export interface ModeAwareCache { @@ -853,7 +895,16 @@ export interface ModeAwareCache { set(key: string, mode: ResolutionMode, value: T): this; delete(key: string, mode: ResolutionMode): this; has(key: string, mode: ResolutionMode): boolean; - forEach(cb: (elem: T, key: string, mode: ResolutionMode) => void): void; + /** @internal*/ + forEach( + cb: ( + elem: T, + key: string, + mode: ResolutionMode, + modeAwareCacheKey: ModeAwareCacheKey, + ) => void, + ): void; + forEach(cb: (elem: T, key: string, mode: ResolutionMode) => void): void; // eslint-disable-line @typescript-eslint/unified-signatures size(): number; } @@ -883,19 +934,25 @@ export interface NonRelativeNameResolutionCache { * This updates the redirects map as well if needed so module resolutions are cached if they can across the projects */ update(options: CompilerOptions): void; + /** @internal */ moduleNameToDirectoryMap: CacheWithRedirects>; /** @internal */ isReadonly?: boolean; } export interface PerNonRelativeNameCache { get(directory: string): T | undefined; set(directory: string, result: T): void; + /** @internal */ set(directory: string, result: T, primary?: T): void; // eslint-disable-line @typescript-eslint/unified-signatures + /** @internal */ deleteByPath(directory: Path): void; + /** @internal */ directoryPathMap: Map; /** @internal */ isReadonly?: boolean; } export interface ModuleResolutionCache extends PerDirectoryResolutionCache, NonRelativeModuleNameResolutionCache, PackageJsonInfoCache { getPackageJsonInfoCache(): PackageJsonInfoCache; - /** @internal */ clearAllExceptPackageJsonInfoCache(): void; - /** @internal */ optionsToRedirectsKey: Map; +} + +/** @internal */ +export interface ModuleResolutionCache extends ModuleOrTypeReferenceResolutionCache { } /** @@ -963,12 +1020,21 @@ export interface CacheWithRedirects { getOrCreateMapOfCacheRedirects(redirectedReference: ResolvedProjectReference | undefined): Map; update(newOptions: CompilerOptions): void; clear(): void; + forEach(cb: (value: V, key: K, redirectsCacheKey: RedirectsCacheKey | undefined, map: Map) => void): void; + compact(availableOptions: Set): void; getOwnMap(): Map; + getOwnOptions(): CompilerOptions | undefined; + redirectsKeyToMap: Map>; } /** @internal */ export type RedirectsCacheKey = string & { __compilerOptionsKey: any; }; +/** @internal */ +export function computeRedirectsCacheKey(options: CompilerOptions) { + return getKeyForCompilerOptions(options, moduleResolutionOptionDeclarations) as RedirectsCacheKey; +} + function createCacheWithRedirects(ownOptions: CompilerOptions | undefined, optionsToRedirectsKey: Map): CacheWithRedirects { const redirectsMap = new Map>(); const redirectsKeyToMap = new Map>(); @@ -979,7 +1045,11 @@ function createCacheWithRedirects(ownOptions: CompilerOptions | undefined, getOrCreateMapOfCacheRedirects, update, clear, + forEach, + compact, getOwnMap: () => ownMap, + getOwnOptions: () => ownOptions, + redirectsKeyToMap, }; function getMapOfCacheRedirects(redirectedReference: ResolvedProjectReference | undefined): Map | undefined { @@ -1037,10 +1107,30 @@ function createCacheWithRedirects(ownOptions: CompilerOptions | undefined, function getRedirectsCacheKey(options: CompilerOptions) { let result = optionsToRedirectsKey.get(options); if (!result) { - optionsToRedirectsKey.set(options, result = getKeyForCompilerOptions(options, moduleResolutionOptionDeclarations) as RedirectsCacheKey); + optionsToRedirectsKey.set(options, result = computeRedirectsCacheKey(options)); } return result; } + + function forEach(cb: (value: V, key: K, redirectsCacheKey: RedirectsCacheKey | undefined, map: Map) => void) { + ownMap.forEach((value, key) => cb(value, key, /*redirectsCacheKey*/ undefined, ownMap)); + redirectsKeyToMap.forEach((map, redirectsCacheKey) => { + if (map !== ownMap) map.forEach((value, key) => cb(value, key, redirectsCacheKey, map)); + }); + } + + function compact(availableOptions: Set) { + const toDeleteRedirectsCacheKeys = new Set(redirectsKeyToMap.keys()); + optionsToRedirectsKey.forEach((key, options) => { + if (options === ownOptions || availableOptions.has(options)) { + toDeleteRedirectsCacheKeys.delete(key); + } + else { + redirectsMap.delete(options); + } + }); + toDeleteRedirectsCacheKeys.forEach(key => redirectsKeyToMap.delete(key)); + } } function createPackageJsonInfoCache(currentDirectory: string, getCanonicalFileName: (s: string) => string): PackageJsonInfoCache { @@ -1075,6 +1165,7 @@ function createPerDirectoryResolutionCache( getCanonicalFileName: GetCanonicalFileName, options: CompilerOptions | undefined, optionsToRedirectsKey: Map, + getValidResolution: (resolution: T | undefined) => T | undefined, ): PerDirectoryResolutionCache { const directoryToModuleNameMap = createCacheWithRedirects>(options, optionsToRedirectsKey); return { @@ -1100,7 +1191,7 @@ function createPerDirectoryResolutionCache( function getFromDirectoryCache(name: string, mode: ResolutionMode, directoryName: string, redirectedReference: ResolvedProjectReference | undefined) { const path = toPath(directoryName, currentDirectory, getCanonicalFileName); - return directoryToModuleNameMap.getMapOfCacheRedirects(redirectedReference)?.get(path)?.get(name, mode); + return getValidResolution(directoryToModuleNameMap.getMapOfCacheRedirects(redirectedReference)?.get(path)?.get(name, mode)); } } @@ -1133,7 +1224,7 @@ export function createModeAwareCache(): ModeAwareCache { forEach(cb) { return underlying.forEach((elem, key) => { const [specifier, mode] = memoizedReverseKeys.get(key)!; - return cb(elem, specifier, mode); + return cb(elem, specifier, mode, key); }); }, size() { @@ -1150,7 +1241,10 @@ export function createModeAwareCache(): ModeAwareCache { } function getOriginalOrResolvedModuleFileName(result: ResolvedModuleWithFailedLookupLocations) { - return result.resolvedModule && (result.resolvedModule.originalPath || result.resolvedModule.resolvedFileName); + const resolvedModule = !result.globalCacheResolution ? + result.resolvedModule : + result.globalCacheResolution.primary.resolvedModule; + return resolvedModule && (resolvedModule.originalPath || resolvedModule.resolvedFileName); } function getOriginalOrResolvedTypeReferenceFileName(result: ResolvedTypeReferenceDirectiveWithFailedLookupLocations) { @@ -1164,6 +1258,7 @@ function createNonRelativeNameResolutionCache( options: CompilerOptions | undefined, getResolvedFileName: (result: T) => string | undefined, optionsToRedirectsKey: Map, + getValidResolution: (resolution: T | undefined, forSet?: boolean) => T | undefined, ): NonRelativeNameResolutionCache { const moduleNameToDirectoryMap = createCacheWithRedirects>(options, optionsToRedirectsKey); return { @@ -1171,6 +1266,7 @@ function createNonRelativeNameResolutionCache( getOrCreateCacheForNonRelativeName, clear, update, + moduleNameToDirectoryMap, }; function clear() { @@ -1183,21 +1279,46 @@ function createNonRelativeNameResolutionCache( function getFromNonRelativeNameCache(nonRelativeModuleName: string, mode: ResolutionMode, directoryName: string, redirectedReference?: ResolvedProjectReference): T | undefined { Debug.assert(!isExternalModuleNameRelative(nonRelativeModuleName)); - return moduleNameToDirectoryMap.getMapOfCacheRedirects(redirectedReference)?.get(createModeAwareCacheKey(nonRelativeModuleName, mode))?.get(directoryName); + return moduleNameToDirectoryMap.getMapOfCacheRedirects(redirectedReference)?.get( + createModeAwareCacheKey(nonRelativeModuleName, mode), + )?.get(directoryName); } function getOrCreateCacheForNonRelativeName(nonRelativeModuleName: string, mode: ResolutionMode, redirectedReference?: ResolvedProjectReference): PerNonRelativeNameCache { Debug.assert(!isExternalModuleNameRelative(nonRelativeModuleName)); - return getOrCreateCache(moduleNameToDirectoryMap, redirectedReference, createModeAwareCacheKey(nonRelativeModuleName, mode), createPerModuleNameCache); + return getOrCreateCache( + moduleNameToDirectoryMap, + redirectedReference, + createModeAwareCacheKey(nonRelativeModuleName, mode), + createPerModuleNameCache, + ); } function createPerModuleNameCache(): PerNonRelativeNameCache { const directoryPathMap = new Map(); - return { get, set }; + return { get, set, deleteByPath, directoryPathMap }; function get(directory: string): T | undefined { - return directoryPathMap.get(toPath(directory, currentDirectory, getCanonicalFileName)); + return getByPath(toPath(directory, currentDirectory, getCanonicalFileName)); + } + + function getByPath(directoryPath: Path, primary?: T, forSet?: boolean): T | undefined { + const result = getValidResolution(directoryPathMap.get(directoryPath), forSet); + return !result || result === primary ? undefined : result; + } + + function deleteByPath(directory: Path) { + const existing = directoryPathMap.get(directory); + // Remove invalidated result from parent + if (existing) { + directoryPathMap.delete(directory); + withCommonPrefix( + directory, + getCommonPrefix(directory, existing), + parent => directoryPathMap.delete(parent), + ); + } } /** @@ -1211,35 +1332,53 @@ function createNonRelativeNameResolutionCache( * ] * this means that request for module resolution from file in any of these folder will be immediately found in cache. */ - function set(directory: string, result: T): void { + function set(directory: string, result: T, primary?: T): void { const path = toPath(directory, currentDirectory, getCanonicalFileName); // if entry is already in cache do nothing - if (directoryPathMap.has(path)) { + if (getByPath(path, primary, /*forSet*/ true)) { return; } + + // Remove invalidated result from parent + if (!primary) deleteByPath(path); + directoryPathMap.set(path, result); - const resolvedFileName = getResolvedFileName(result); // find common prefix between directory and resolved file name // this common prefix should be the shortest path that has the same resolution // directory: /a/b/c/d/e // resolvedFileName: /a/b/foo.d.ts // commonPrefix: /a/b // for failed lookups cache the result for every directory up to root - const commonPrefix = resolvedFileName && getCommonPrefix(path, resolvedFileName); + withCommonPrefix( + path, + getCommonPrefix(path, result), + parent => directoryPathMap.set(parent, result), + primary, + ); + } + + function withCommonPrefix( + path: Path, + commonPrefix: Path | undefined, + action: (parent: Path) => void, + primary?: T, + ) { let current = path; while (current !== commonPrefix) { const parent = getDirectoryPath(current); - if (parent === current || directoryPathMap.has(parent)) { + if (parent === current || getByPath(parent, primary, /*forSet*/ true)) { break; } - directoryPathMap.set(parent, result); + action(parent); current = parent; } } - function getCommonPrefix(directory: Path, resolution: string) { - const resolutionDirectory = toPath(getDirectoryPath(resolution), currentDirectory, getCanonicalFileName); + function getCommonPrefix(directory: Path, resolution: T) { + const resolvedFileName = getResolvedFileName(resolution); + if (!resolvedFileName) return undefined; + const resolutionDirectory = toPath(getDirectoryPath(resolvedFileName), currentDirectory, getCanonicalFileName); // find first position where directory and resolution differs let i = 0; @@ -1258,15 +1397,27 @@ function createNonRelativeNameResolutionCache( if (sep === -1) { return undefined; } - return directory.substr(0, Math.max(sep, rootLength)); + return directory.substr(0, Math.max(sep, rootLength)) as Path; } } } -interface ModuleOrTypeReferenceResolutionCache extends PerDirectoryResolutionCache, NonRelativeNameResolutionCache, PackageJsonInfoCache { +/** @internal */ +export interface ModuleOrTypeReferenceResolutionCache extends PerDirectoryResolutionCache, NonRelativeNameResolutionCache, PackageJsonInfoCache { getPackageJsonInfoCache(): PackageJsonInfoCache; - clearAllExceptPackageJsonInfoCache(): void; + gc(setOrMapToCheckPresence: Set | Map): void; + compact(availableOptions?: Set, skipOptionsToRedirectsKeyCleanup?: boolean): void; + setPerDirectoryAndNonRelativeNameCacheResult( + name: string, + mode: ResolutionMode, + directoryName: string, + redirectedReference: ResolvedProjectReference | undefined, + result: T, + primary?: T, + ): void; + options: () => CompilerOptions; optionsToRedirectsKey: Map; + print(): void; } function createModuleOrTypeReferenceResolutionCache( currentDirectory: string, @@ -1275,13 +1426,16 @@ function createModuleOrTypeReferenceResolutionCache( packageJsonInfoCache: PackageJsonInfoCache | undefined, getResolvedFileName: (result: T) => string | undefined, optionsToRedirectsKey: Map | undefined, + getValidResolution: ((resolution: T | undefined) => T | undefined) | undefined, ): ModuleOrTypeReferenceResolutionCache { optionsToRedirectsKey ??= new Map(); + getValidResolution ??= identity; const perDirectoryResolutionCache = createPerDirectoryResolutionCache( currentDirectory, getCanonicalFileName, options, optionsToRedirectsKey, + getValidResolution, ); const nonRelativeNameResolutionCache = createNonRelativeNameResolutionCache( currentDirectory, @@ -1289,33 +1443,104 @@ function createModuleOrTypeReferenceResolutionCache( options, getResolvedFileName, optionsToRedirectsKey, + getValidResolution, ); packageJsonInfoCache ??= createPackageJsonInfoCache(currentDirectory, getCanonicalFileName); - return { + const cache: ModuleOrTypeReferenceResolutionCache = { ...packageJsonInfoCache, ...perDirectoryResolutionCache, ...nonRelativeNameResolutionCache, clear, update, + gc, + compact, + setPerDirectoryAndNonRelativeNameCacheResult, + options: () => options!, getPackageJsonInfoCache: () => packageJsonInfoCache, - clearAllExceptPackageJsonInfoCache, optionsToRedirectsKey, + print, }; + return cache; function clear() { - clearAllExceptPackageJsonInfoCache(); + perDirectoryResolutionCache.clear(); + nonRelativeNameResolutionCache.clear(); packageJsonInfoCache!.clear(); } - function clearAllExceptPackageJsonInfoCache() { - perDirectoryResolutionCache.clear(); - nonRelativeNameResolutionCache.clear(); + function update(updatedOptions: CompilerOptions) { + options = updatedOptions; + perDirectoryResolutionCache.update(updatedOptions); + nonRelativeNameResolutionCache.update(updatedOptions); + } + + function gc(setOrMapToCheckPresence: Set | Map) { + // Iterate through maps to remove things that have 0 refCount + perDirectoryResolutionCache.directoryToModuleNameMap.forEach((resolutions, dir, redirectsCacheKey, directoryToModuleNameMap) => { + resolutions.forEach((resolution, name, mode, key) => { + if (setOrMapToCheckPresence.has(resolution)) return; + resolutions.delete(name, mode); + if (!isExternalModuleNameRelative(name)) { + const moduleNameToDirectoryMap = !redirectsCacheKey ? + nonRelativeNameResolutionCache.moduleNameToDirectoryMap.getOwnMap() : + nonRelativeNameResolutionCache.moduleNameToDirectoryMap.redirectsKeyToMap.get(redirectsCacheKey); + const directoryMap = moduleNameToDirectoryMap?.get(key); + directoryMap?.deleteByPath(dir); + if (!directoryMap?.directoryPathMap.size) moduleNameToDirectoryMap!.delete(key); + } + }); + if (!resolutions.size()) directoryToModuleNameMap.delete(dir); + }); } - function update(options: CompilerOptions) { - perDirectoryResolutionCache.update(options); - nonRelativeNameResolutionCache.update(options); + function compact(availableOptions = new Set(optionsToRedirectsKey!.keys()), skipOptionsToRedirectsKeyCleanup?: boolean) { + perDirectoryResolutionCache.directoryToModuleNameMap.compact(availableOptions); + nonRelativeNameResolutionCache.moduleNameToDirectoryMap.compact(availableOptions); + if (!skipOptionsToRedirectsKeyCleanup) { + optionsToRedirectsKey!.forEach( + (_redirectsKey, options) => { + if (!availableOptions.has(options)) optionsToRedirectsKey!.delete(options); + }, + ); + } + } + + function setPerDirectoryAndNonRelativeNameCacheResult( + name: string, + mode: ResolutionMode, + directoryName: string, + redirectedReference: ResolvedProjectReference | undefined, + result: T, + primary?: T, + ): void { + if (cache.isReadonly) return; + cache.getOrCreateCacheForDirectory(directoryName, redirectedReference).set(name, mode, result); + if (!isExternalModuleNameRelative(name)) { + // put result in per-module name cache + cache.getOrCreateCacheForNonRelativeName(name, mode, redirectedReference).set(directoryName, result, primary); + } + } + + function print() { + console.log(`directoryToModuleNameMap::`); + perDirectoryResolutionCache.directoryToModuleNameMap.forEach((moduleNameMap, directoryPath, redirectsCacheKey) => { + if (!redirectsCacheKey) console.log(" OwnMap"); + else console.log(` redirectsCacheKey:: ${redirectsCacheKey}`); + console.log(` directoryPath:: ${directoryPath}`); + moduleNameMap.forEach((value, key, mode) => { + console.log(` ${key} ${mode} ${JSON.stringify(value, undefined, " ")}`); + }); + }); + console.log(`moduleNameToDirectoryMap::`); + nonRelativeNameResolutionCache.moduleNameToDirectoryMap.forEach((perNonRelativeNameCache, key, redirectsCacheKey) => { + if (!redirectsCacheKey) console.log(" OwnMap"); + else console.log(` redirectsCacheKey:: ${redirectsCacheKey}`); + console.log(` modeAwareCacheKey:: ${key}`); + perNonRelativeNameCache.directoryPathMap.forEach((value, key) => { + console.log(` ${key} ${JSON.stringify(value, undefined, " ")}`); + }); + }); } } @@ -1331,7 +1556,11 @@ export function createModuleResolutionCache( getCanonicalFileName: (s: string) => string, options?: CompilerOptions, packageJsonInfoCache?: PackageJsonInfoCache, - optionsToRedirectsKey?: Map, // eslint-disable-line @typescript-eslint/unified-signatures + optionsToRedirectsKey?: Map, + getValidResolution?: ( // eslint-disable-line @typescript-eslint/unified-signatures + resolution: ResolvedModuleWithFailedLookupLocations | undefined, + forSet?: boolean, + ) => ResolvedModuleWithFailedLookupLocations | undefined, ): ModuleResolutionCache; export function createModuleResolutionCache( currentDirectory: string, @@ -1339,6 +1568,10 @@ export function createModuleResolutionCache( options?: CompilerOptions, packageJsonInfoCache?: PackageJsonInfoCache, optionsToRedirectsKey?: Map, + getValidResolution?: ( + resolution: ResolvedModuleWithFailedLookupLocations | undefined, + forSet?: boolean, + ) => ResolvedModuleWithFailedLookupLocations | undefined, ): ModuleResolutionCache { const result = createModuleOrTypeReferenceResolutionCache( currentDirectory, @@ -1347,6 +1580,7 @@ export function createModuleResolutionCache( packageJsonInfoCache, getOriginalOrResolvedModuleFileName, optionsToRedirectsKey, + getValidResolution, ) as ModuleResolutionCache; result.getOrCreateCacheForModuleName = (nonRelativeName, mode, redirectedReference) => result.getOrCreateCacheForNonRelativeName(nonRelativeName, mode, redirectedReference); return result; @@ -1364,7 +1598,10 @@ export function createTypeReferenceDirectiveResolutionCache( getCanonicalFileName: (s: string) => string, options?: CompilerOptions, packageJsonInfoCache?: PackageJsonInfoCache, - optionsToRedirectsKey?: Map, // eslint-disable-line @typescript-eslint/unified-signatures + optionsToRedirectsKey?: Map, + getValidResolution?: ( // eslint-disable-line @typescript-eslint/unified-signatures + resolution: ResolvedTypeReferenceDirectiveWithFailedLookupLocations | undefined, + ) => ResolvedTypeReferenceDirectiveWithFailedLookupLocations | undefined, ): TypeReferenceDirectiveResolutionCache; export function createTypeReferenceDirectiveResolutionCache( currentDirectory: string, @@ -1372,6 +1609,7 @@ export function createTypeReferenceDirectiveResolutionCache( options?: CompilerOptions, packageJsonInfoCache?: PackageJsonInfoCache, optionsToRedirectsKey?: Map, + getValidResolution?: (resolution: ResolvedTypeReferenceDirectiveWithFailedLookupLocations | undefined) => ResolvedTypeReferenceDirectiveWithFailedLookupLocations | undefined, ): TypeReferenceDirectiveResolutionCache { return createModuleOrTypeReferenceResolutionCache( currentDirectory, @@ -1380,12 +1618,13 @@ export function createTypeReferenceDirectiveResolutionCache( packageJsonInfoCache, getOriginalOrResolvedTypeReferenceFileName, optionsToRedirectsKey, + getValidResolution, ); } /** @internal */ -export function getOptionsForLibraryResolution(options: CompilerOptions): CompilerOptions { - return { moduleResolution: ModuleResolutionKind.Node10, traceResolution: options.traceResolution }; +export function getOptionsForLibraryResolution(options: CompilerOptions | undefined): CompilerOptions { + return { moduleResolution: ModuleResolutionKind.Node10, traceResolution: options?.traceResolution }; } /** @internal */ @@ -1451,13 +1690,13 @@ export function resolveModuleName(moduleName: string, containingFile: string, co return Debug.fail(`Unexpected moduleResolution: ${moduleResolution}`); } - if (cache && !cache.isReadonly) { - cache.getOrCreateCacheForDirectory(containingDirectory, redirectedReference).set(moduleName, resolutionMode, result); - if (!isExternalModuleNameRelative(moduleName)) { - // put result in per-module name cache - cache.getOrCreateCacheForNonRelativeName(moduleName, resolutionMode, redirectedReference).set(containingDirectory, result); - } - } + cache?.setPerDirectoryAndNonRelativeNameCacheResult( + moduleName, + resolutionMode, + containingDirectory, + redirectedReference, + result, + ); } if (traceEnabled) { @@ -1849,7 +2088,7 @@ function nodeModuleNameResolverWorker( } let alternateResult; - if (state.resolvedPackageDirectory && !isConfigLookup && !isExternalModuleNameRelative(moduleName)) { + if (!state.resultFromCache && state.resolvedPackageDirectory && !isConfigLookup && !isExternalModuleNameRelative(moduleName)) { const wantedTypesButGotJs = result?.value && extensions & (Extensions.TypeScript | Extensions.Declaration) && !extensionIsOk(Extensions.TypeScript | Extensions.Declaration, result.value.resolved.extension); @@ -2223,16 +2462,20 @@ export function getEntrypointsFromPackageJsonInfo( host: GetPackageJsonEntrypointsHost, cache: ModuleResolutionCache | undefined, resolveJs?: boolean, -): string[] | false { - if (!resolveJs && packageJsonInfo.contents.resolvedEntrypoints !== undefined) { +): readonly string[] | undefined { + // Since package.json is shared among projects, cache based on options + const features = getNodeResolutionFeatures(options); + const cachedValue = !resolveJs ? + packageJsonInfo.contents.resolvedEntrypoints?.get(features) : + undefined; + if (cachedValue !== undefined) { // Cached value excludes resolutions to JS files - those could be // cached separately, but they're used rarely. - return packageJsonInfo.contents.resolvedEntrypoints; + return cachedValue || undefined; } let entrypoints: string[] | undefined; const extensions = Extensions.TypeScript | Extensions.Declaration | (resolveJs ? Extensions.JavaScript : 0); - const features = getNodeResolutionFeatures(options); const loadPackageJsonMainState = getTemporaryModuleResolutionState(cache?.getPackageJsonInfoCache(), host, options); loadPackageJsonMainState.conditions = getConditions(options); loadPackageJsonMainState.requestContainingDirectory = packageJsonInfo.packageDirectory; @@ -2265,8 +2508,8 @@ export function getEntrypointsFromPackageJsonInfo( } } } - - return packageJsonInfo.contents.resolvedEntrypoints = entrypoints || false; + (packageJsonInfo.contents.resolvedEntrypoints ??= new Map()).set(features, entrypoints || false); + return entrypoints; } function loadEntrypointsFromExportMap( @@ -2378,7 +2621,7 @@ export interface PackageJsonInfoContents { /** false: versionPaths are not present. undefined: not yet resolved */ versionPaths: VersionPaths | false | undefined; /** false: resolved to nothing. undefined: not yet resolved */ - resolvedEntrypoints: string[] | false | undefined; + resolvedEntrypoints: Map | undefined; /** false: peerDependencies are not present. undefined: not yet resolved */ peerDependencies: string | false | undefined; } diff --git a/src/compiler/program.ts b/src/compiler/program.ts index 48d8d07f1641e..dd9d2a84bef74 100644 --- a/src/compiler/program.ts +++ b/src/compiler/program.ts @@ -266,7 +266,6 @@ import { removeSuffix, resolutionExtensionIsTSOrJson, ResolutionMode, - ResolutionWithFailedLookupLocations, resolveConfigFileProjectName, ResolvedConfigFileName, ResolvedModuleFull, @@ -1011,7 +1010,8 @@ export function getResolutionModeOverride(node: ImportAttributes | undefined, gr return elem.value.text === "import" ? ModuleKind.ESNext : ModuleKind.CommonJS; } -const emptyResolution: ResolvedModuleWithFailedLookupLocations & ResolvedTypeReferenceDirectiveWithFailedLookupLocations = { +/** @internal */ +export const emptyResolution: ResolvedModuleWithFailedLookupLocations & ResolvedTypeReferenceDirectiveWithFailedLookupLocations = { resolvedModule: undefined, resolvedTypeReferenceDirective: undefined, }; @@ -1071,7 +1071,8 @@ function getTypeReferenceResolutionName(entry: return !isString(entry) ? entry.fileName : entry; } -const typeReferenceResolutionNameAndModeGetter: ResolutionNameAndModeGetter = { +/** @internal */ +export const typeReferenceResolutionNameAndModeGetter: ResolutionNameAndModeGetter = { getName: getTypeReferenceResolutionName, getMode: (entry, file, compilerOptions) => getModeForFileReference(entry, file && getDefaultResolutionModeForFileWorker(file, compilerOptions)), }; @@ -1136,6 +1137,13 @@ export function loadWithModeAwareCache oldProgram?.getResolvedModule(containingFile, name, mode), getResolved: getResolvedModuleFromResolution, canReuseResolutionsInFile: () => @@ -2213,6 +2226,7 @@ export function createProgram(_rootNamesOrOptions: readonly string[] | CreatePro redirectedReference: containingSourceFile && getRedirectReferenceForResolution(containingSourceFile), nameAndModeGetter: typeReferenceResolutionNameAndModeGetter, resolutionWorker: resolveTypeReferenceDirectiveNamesWorker, + onReusedResolutions: maybeBind(host, host.onReusedTypeReferenceDirectiveResolutions), getResolutionFromOldProgram: (name, mode) => containingSourceFile ? oldProgram?.getResolvedTypeReferenceDirective(containingSourceFile, name, mode) : @@ -2236,6 +2250,14 @@ export function createProgram(_rootNamesOrOptions: readonly string[] | CreatePro containingFile: SourceFileOrString, reusedNames: readonly Entry[] | undefined, ) => readonly Resolution[]; + onReusedResolutions: + | (( + resuedEntries: readonly Entry[] | undefined, + containingSourceFile: SourceFileOrUndefined, + redirectedReference: ResolvedProjectReference | undefined, + options: CompilerOptions, + ) => void) + | undefined; getResolutionFromOldProgram: (name: string, mode: ResolutionMode) => Resolution | undefined; getResolved: (oldResolution: Resolution) => ResolutionWithResolvedFileName | undefined; canReuseResolutionsInFile: () => boolean; @@ -2249,12 +2271,21 @@ export function createProgram(_rootNamesOrOptions: readonly string[] | CreatePro redirectedReference, nameAndModeGetter, resolutionWorker, + onReusedResolutions, getResolutionFromOldProgram, getResolved, canReuseResolutionsInFile, resolveToOwnAmbientModule, }: ResolveNamesReusingOldStateInput): readonly Resolution[] { - if (!entries.length) return emptyArray; + if (!entries.length) { + onReusedResolutions?.( + entries, + containingSourceFile, + redirectedReference, + options, + ); + return emptyArray; + } if (structureIsReused === StructureIsReused.Not && (!resolveToOwnAmbientModule || !containingSourceFile!.ambientModuleNames.length)) { // If the old program state does not permit reusing resolutions and `file` does not contain locally defined ambient modules, // the best we can do is fallback to the default logic. @@ -2323,8 +2354,20 @@ export function createProgram(_rootNamesOrOptions: readonly string[] | CreatePro (unknownEntryIndices ??= []).push(i); } - if (!unknownEntries) return result!; - const resolutions = resolutionWorker(unknownEntries, containingFile, reusedNames); + if (!unknownEntries) { + onReusedResolutions?.( + reusedNames, + containingSourceFile, + redirectedReference, + options, + ); + return result!; + } + const resolutions = resolutionWorker( + unknownEntries, + containingFile, + reusedNames, + ); if (!result) return resolutions; resolutions.forEach((resolution, index) => result[unknownEntryIndices![index]] = resolution); return result; @@ -3748,6 +3791,9 @@ export function createProgram(_rootNamesOrOptions: readonly string[] | CreatePro } (filesWithReferencesProcessed ??= new Set()).add(file.path); } + else { + host.onSourceFileNotCreated?.(sourceFileOptions); + } return file; } @@ -3872,7 +3918,15 @@ export function createProgram(_rootNamesOrOptions: readonly string[] | CreatePro function processTypeReferenceDirectives(file: SourceFile) { const typeDirectives = file.typeReferenceDirectives; - if (!typeDirectives.length) return; + if (!typeDirectives.length) { + host.onReusedTypeReferenceDirectiveResolutions?.( + /*reusedNames*/ undefined, + file, + getRedirectReferenceForResolution(file), + options, + ); + return; + } const resolutions = resolvedTypeReferenceDirectiveNamesProcessing?.get(file.path) || resolveTypeReferenceDirectiveNamesReusingOldState(typeDirectives, file); @@ -4019,7 +4073,7 @@ export function createProgram(_rootNamesOrOptions: readonly string[] | CreatePro resolveModuleNamesReusingOldState(moduleNames, file); Debug.assert(resolutions.length === moduleNames.length); const optionsForFile = getCompilerOptionsForFile(file); - const resolutionsInFile = createModeAwareCache(); + const resolutionsInFile = createModeAwareCache(); (resolvedModules ??= new Map()).set(file.path, resolutionsInFile); for (let index = 0; index < moduleNames.length; index++) { const resolution = resolutions[index].resolvedModule; @@ -4076,6 +4130,14 @@ export function createProgram(_rootNamesOrOptions: readonly string[] | CreatePro } } } + else { + host.onReusedModuleResolutions?.( + /*reusedNames*/ undefined, + file, + getRedirectReferenceForResolution(file), + options, + ); + } } function checkSourceFilesBelongToPath(sourceFiles: readonly SourceFile[], rootDirectory: string): boolean { diff --git a/src/compiler/resolutionCache.ts b/src/compiler/resolutionCache.ts index 902f34a39be01..85903d95fc170 100644 --- a/src/compiler/resolutionCache.ts +++ b/src/compiler/resolutionCache.ts @@ -1,79 +1,79 @@ import { CachedDirectoryStructureHost, + canWatchDirectoryOrFile, clearMap, closeFileWatcher, - closeFileWatcherOf, + CompilerHostSupportingResolutionCache, CompilerOptions, createModeAwareCache, createModuleResolutionCache, + createSharedResolutionCache, + CreateSourceFileOptions, createTypeReferenceDirectiveResolutionCache, createTypeReferenceResolutionLoader, Debug, Diagnostics, - directorySeparator, DirectoryWatcherCallback, emptyArray, + enableSharingModuleOrTypeReferenceResolutionCache, endsWith, Extension, - extensionIsTS, fileExtensionIs, FileReference, FileWatcher, FileWatcherCallback, - firstDefinedIterator, + getAutomaticTypeDirectiveContainingFile, GetCanonicalFileName, getDirectoryPath, getEffectiveTypeRoots, getInferredLibraryNameResolveFrom, getNormalizedAbsolutePath, - getOptionsForLibraryResolution, getPathComponents, - getPathFromPathComponents, + GetResolutionWithResolvedFileName, getResolvedModuleFromResolution, getResolvedTypeReferenceDirectiveFromResolution, HasInvalidatedLibResolutions, HasInvalidatedResolutions, - ignoredPaths, inferredTypesContainingFile, isDiskPathRoot, - isEmittedFileOfProgram, isExternalModuleNameRelative, - isNodeModulesDirectory, - isRootedDiskPath, isTraceEnabled, loadModuleFromGlobalCache, + maybeBind, memoize, MinimalResolutionCacheHost, ModeAwareCache, + ModuleOrTypeReferenceResolutionCache, ModuleResolutionCache, moduleResolutionNameAndModeGetter, mutateMap, - noopFileWatcher, - normalizePath, packageIdToString, - PackageJsonInfoCacheEntry, - parseNodeModuleFromPath, Path, PathPathComponents, Program, - removeSuffix, removeTrailingDirectorySeparator, resolutionExtensionIsTSOrJson, ResolutionLoader, ResolutionMode, + ResolutionNameAndModeGetter, + ResolutionWithFailedLookupLocations, ResolutionWithResolvedFileName, ResolvedModuleWithFailedLookupLocations, + ResolvedModuleWithFailedLookupLocationsGlobalCachePass, + ResolvedModuleWithFailedLookupLocationsGlobalCachePassDisabled, ResolvedProjectReference, ResolvedTypeReferenceDirectiveWithFailedLookupLocations, resolveLibrary as ts_resolveLibrary, resolveModuleName as ts_resolveModuleName, returnTrue, + SharedResolutionCache, + SharedResolutionCacheHost, some, SourceFile, - startsWith, StringLiteralLike, trace, - updateResolutionField, + TypeReferenceDirectiveResolutionCache, + typeReferenceResolutionNameAndModeGetter, WatchDirectoryFlags, } from "./_namespaces/ts.js"; @@ -82,32 +82,40 @@ export interface HasInvalidatedFromResolutionCache { hasInvalidatedResolutions: HasInvalidatedResolutions; hasInvalidatedLibResolutions: HasInvalidatedLibResolutions; } +/** @internal */ +export type CallbackOnNewResolution = ( + existing: T | undefined, + current: T, + path: Path, + name: string, + mode: ResolutionMode, +) => void; /** * This is the cache of module/typedirectives resolution that can be retained across program * * @internal */ -export interface ResolutionCache { +export interface ResolutionCache extends Required { + resolutionHost: ResolutionCacheHost; + sharedCache: SharedResolutionCache; + rootDirForResolution: string; - resolvedModuleNames: Map>; - resolvedTypeReferenceDirectives: Map>; - resolvedLibraries: Map; - resolvedFileToResolution: Map>; - resolutionsWithFailedLookups: Set; - resolutionsWithOnlyAffectingLocations: Set; - directoryWatchesOfFailedLookups: Map; - fileWatchesOfAffectingLocations: Map; - packageDirWatchers: Map; - dirPathToSymlinkPackageRefCount: Map; - startRecordingFilesWithChangedResolutions(): void; - finishRecordingFilesWithChangedResolutions(): Path[] | undefined; - - watchFailedLookupLocationsOfExternalModuleResolutions( - name: string, + resolvedModuleNames: Map>; + resolvedTypeReferenceDirectives: Map>; + resolvedLibraries: Map; + moduleResolutionCache: ModuleResolutionCache; + typeReferenceDirectiveResolutionCache: TypeReferenceDirectiveResolutionCache; + libraryResolutionCache: ModuleResolutionCache; + filesReferencingResolution: Map>; + typeRootsWatches: Map; + + countResolutionsResolvedWithGlobalCache(): number; + countResolutionsResolvedWithoutGlobalCache(): number; + watchResolution( resolution: T, filePath: Path, getResolutionWithResolvedFileName: GetResolutionWithResolvedFileName, - deferWatchingNonRelativeResolution: boolean, + redirectedReference: ResolvedProjectReference | undefined, ): void; resolveModuleNameLiterals( @@ -117,6 +125,7 @@ export interface ResolutionCache { options: CompilerOptions, containingSourceFile: SourceFile, reusedNames: readonly StringLiteralLike[] | undefined, + onNewResolution?: CallbackOnNewResolution, ): readonly ResolvedModuleWithFailedLookupLocations[]; resolveTypeReferenceDirectiveReferences( typeDirectiveReferences: readonly T[], @@ -138,49 +147,55 @@ export interface ResolutionCache { ): ResolvedModuleWithFailedLookupLocations; invalidateResolutionsOfFailedLookupLocations(): boolean; + invalidateResolutionsWithGlobalCachePass(): void; + invalidateResolutionsWithoutGlobalCachePass(): void; + invalidateUnresolvedResolutionsWithGlobalCachePass(): void; invalidateResolutionOfFile(filePath: Path): void; removeResolutionsOfFile(filePath: Path): void; removeResolutionsFromProjectReferenceRedirects(filePath: Path): void; - setFilesWithInvalidatedNonRelativeUnresolvedImports(filesWithUnresolvedImports: Map): void; createHasInvalidatedResolutions( customHasInvalidatedResolutions: HasInvalidatedResolutions, customHasInvalidatedLibResolutions: HasInvalidatedLibResolutions, ): HasInvalidatedFromResolutionCache; hasChangedAutomaticTypeDirectiveNames(): boolean; - isFileWithInvalidatedNonRelativeUnresolvedImports(path: Path): boolean; - startCachingPerDirectoryResolution(): void; - finishCachingPerDirectoryResolution(newProgram: Program | undefined, oldProgram: Program | undefined): void; + // Incremental tests pass options to avoid using incorrect options + startCachingPerDirectoryResolution(options?: CompilerOptions): void; + finishCachingPerDirectoryResolution( + newProgram: Program | undefined, + oldProgram: Program | undefined, + skipCacheCompact?: boolean, + ): void; + compactCaches(newProgram: Program | undefined): void; - updateTypeRootsWatch(): void; + // Incremental tests pass options to avoid using incorrect options + updateTypeRootsWatch(options?: CompilerOptions): void; closeTypeRootsWatch(): void; - - getModuleResolutionCache(): ModuleResolutionCache; - clear(): void; onChangesAffectModuleResolution(): void; -} - -/** @internal */ -export interface ResolutionWithFailedLookupLocations { - failedLookupLocations?: string[]; - affectingLocations?: string[]; - isInvalidated?: boolean; - // Files that have this resolution using - files?: Set; - alternateResult?: string; -} -/** @internal */ -export interface CachedResolvedModuleWithFailedLookupLocations extends ResolvedModuleWithFailedLookupLocations, ResolutionWithFailedLookupLocations { + // Used by shared cache + getRootDirInfoForResolution( + redirectedReference: ResolvedProjectReference | undefined, + resolution: ResolutionWithFailedLookupLocations, + ): RootDirInfo; + invalidateAffectingFileWatcher(path: string): void; + invalidateResolution(resolution: ResolutionWithFailedLookupLocations): void; + invalidateTypeRoot(): void; + getValidResolution(resolution: T | undefined): T | undefined; } /** @internal */ -export interface CachedResolvedTypeReferenceDirectiveWithFailedLookupLocations extends ResolvedTypeReferenceDirectiveWithFailedLookupLocations, ResolutionWithFailedLookupLocations { +export interface RootDirInfo { + rootDir: string; + rootPath: Path; + rootPathComponents: Readonly; + canWatch: boolean; } /** @internal */ -export interface ResolutionCacheHost extends MinimalResolutionCacheHost { +export interface ResolutionCacheHost extends MinimalResolutionCacheHost, SharedResolutionCacheHost { + getCurrentDirectory(): string; toPath(fileName: string): Path; getCanonicalFileName: GetCanonicalFileName; getCompilationSettings(): CompilerOptions; @@ -210,284 +225,10 @@ export interface ResolutionCacheHost extends MinimalResolutionCacheHost { result: ResolvedModuleWithFailedLookupLocations, data: any, ): any; -} - -/** @internal */ -export interface FileWatcherOfAffectingLocation { - /** watcher for the lookup */ - watcher: FileWatcher; - resolutions: number; - files: number; - symlinks: Set | undefined; -} - -/** @internal */ -export interface DirectoryWatchesOfFailedLookup { - /** watcher for the lookup */ - watcher: FileWatcher; - /** ref count keeping this watch alive */ - refCount: number; - /** is the directory watched being non recursive */ - nonRecursive?: boolean; -} -/** @internal */ -export interface DirPathToWatcherOfPackageDirWatcher { - watcher: DirectoryWatchesOfFailedLookup; - refCount: number; -} -/** @internal */ -export interface PackageDirWatcher { - dirPathToWatcher: Map; - isSymlink: boolean; -} - -/** @internal */ -export interface DirectoryOfFailedLookupWatch { - dir: string; - dirPath: Path; - nonRecursive?: boolean; - packageDir?: string; - packageDirPath?: Path; -} - -/** @internal */ -export function removeIgnoredPath(path: Path): Path | undefined { - // Consider whole staging folder as if node_modules changed. - if (endsWith(path, "/node_modules/.staging")) { - return removeSuffix(path, "/.staging") as Path; - } - - return some(ignoredPaths, searchPath => path.includes(searchPath)) ? - undefined : - path; -} - -function perceivedOsRootLengthForWatching(pathComponents: Readonly, length: number) { - // Ignore "/", "c:/" - if (length <= 1) return 1; - let indexAfterOsRoot = 1; - let isDosStyle = pathComponents[0].search(/[a-z]:/i) === 0; - if ( - pathComponents[0] !== directorySeparator && - !isDosStyle && // Non dos style paths - pathComponents[1].search(/[a-z]\$$/i) === 0 // Dos style nextPart - ) { - // ignore "//vda1cs4850/c$/folderAtRoot" - if (length === 2) return 2; - indexAfterOsRoot = 2; - isDosStyle = true; - } - - if ( - isDosStyle && - !pathComponents[indexAfterOsRoot].match(/^users$/i) - ) { - // Paths like c:/notUsers - return indexAfterOsRoot; - } - - if (pathComponents[indexAfterOsRoot].match(/^workspaces$/i)) { - // Paths like: /workspaces as codespaces hoist the repos in /workspaces so we have to exempt these from "2" level from root rule - return indexAfterOsRoot + 1; - } - - // Paths like: c:/users/username or /home/username - return indexAfterOsRoot + 2; -} - -/** - * Filter out paths like - * "/", "/user", "/user/username", "/user/username/folderAtRoot", - * "c:/", "c:/users", "c:/users/username", "c:/users/username/folderAtRoot", "c:/folderAtRoot" - * @param dirPath - * - * @internal - */ -export function canWatchDirectoryOrFile(pathComponents: Readonly, length?: number): boolean { - if (length === undefined) length = pathComponents.length; - // Ignore "/", "c:/" - // ignore "/user", "c:/users" or "c:/folderAtRoot" - if (length <= 2) return false; - const perceivedOsRootLength = perceivedOsRootLengthForWatching(pathComponents, length); - return length > perceivedOsRootLength + 1; -} - -/** @internal */ -export function canWatchDirectoryOrFilePath(path: Path): boolean { - return canWatchDirectoryOrFile(getPathComponents(path)); -} - -/** @internal */ -export function canWatchAtTypes(atTypes: Path): boolean { - // Otherwise can watch directory only if we can watch the parent directory of node_modules/@types - return canWatchAffectedPackageJsonOrNodeModulesOfAtTypes(getDirectoryPath(atTypes)); -} - -function isInDirectoryPath(dirComponents: Readonly, fileOrDirComponents: Readonly) { - if (fileOrDirComponents.length < dirComponents.length) return false; - for (let i = 0; i < dirComponents.length; i++) { - if (fileOrDirComponents[i] !== dirComponents[i]) return false; - } - return true; -} - -function canWatchAffectedPackageJsonOrNodeModulesOfAtTypes(fileOrDirPath: Path) { - return canWatchDirectoryOrFilePath(fileOrDirPath); -} - -/** @internal */ -export function canWatchAffectingLocation(filePath: Path): boolean { - return canWatchAffectedPackageJsonOrNodeModulesOfAtTypes(filePath); -} - -/** @internal */ -export function getDirectoryToWatchFailedLookupLocation( - failedLookupLocation: string, - failedLookupLocationPath: Path, - rootDir: string, - rootPath: Path, - rootPathComponents: Readonly, - isRootWatchable: boolean, - getCurrentDirectory: () => string | undefined, - preferNonRecursiveWatch: boolean | undefined, -): DirectoryOfFailedLookupWatch | undefined { - const failedLookupPathComponents: Readonly = getPathComponents(failedLookupLocationPath); - // Ensure failed look up is normalized path - failedLookupLocation = isRootedDiskPath(failedLookupLocation) ? normalizePath(failedLookupLocation) : getNormalizedAbsolutePath(failedLookupLocation, getCurrentDirectory()); - const failedLookupComponents: readonly string[] = getPathComponents(failedLookupLocation); - const perceivedOsRootLength = perceivedOsRootLengthForWatching(failedLookupPathComponents, failedLookupPathComponents.length); - if (failedLookupPathComponents.length <= perceivedOsRootLength + 1) return undefined; - // If directory path contains node module, get the most parent node_modules directory for watching - const nodeModulesIndex = failedLookupPathComponents.indexOf("node_modules" as Path); - if (nodeModulesIndex !== -1 && nodeModulesIndex + 1 <= perceivedOsRootLength + 1) return undefined; // node_modules not at position where it can be watched - const lastNodeModulesIndex = failedLookupPathComponents.lastIndexOf("node_modules" as Path); - if (isRootWatchable && isInDirectoryPath(rootPathComponents, failedLookupPathComponents)) { - if (failedLookupPathComponents.length > rootPathComponents.length + 1) { - // Instead of watching root, watch directory in root to avoid watching excluded directories not needed for module resolution - return getDirectoryOfFailedLookupWatch( - failedLookupComponents, - failedLookupPathComponents, - Math.max(rootPathComponents.length + 1, perceivedOsRootLength + 1), - lastNodeModulesIndex, - ); - } - else { - // Always watch root directory non recursively - return { - dir: rootDir, - dirPath: rootPath, - nonRecursive: true, - }; - } - } - - return getDirectoryToWatchFromFailedLookupLocationDirectory( - failedLookupComponents, - failedLookupPathComponents, - failedLookupPathComponents.length - 1, - perceivedOsRootLength, - nodeModulesIndex, - rootPathComponents, - lastNodeModulesIndex, - preferNonRecursiveWatch, - ); -} - -function getDirectoryToWatchFromFailedLookupLocationDirectory( - dirComponents: readonly string[], - dirPathComponents: Readonly, - dirPathComponentsLength: number, - perceivedOsRootLength: number, - nodeModulesIndex: number, - rootPathComponents: Readonly, - lastNodeModulesIndex: number, - preferNonRecursiveWatch: boolean | undefined, -): DirectoryOfFailedLookupWatch | undefined { - // If directory path contains node module, get the most parent node_modules directory for watching - if (nodeModulesIndex !== -1) { - // If the directory is node_modules use it to watch, always watch it recursively - return getDirectoryOfFailedLookupWatch( - dirComponents, - dirPathComponents, - nodeModulesIndex + 1, - lastNodeModulesIndex, - ); - } - - // Use some ancestor of the root directory - let nonRecursive = true; - let length = dirPathComponentsLength; - if (!preferNonRecursiveWatch) { - for (let i = 0; i < dirPathComponentsLength; i++) { - if (dirPathComponents[i] !== rootPathComponents[i]) { - nonRecursive = false; - length = Math.max(i + 1, perceivedOsRootLength + 1); - break; - } - } - } - return getDirectoryOfFailedLookupWatch( - dirComponents, - dirPathComponents, - length, - lastNodeModulesIndex, - nonRecursive, - ); -} - -function getDirectoryOfFailedLookupWatch( - dirComponents: readonly string[], - dirPathComponents: Readonly, - length: number, - lastNodeModulesIndex: number, - nonRecursive?: boolean, -): DirectoryOfFailedLookupWatch { - let packageDirLength; - if (lastNodeModulesIndex !== -1 && lastNodeModulesIndex + 1 >= length && lastNodeModulesIndex + 2 < dirPathComponents.length) { - if (!startsWith(dirPathComponents[lastNodeModulesIndex + 1], "@")) { - packageDirLength = lastNodeModulesIndex + 2; - } - else if (lastNodeModulesIndex + 3 < dirPathComponents.length) { - packageDirLength = lastNodeModulesIndex + 3; - } - } - return { - dir: getPathFromPathComponents(dirComponents, length), - dirPath: getPathFromPathComponents(dirPathComponents, length), - nonRecursive, - packageDir: packageDirLength !== undefined ? getPathFromPathComponents(dirComponents, packageDirLength) : undefined, - packageDirPath: packageDirLength !== undefined ? getPathFromPathComponents(dirPathComponents, packageDirLength) : undefined, - }; -} - -/** @internal */ -export function getDirectoryToWatchFailedLookupLocationFromTypeRoot( - typeRoot: string, - typeRootPath: Path, - rootPath: Path, - rootPathComponents: Readonly, - isRootWatchable: boolean, - getCurrentDirectory: () => string | undefined, - preferNonRecursiveWatch: boolean | undefined, - filterCustomPath: (path: Path) => boolean, // Return true if this path can be used -): Path | undefined { - const typeRootPathComponents = getPathComponents(typeRootPath); - if (isRootWatchable && isInDirectoryPath(rootPathComponents, typeRootPathComponents)) { - // Because this is called when we are watching typeRoot, we dont need additional check whether typeRoot is not say c:/users/node_modules/@types when root is c:/ - return rootPath; - } - typeRoot = isRootedDiskPath(typeRoot) ? normalizePath(typeRoot) : getNormalizedAbsolutePath(typeRoot, getCurrentDirectory()); - const toWatch = getDirectoryToWatchFromFailedLookupLocationDirectory( - getPathComponents(typeRoot), - typeRootPathComponents, - typeRootPathComponents.length, - perceivedOsRootLengthForWatching(typeRootPathComponents, typeRootPathComponents.length), - typeRootPathComponents.indexOf("node_modules" as Path), - rootPathComponents, - typeRootPathComponents.lastIndexOf("node_modules" as Path), - preferNonRecursiveWatch, - ); - return toWatch && filterCustomPath(toWatch.dirPath) ? toWatch.dirPath : undefined; + getRootDirInfoForResolution?( + redirectedReference: ResolvedProjectReference | undefined, + resolution: ResolutionWithFailedLookupLocations, + ): RootDirInfo; } /** @internal */ @@ -525,6 +266,38 @@ export function createModuleResolutionLoaderUsingGlobalCache( }; } +/** @internal */ +export function needsResolutionFromGlobalCache(moduleName: string, resolution: ResolvedModuleWithFailedLookupLocations): boolean { + return !isExternalModuleNameRelative(moduleName) && isUnresolvedOrResolvedToJs(resolution); +} + +/** @internal */ +export function isUnresolvedOrResolvedToJs(resolution: ResolvedModuleWithFailedLookupLocations): boolean { + return !resolution.resolvedModule || !resolutionExtensionIsTSOrJson(resolution.resolvedModule.extension); +} + +/** @internal */ +export function isResolvedWithGlobalCachePass(resolution: ResolutionWithFailedLookupLocations): resolution is ResolvedModuleWithFailedLookupLocationsGlobalCachePass { + return resolution.globalCacheResolution?.globalResult === resolution; +} + +/** @internal */ +export function isResolvedWithoutGlobalCachePass(resolution: ResolutionWithFailedLookupLocations): resolution is ResolvedModuleWithFailedLookupLocationsGlobalCachePassDisabled { + return resolution.globalCacheResolution?.primary === resolution; +} + +/** @internal */ +export function isResolvedWithGlobalCachePassButStillUnresolved(resolution: ResolutionWithFailedLookupLocations): resolution is ResolvedModuleWithFailedLookupLocationsGlobalCachePass { + return isResolvedWithGlobalCachePass(resolution) && + !resolution.globalCacheResolution.globalResolution.resolvedModule; +} + +function createGlobalResolutionResultField(primary: T[] | undefined, global: T[] | undefined): T[] | undefined { + if (!primary) return global?.slice(); + if (!global) return primary.slice(); + return primary.concat(global); +} + function resolveModuleNameUsingGlobalCache( resolutionHost: ResolutionCacheHost, moduleResolutionCache: ModuleResolutionCache, @@ -535,128 +308,164 @@ function resolveModuleNameUsingGlobalCache( mode?: ResolutionMode, ): ResolvedModuleWithFailedLookupLocations { const host = getModuleResolutionHost(resolutionHost); - const primaryResult = ts_resolveModuleName(moduleName, containingFile, compilerOptions, host, moduleResolutionCache, redirectedReference, mode); + const primary = ts_resolveModuleName(moduleName, containingFile, compilerOptions, host, moduleResolutionCache, redirectedReference, mode); // return result immediately only if global cache support is not enabled or if it is .ts, .tsx or .d.ts - if (!resolutionHost.getGlobalTypingsCacheLocation) { - return primaryResult; - } - + if (!resolutionHost.getGlobalTypingsCacheLocation) return primary; + const globalCache = resolutionHost.getGlobalTypingsCacheLocation?.(); + if ( + ( + globalCache === undefined ? + isResolvedWithoutGlobalCachePass(primary) : + isResolvedWithGlobalCachePass(primary) + ) || + !needsResolutionFromGlobalCache(moduleName, primary) + ) return primary; // otherwise try to load typings from @types - const globalCache = resolutionHost.getGlobalTypingsCacheLocation(); - if (globalCache !== undefined && !isExternalModuleNameRelative(moduleName) && !(primaryResult.resolvedModule && extensionIsTS(primaryResult.resolvedModule.extension))) { - // create different collection of failed lookup locations for second pass - // if it will fail and we've already found something during the first pass - we don't want to pollute its results - const { resolvedModule, failedLookupLocations, affectingLocations, resolutionDiagnostics } = loadModuleFromGlobalCache( - Debug.checkDefined(resolutionHost.globalCacheResolutionModuleName)(moduleName), - resolutionHost.projectName, - compilerOptions, - host, - globalCache, - moduleResolutionCache, - ); - if (resolvedModule) { - // Modify existing resolution so its saved in the directory cache as well - (primaryResult.resolvedModule as any) = resolvedModule; - primaryResult.failedLookupLocations = updateResolutionField(primaryResult.failedLookupLocations, failedLookupLocations); - primaryResult.affectingLocations = updateResolutionField(primaryResult.affectingLocations, affectingLocations); - primaryResult.resolutionDiagnostics = updateResolutionField(primaryResult.resolutionDiagnostics, resolutionDiagnostics); - return primaryResult; - } + if (globalCache === undefined) { + // This disabled type acquisition + primary.globalCacheResolution = { primary }; + + return primary; } - // Default return the result from the first pass - return primaryResult; -} + // create different collection of failed lookup locations for second pass + // if it will fail and we've already found something during the first pass - we don't want to pollute its results + const globalResolution = loadModuleFromGlobalCache( + Debug.checkDefined(resolutionHost.globalCacheResolutionModuleName)(moduleName), + resolutionHost.projectName, + compilerOptions, + host, + globalCache, + moduleResolutionCache, + ); -/** @internal */ -export type GetResolutionWithResolvedFileName = (resolution: T) => R | undefined; + if (globalResolution.resolvedModule) { + primary.globalCacheResolution = { primary, globalResolution, globalResult: globalResolution }; + globalResolution.failedLookupLocations = createGlobalResolutionResultField(primary.failedLookupLocations, globalResolution.failedLookupLocations); + globalResolution.affectingLocations = createGlobalResolutionResultField(primary.affectingLocations, globalResolution.affectingLocations); + globalResolution.resolutionDiagnostics = createGlobalResolutionResultField(globalResolution.resolutionDiagnostics, primary.resolutionDiagnostics); + globalResolution.alternateResult = primary.alternateResult; + } + else { + primary.globalCacheResolution = { + primary, + globalResolution, + globalResult: { ...primary }, + }; + } + Debug.assertIsDefined(primary.globalCacheResolution.globalResult); + primary.globalCacheResolution.globalResult.globalCacheResolution = primary.globalCacheResolution; + moduleResolutionCache.setPerDirectoryAndNonRelativeNameCacheResult( + moduleName, + mode, + getDirectoryPath(containingFile), + redirectedReference, + primary.globalCacheResolution.globalResult, + primary, + ); + return primary.globalCacheResolution.globalResult; +} /** @internal */ -export function createResolutionCache(resolutionHost: ResolutionCacheHost, rootDirForResolution: string, logChangesWhenResolvingModule: boolean): ResolutionCache { - let filesWithChangedSetOfUnresolvedImports: Path[] | undefined; +export function createResolutionCache( + resolutionHost: ResolutionCacheHost, + rootDirForResolution: string, + sharedCache: SharedResolutionCache = createSharedResolutionCache(resolutionHost as SharedResolutionCacheHost), +): ResolutionCache { let filesWithInvalidatedResolutions: Set | undefined; - let filesWithInvalidatedNonRelativeUnresolvedImports: ReadonlyMap | undefined; - const nonRelativeExternalModuleResolutions = new Set(); - - const resolutionsWithFailedLookups = new Set(); - const resolutionsWithOnlyAffectingLocations = new Set(); - const resolvedFileToResolution = new Map>(); const impliedFormatPackageJsons = new Map(); + const filesReferencingResolution = new Map>(); let hasChangedAutomaticTypeDirectiveNames = false; let affectingPathChecksForFile: Set | undefined; - let affectingPathChecks: Set | undefined; - let failedLookupChecks: Set | undefined; - let startsWithPathChecks: Set | undefined; - let isInDirectoryChecks: Set | undefined; let allModuleAndTypeResolutionsAreInvalidated = false; + let resolutionsWithGlobalCachePassAreInvalidated = false; + let resolutionsWithoutGlobalCachePassAreInvalidated = false; + let unresolvedResolutionsWithGlobalCachePassAreInvalidated = false; - const getCurrentDirectory = memoize(() => resolutionHost.getCurrentDirectory!()); - const cachedDirectoryStructureHost = resolutionHost.getCachedDirectoryStructureHost(); + let pendingRemoveResolutionsOfFile: Set | undefined; + let potentiallyUnreferencedResolutions: Map, Set> | undefined; + let newUnresolvedResolutionCachePassResolutions: Set | undefined; + let considerNonWatchedResolutionAsInvalidated = false; + + const getCurrentDirectory = memoize(() => resolutionHost.getCurrentDirectory()); // The resolvedModuleNames and resolvedTypeReferenceDirectives are the cache of resolutions per file. // The key in the map is source file's path. // The values are Map of resolutions with key being name lookedup. - const resolvedModuleNames = new Map>(); - const moduleResolutionCache = createModuleResolutionCache( - getCurrentDirectory(), - resolutionHost.getCanonicalFileName, - resolutionHost.getCompilationSettings(), + const resolvedModuleNames = new Map>(); + const moduleResolutionCache = enableSharingModuleOrTypeReferenceResolutionCache( + createModuleResolutionCache( + getCurrentDirectory(), + resolutionHost.getCanonicalFileName, + /*options*/ undefined, + sharedCache.moduleResolutionCache.getPackageJsonInfoCache(), + /*optionsToRedirectsKey*/ undefined, + getValidResolution, + ), + sharedCache.moduleResolutionCache, ); - const resolvedTypeReferenceDirectives = new Map>(); - const typeReferenceDirectiveResolutionCache = createTypeReferenceDirectiveResolutionCache( - getCurrentDirectory(), - resolutionHost.getCanonicalFileName, - resolutionHost.getCompilationSettings(), - moduleResolutionCache.getPackageJsonInfoCache(), - moduleResolutionCache.optionsToRedirectsKey, + const resolvedTypeReferenceDirectives = new Map>(); + const typeReferenceDirectiveResolutionCache: TypeReferenceDirectiveResolutionCache = enableSharingModuleOrTypeReferenceResolutionCache( + createTypeReferenceDirectiveResolutionCache( + getCurrentDirectory(), + resolutionHost.getCanonicalFileName, + /*options*/ undefined, + moduleResolutionCache.getPackageJsonInfoCache(), + moduleResolutionCache.optionsToRedirectsKey, + getValidResolution, + ), + sharedCache.typeReferenceDirectiveResolutionCache, ); - const resolvedLibraries = new Map(); - const libraryResolutionCache = createModuleResolutionCache( - getCurrentDirectory(), - resolutionHost.getCanonicalFileName, - getOptionsForLibraryResolution(resolutionHost.getCompilationSettings()), - moduleResolutionCache.getPackageJsonInfoCache(), + const resolvedLibraries = new Map(); + const libraryResolutionCache = enableSharingModuleOrTypeReferenceResolutionCache( + createModuleResolutionCache( + getCurrentDirectory(), + resolutionHost.getCanonicalFileName, + sharedCache.libraryResolutionCache.options(), + moduleResolutionCache.getPackageJsonInfoCache(), + /*optionsToRedirectsKey*/ undefined, + getValidResolution, + ), + sharedCache.libraryResolutionCache, ); - const directoryWatchesOfFailedLookups = new Map(); - const fileWatchesOfAffectingLocations = new Map(); - const rootDir = getRootDirectoryOfResolutionCache(rootDirForResolution, getCurrentDirectory); - const rootPath = resolutionHost.toPath(rootDir); - const rootPathComponents = getPathComponents(rootPath); - const isRootWatchable = canWatchDirectoryOrFile(rootPathComponents); + let resolutionsResolvedWithGlobalCache = 0; + let resolutionsResolvedWithoutGlobalCache = 0; - const isSymlinkCache = new Map(); - const packageDirWatchers = new Map(); // Watching packageDir if symlink otherwise watching dirPath - const dirPathToSymlinkPackageRefCount = new Map(); // Refcount for dirPath watches when watching symlinked packageDir + const rootDirInfo = getRootDirInfo(rootDirForResolution); + const redirectsToRootDirInfo = new Map(); // TypeRoot watches for the types that get added as part of getAutomaticTypeDirectiveNames const typeRootsWatches = new Map(); - return { + const cache: ResolutionCache = { + resolutionHost, + sharedCache, rootDirForResolution, resolvedModuleNames, resolvedTypeReferenceDirectives, resolvedLibraries, - resolvedFileToResolution, - resolutionsWithFailedLookups, - resolutionsWithOnlyAffectingLocations, - directoryWatchesOfFailedLookups, - fileWatchesOfAffectingLocations, - packageDirWatchers, - dirPathToSymlinkPackageRefCount, - watchFailedLookupLocationsOfExternalModuleResolutions, - getModuleResolutionCache: () => moduleResolutionCache, - startRecordingFilesWithChangedResolutions, - finishRecordingFilesWithChangedResolutions, + moduleResolutionCache, + typeReferenceDirectiveResolutionCache, + libraryResolutionCache, + filesReferencingResolution, + typeRootsWatches, + countResolutionsResolvedWithGlobalCache: () => resolutionsResolvedWithGlobalCache, + countResolutionsResolvedWithoutGlobalCache: () => resolutionsResolvedWithoutGlobalCache, + watchResolution, // perDirectoryResolvedModuleNames and perDirectoryResolvedTypeReferenceDirectives could be non empty if there was exception during program update // (between startCachingPerDirectoryResolution and finishCachingPerDirectoryResolution) startCachingPerDirectoryResolution, finishCachingPerDirectoryResolution, + compactCaches, resolveModuleNameLiterals, resolveTypeReferenceDirectiveReferences, + onReusedModuleResolutions, + onReusedTypeReferenceDirectiveResolutions, + onSourceFileNotCreated, resolveLibrary, resolveSingleModuleNameWithoutWatching, removeResolutionsFromProjectReferenceRedirects, @@ -664,38 +473,77 @@ export function createResolutionCache(resolutionHost: ResolutionCacheHost, rootD hasChangedAutomaticTypeDirectiveNames: () => hasChangedAutomaticTypeDirectiveNames, invalidateResolutionOfFile, invalidateResolutionsOfFailedLookupLocations, - setFilesWithInvalidatedNonRelativeUnresolvedImports, + invalidateResolutionsWithGlobalCachePass, + invalidateResolutionsWithoutGlobalCachePass, + invalidateUnresolvedResolutionsWithGlobalCachePass, createHasInvalidatedResolutions, - isFileWithInvalidatedNonRelativeUnresolvedImports, updateTypeRootsWatch, closeTypeRootsWatch, clear, onChangesAffectModuleResolution, + + // Used by shared cache + getRootDirInfoForResolution: maybeBind(resolutionHost, resolutionHost.getRootDirInfoForResolution) ?? getRootDirInfoOfRedirectedReference, + invalidateAffectingFileWatcher, + invalidateResolution, + invalidateTypeRoot, + getValidResolution, }; + return cache; + + function getRootDirInfo(rootDirForResolution: string): RootDirInfo { + const rootDir = getRootDirectoryOfResolutionCache(rootDirForResolution, getCurrentDirectory); + const rootPath = resolutionHost.toPath(rootDir); + const rootPathComponents = getPathComponents(rootPath); + return { + rootDir, + rootPath, + rootPathComponents, + canWatch: canWatchDirectoryOrFile(rootPathComponents), + }; + } + + function getRootDirInfoOfRedirectedReference(redirectedReference: ResolvedProjectReference | undefined): RootDirInfo { + if (!redirectedReference) return rootDirInfo; + let result = redirectsToRootDirInfo.get(redirectedReference); + if (!result) { + redirectsToRootDirInfo.set( + redirectedReference, + result = getRootDirInfo( + getDirectoryPath(redirectedReference.sourceFile.fileName), + ), + ); + } + return result; + } + + function cleanupRedirectRootDirInfo(newProgram: Program | undefined) { + const toDeleteRedirectToRootDirInfo = new Set(redirectsToRootDirInfo.keys()); + newProgram?.forEachResolvedProjectReference(redirect => { + toDeleteRedirectToRootDirInfo.delete(redirect); + }); + toDeleteRedirectToRootDirInfo.forEach(redirect => redirectsToRootDirInfo.delete(redirect)); + } function clear() { - clearMap(directoryWatchesOfFailedLookups, closeFileWatcherOf); - clearMap(fileWatchesOfAffectingLocations, closeFileWatcherOf); - isSymlinkCache.clear(); - packageDirWatchers.clear(); - dirPathToSymlinkPackageRefCount.clear(); - nonRelativeExternalModuleResolutions.clear(); + pendingRemoveResolutionsOfFile = undefined; + potentiallyUnreferencedResolutions = undefined; + newUnresolvedResolutionCachePassResolutions = undefined; + redirectsToRootDirInfo.clear(); closeTypeRootsWatch(); + sharedCache.clear(cache); resolvedModuleNames.clear(); resolvedTypeReferenceDirectives.clear(); - resolvedFileToResolution.clear(); - resolutionsWithFailedLookups.clear(); - resolutionsWithOnlyAffectingLocations.clear(); - failedLookupChecks = undefined; - startsWithPathChecks = undefined; - isInDirectoryChecks = undefined; - affectingPathChecks = undefined; + filesReferencingResolution.clear(); + resolutionsResolvedWithGlobalCache = 0; + resolutionsResolvedWithoutGlobalCache = 0; affectingPathChecksForFile = undefined; allModuleAndTypeResolutionsAreInvalidated = false; + resolutionsWithGlobalCachePassAreInvalidated = false; + resolutionsWithoutGlobalCachePassAreInvalidated = false; + unresolvedResolutionsWithGlobalCachePassAreInvalidated = false; moduleResolutionCache.clear(); typeReferenceDirectiveResolutionCache.clear(); - moduleResolutionCache.update(resolutionHost.getCompilationSettings()); - typeReferenceDirectiveResolutionCache.update(resolutionHost.getCompilationSettings()); libraryResolutionCache.clear(); impliedFormatPackageJsons.clear(); resolvedLibraries.clear(); @@ -704,30 +552,6 @@ export function createResolutionCache(resolutionHost: ResolutionCacheHost, rootD function onChangesAffectModuleResolution() { allModuleAndTypeResolutionsAreInvalidated = true; - moduleResolutionCache.clearAllExceptPackageJsonInfoCache(); - typeReferenceDirectiveResolutionCache.clearAllExceptPackageJsonInfoCache(); - moduleResolutionCache.update(resolutionHost.getCompilationSettings()); - typeReferenceDirectiveResolutionCache.update(resolutionHost.getCompilationSettings()); - } - - function startRecordingFilesWithChangedResolutions() { - filesWithChangedSetOfUnresolvedImports = []; - } - - function finishRecordingFilesWithChangedResolutions() { - const collected = filesWithChangedSetOfUnresolvedImports; - filesWithChangedSetOfUnresolvedImports = undefined; - return collected; - } - - function isFileWithInvalidatedNonRelativeUnresolvedImports(path: Path): boolean { - if (!filesWithInvalidatedNonRelativeUnresolvedImports) { - return false; - } - - // Invalidated if file has unresolved imports - const value = filesWithInvalidatedNonRelativeUnresolvedImports.get(path); - return !!value && !!value.length; } function createHasInvalidatedResolutions( @@ -742,26 +566,25 @@ export function createResolutionCache(resolutionHost: ResolutionCacheHost, rootD hasInvalidatedResolutions: path => customHasInvalidatedResolutions(path) || allModuleAndTypeResolutionsAreInvalidated || - !!collected?.has(path) || - isFileWithInvalidatedNonRelativeUnresolvedImports(path), + resolutionsWithGlobalCachePassAreInvalidated || + resolutionsWithoutGlobalCachePassAreInvalidated || + unresolvedResolutionsWithGlobalCachePassAreInvalidated || + !!collected?.has(path), hasInvalidatedLibResolutions: libFileName => customHasInvalidatedLibResolutions(libFileName) || - !!resolvedLibraries?.get(libFileName)?.isInvalidated, + !!sharedCache.watchedResolutionInfoMap.get(resolvedLibraries?.get(libFileName)!)?.isInvalidated, }; } - function startCachingPerDirectoryResolution() { + function startCachingPerDirectoryResolution(options?: CompilerOptions) { moduleResolutionCache.isReadonly = undefined; typeReferenceDirectiveResolutionCache.isReadonly = undefined; libraryResolutionCache.isReadonly = undefined; - moduleResolutionCache.getPackageJsonInfoCache().isReadonly = undefined; - moduleResolutionCache.clearAllExceptPackageJsonInfoCache(); - typeReferenceDirectiveResolutionCache.clearAllExceptPackageJsonInfoCache(); - libraryResolutionCache.clearAllExceptPackageJsonInfoCache(); - // perDirectoryResolvedModuleNames and perDirectoryResolvedTypeReferenceDirectives could be non empty if there was exception during program update - // (between startCachingPerDirectoryResolution and finishCachingPerDirectoryResolution) - watchFailedLookupLocationOfNonRelativeModuleResolutions(); - isSymlinkCache.clear(); + moduleResolutionCache.update(options ?? resolutionHost.getCompilationSettings()); + typeReferenceDirectiveResolutionCache.update(options ?? resolutionHost.getCompilationSettings()); + sharedCache.startCachingPerDirectoryResolution(cache); + pendingRemoveResolutionsOfFile?.forEach(path => removeResolutionsOfFile(path)); + pendingRemoveResolutionsOfFile = undefined; } function cleanupLibResolutionWatching(newProgram: Program | undefined) { @@ -770,29 +593,40 @@ export function createResolutionCache(resolutionHost: ResolutionCacheHost, rootD stopWatchFailedLookupLocationOfResolution( resolution, resolutionHost.toPath(getInferredLibraryNameResolveFrom(resolutionHost.getCompilationSettings(), getCurrentDirectory(), libFileName)), - getResolvedModuleFromResolution, + libraryResolutionCache, ); resolvedLibraries.delete(libFileName); } }); } - function finishCachingPerDirectoryResolution(newProgram: Program | undefined, oldProgram: Program | undefined) { - filesWithInvalidatedNonRelativeUnresolvedImports = undefined; + function finishCachingPerDirectoryResolution( + newProgram: Program | undefined, + oldProgram: Program | undefined, + skipCacheCompact?: boolean, + ) { allModuleAndTypeResolutionsAreInvalidated = false; - watchFailedLookupLocationOfNonRelativeModuleResolutions(); + resolutionsWithGlobalCachePassAreInvalidated = false; + resolutionsWithoutGlobalCachePassAreInvalidated = false; + unresolvedResolutionsWithGlobalCachePassAreInvalidated = false; + newUnresolvedResolutionCachePassResolutions = undefined; + let potentiallyUnReferencedFileWatcherOfAffectingLocation: Set | undefined; // Update file watches if (newProgram !== oldProgram) { + const releaseFileWatcherOfAffectingLocation = (location: string) => { + sharedCache.releaseFileWatcherOfAffectingLocation(location); + (potentiallyUnReferencedFileWatcherOfAffectingLocation ??= new Set()).add(location); + }; cleanupLibResolutionWatching(newProgram); newProgram?.getSourceFiles().forEach(newFile => { const expected = newFile.packageJsonLocations?.length ?? 0; const existing = impliedFormatPackageJsons.get(newFile.resolvedPath) ?? emptyArray; for (let i = existing.length; i < expected; i++) { - createFileWatcherOfAffectingLocation(newFile.packageJsonLocations![i], /*forResolution*/ false); + sharedCache.createFileWatcherOfAffectingLocation(newFile.packageJsonLocations![i]); } if (existing.length > expected) { for (let i = expected; i < existing.length; i++) { - fileWatchesOfAffectingLocations.get(existing[i])!.files--; + releaseFileWatcherOfAffectingLocation(existing[i]); } } if (expected) impliedFormatPackageJsons.set(newFile.resolvedPath, newFile.packageJsonLocations!); @@ -801,40 +635,79 @@ export function createResolutionCache(resolutionHost: ResolutionCacheHost, rootD impliedFormatPackageJsons.forEach((existing, path) => { const newFile = newProgram?.getSourceFileByPath(path); if (!newFile || newFile.resolvedPath !== path) { - existing.forEach(location => fileWatchesOfAffectingLocations.get(location)!.files--); + existing.forEach(releaseFileWatcherOfAffectingLocation); impliedFormatPackageJsons.delete(path); } }); + cleanupRedirectRootDirInfo(newProgram); + } + potentiallyUnReferencedFileWatcherOfAffectingLocation?.forEach(location => sharedCache.closeFileWatcherOfAffectingLocation(location)); + potentiallyUnReferencedFileWatcherOfAffectingLocation = undefined; + if (potentiallyUnreferencedResolutions) { + potentiallyUnreferencedResolutions.forEach(gcModuleOrTypeRefCache); + potentiallyUnreferencedResolutions = undefined; } - directoryWatchesOfFailedLookups.forEach(closeDirectoryWatchesOfFailedLookup); - fileWatchesOfAffectingLocations.forEach(closeFileWatcherOfAffectingLocation); - packageDirWatchers.forEach(closePackageDirWatcher); + sharedCache.finishCachingPerDirectoryResolution(); hasChangedAutomaticTypeDirectiveNames = false; + if (!skipCacheCompact) compactCaches(newProgram); moduleResolutionCache.isReadonly = true; typeReferenceDirectiveResolutionCache.isReadonly = true; libraryResolutionCache.isReadonly = true; moduleResolutionCache.getPackageJsonInfoCache().isReadonly = true; - isSymlinkCache.clear(); } - function closePackageDirWatcher(watcher: PackageDirWatcher, packageDirPath: Path) { - if (watcher.dirPathToWatcher.size === 0) { - packageDirWatchers.delete(packageDirPath); + function compactCaches(newProgram: Program | undefined) { + const availableOptions = new Set(); + if (newProgram) { + availableOptions.add(newProgram.getCompilerOptions()); + newProgram.forEachResolvedProjectReference(ref => { + availableOptions.add(ref.commandLine.options); + }); } + moduleResolutionCache.compact(availableOptions, /*skipOptionsToRedirectsKeyCleanup*/ true); + typeReferenceDirectiveResolutionCache.compact(availableOptions); + libraryResolutionCache.compact(); + sharedCache.compactCaches(availableOptions, cache); } - function closeDirectoryWatchesOfFailedLookup(watcher: DirectoryWatchesOfFailedLookup, path: Path) { - if (watcher.refCount === 0) { - directoryWatchesOfFailedLookups.delete(path); - watcher.watcher.close(); + function gcModuleOrTypeRefCache( + setOfResolutions: Set, + cache: ModuleOrTypeReferenceResolutionCache, + ) { + let needsGc = false; + setOfResolutions.forEach(resolution => needsGc = releaseResolution(resolution, cache) || needsGc); + if (needsGc) { + considerNonWatchedResolutionAsInvalidated = true; + cache.gc(filesReferencingResolution); + considerNonWatchedResolutionAsInvalidated = false; } } - function closeFileWatcherOfAffectingLocation(watcher: FileWatcherOfAffectingLocation, path: string) { - if (watcher.files === 0 && watcher.resolutions === 0 && !watcher.symlinks?.size) { - fileWatchesOfAffectingLocations.delete(path); - watcher.watcher.close(); - } + function onSourceFileNotCreated(sourceFileOptions: CreateSourceFileOptions) { + sourceFileOptions.packageJsonLocations?.forEach(location => sharedCache.addToPotentiallyUnwatchedPackageJsons(location)); + } + + function getValidResolution(resolution: T | undefined) { + return isInvalidatedResolution(resolution) ? undefined : resolution; + } + + function isInvalidatedResolution(resolution: ResolutionWithFailedLookupLocations | undefined) { + if ( + !resolution || + (considerNonWatchedResolutionAsInvalidated && !filesReferencingResolution.has(resolution)) || + sharedCache.watchedResolutionInfoMap.get(resolution)?.isInvalidated || + (resolutionsWithGlobalCachePassAreInvalidated && isResolvedWithGlobalCachePass(resolution)) || + (resolutionsWithoutGlobalCachePassAreInvalidated && isResolvedWithoutGlobalCachePass(resolution)) + ) return true; + // If this is not a new resolution and its unresolved, its invalid + if (newUnresolvedResolutionCachePassResolutions?.has(resolution) || !isInvalidatedUnResolvedGlobalCachePassResolution(resolution)) return false; + sharedCache.invalidateResolution(resolution, returnTrue); + return true; + } + + function isInvalidatedUnResolvedGlobalCachePassResolution(resolution: ResolutionWithFailedLookupLocations) { + return unresolvedResolutionsWithGlobalCachePassAreInvalidated && + isResolvedWithGlobalCachePassButStillUnresolved(resolution); } interface ResolveNamesWithLocalCacheInput { @@ -845,11 +718,10 @@ export function createResolutionCache(resolutionHost: ResolutionCacheHost, rootD options: CompilerOptions; reusedNames?: readonly Entry[]; perFileCache: Map>; + moduleOrTypeRefCache: ModuleOrTypeReferenceResolutionCache; loader: ResolutionLoader; getResolutionWithResolvedFileName: GetResolutionWithResolvedFileName; - shouldRetryResolution: (t: T) => boolean; - logChanges?: boolean; - deferWatchingNonRelativeResolution: boolean; + onNewResolution?: CallbackOnNewResolution; } function resolveNamesWithLocalCache({ entries, @@ -858,17 +730,15 @@ export function createResolutionCache(resolutionHost: ResolutionCacheHost, rootD redirectedReference, options, perFileCache, + moduleOrTypeRefCache, reusedNames, loader, getResolutionWithResolvedFileName, - deferWatchingNonRelativeResolution, - shouldRetryResolution, - logChanges, + onNewResolution, }: ResolveNamesWithLocalCacheInput): readonly T[] { const path = resolutionHost.toPath(containingFile); const resolutionsInFile = perFileCache.get(path) || perFileCache.set(path, createModeAwareCache()).get(path)!; const resolvedModules: T[] = []; - const hasInvalidatedNonRelativeUnresolvedImport = logChanges && isFileWithInvalidatedNonRelativeUnresolvedImports(path); // All the resolutions in this file are invalidated if this file wasn't resolved using same redirect const program = resolutionHost.getCurrentProgram(); @@ -885,9 +755,11 @@ export function createResolutionCache(resolutionHost: ResolutionCacheHost, rootD // Resolution is valid if it is present and not invalidated if ( !seenNamesInFile.has(name, mode) && - (allModuleAndTypeResolutionsAreInvalidated || unmatchedRedirects || !resolution || resolution.isInvalidated || - // If the name is unresolved import that was invalidated, recalculate - (hasInvalidatedNonRelativeUnresolvedImport && !isExternalModuleNameRelative(name) && shouldRetryResolution(resolution))) + ( + allModuleAndTypeResolutionsAreInvalidated || + unmatchedRedirects || + isInvalidatedResolution(resolution) + ) ) { const existingResolution = resolution; resolution = loader.resolve(name, mode); @@ -896,17 +768,16 @@ export function createResolutionCache(resolutionHost: ResolutionCacheHost, rootD } resolutionsInFile.set(name, mode, resolution); if (resolution !== existingResolution) { - watchFailedLookupLocationsOfExternalModuleResolutions(name, resolution, path, getResolutionWithResolvedFileName, deferWatchingNonRelativeResolution); + watchResolution(resolution, path, getResolutionWithResolvedFileName, redirectedReference); if (existingResolution) { - stopWatchFailedLookupLocationOfResolution(existingResolution, path, getResolutionWithResolvedFileName); + stopWatchFailedLookupLocationOfResolution(existingResolution, path, moduleOrTypeRefCache); } } - - if (logChanges && filesWithChangedSetOfUnresolvedImports && !resolutionIsEqualTo(existingResolution, resolution)) { - filesWithChangedSetOfUnresolvedImports.push(path); - // reset log changes to avoid recording the same file multiple times - logChanges = false; + // Store new resolutions that are unresolved during global cache pass so we dont see them as invalidated and calculate resolution again + if (isInvalidatedUnResolvedGlobalCachePassResolution(resolution)) { + (newUnresolvedResolutionCachePassResolutions ??= new Set()).add(resolution); } + onNewResolution?.(existingResolution, resolution, path, name, mode); } else { const host = getModuleResolutionHost(resolutionHost); @@ -932,14 +803,52 @@ export function createResolutionCache(resolutionHost: ResolutionCacheHost, rootD ); } } - Debug.assert(resolution !== undefined && !resolution.isInvalidated); + Debug.assert(resolution !== undefined && !sharedCache.watchedResolutionInfoMap.get(resolution)!.isInvalidated); seenNamesInFile.set(name, mode, true); resolvedModules.push(resolution); } + onReusedResolutions({ + reusedNames, + containingSourceFile, + redirectedReference, + options, + path, + resolutionsInFile, + seenNamesInFile, + nameAndModeGetter: loader.nameAndMode, + moduleOrTypeRefCache, + }); + return resolvedModules; + } + + interface OnReusedResolutionsInput { + reusedNames: readonly Entry[] | undefined; + containingSourceFile: SourceFile; + redirectedReference: ResolvedProjectReference | undefined; + options: CompilerOptions; + path: Path; + resolutionsInFile: ModeAwareCache | undefined; + seenNamesInFile?: ModeAwareCache; + nameAndModeGetter: ResolutionNameAndModeGetter; + moduleOrTypeRefCache: ModuleOrTypeReferenceResolutionCache; + } + function onReusedResolutions({ + reusedNames, + containingSourceFile, + redirectedReference, + options, + path, + resolutionsInFile, + seenNamesInFile, + nameAndModeGetter, + moduleOrTypeRefCache, + }: OnReusedResolutionsInput) { + if (!resolutionsInFile) return; + if (!seenNamesInFile) seenNamesInFile = createModeAwareCache(); reusedNames?.forEach(entry => seenNamesInFile.set( - loader.nameAndMode.getName(entry), - loader.nameAndMode.getMode(entry, containingSourceFile, redirectedReference?.commandLine.options || options), + nameAndModeGetter.getName(entry), + nameAndModeGetter.getMode(entry, containingSourceFile, redirectedReference?.commandLine.options || options), true, ) ); @@ -947,30 +856,50 @@ export function createResolutionCache(resolutionHost: ResolutionCacheHost, rootD // Stop watching and remove the unused name resolutionsInFile.forEach((resolution, name, mode) => { if (!seenNamesInFile.has(name, mode)) { - stopWatchFailedLookupLocationOfResolution(resolution, path, getResolutionWithResolvedFileName); + stopWatchFailedLookupLocationOfResolution(resolution, path, moduleOrTypeRefCache); resolutionsInFile.delete(name, mode); } }); } - return resolvedModules; + } - function resolutionIsEqualTo(oldResolution: T | undefined, newResolution: T | undefined): boolean { - if (oldResolution === newResolution) { - return true; - } - if (!oldResolution || !newResolution) { - return false; - } - const oldResult = getResolutionWithResolvedFileName(oldResolution); - const newResult = getResolutionWithResolvedFileName(newResolution); - if (oldResult === newResult) { - return true; - } - if (!oldResult || !newResult) { - return false; - } - return oldResult.resolvedFileName === newResult.resolvedFileName; - } + function onReusedModuleResolutions( + reusedNames: readonly StringLiteralLike[] | undefined, + containingSourceFile: SourceFile, + redirectedReference: ResolvedProjectReference | undefined, + options: CompilerOptions, + ) { + onReusedResolutions({ + reusedNames, + containingSourceFile, + redirectedReference, + options, + path: containingSourceFile.path, + resolutionsInFile: resolvedModuleNames.get(containingSourceFile.path), + nameAndModeGetter: moduleResolutionNameAndModeGetter, + moduleOrTypeRefCache: moduleResolutionCache, + }); + } + + function onReusedTypeReferenceDirectiveResolutions( + reusedNames: readonly T[] | undefined, + containingSourceFile: SourceFile | undefined, + redirectedReference: ResolvedProjectReference | undefined, + options: CompilerOptions, + ) { + const path = containingSourceFile ? + containingSourceFile.path : + resolutionHost.toPath(getAutomaticTypeDirectiveContainingFile(resolutionHost.getCompilationSettings(), getCurrentDirectory())); + onReusedResolutions({ + reusedNames, + containingSourceFile, + redirectedReference, + options, + path, + resolutionsInFile: resolvedTypeReferenceDirectives.get(path), + nameAndModeGetter: typeReferenceResolutionNameAndModeGetter, + moduleOrTypeRefCache: typeReferenceDirectiveResolutionCache, + }); } function resolveTypeReferenceDirectiveReferences( @@ -989,6 +918,7 @@ export function createResolutionCache(resolutionHost: ResolutionCacheHost, rootD options, reusedNames, perFileCache: resolvedTypeReferenceDirectives, + moduleOrTypeRefCache: typeReferenceDirectiveResolutionCache, loader: createTypeReferenceResolutionLoader( containingFile, redirectedReference, @@ -997,8 +927,6 @@ export function createResolutionCache(resolutionHost: ResolutionCacheHost, rootD typeReferenceDirectiveResolutionCache, ), getResolutionWithResolvedFileName: getResolvedTypeReferenceDirectiveFromResolution, - shouldRetryResolution: resolution => resolution.resolvedTypeReferenceDirective === undefined, - deferWatchingNonRelativeResolution: false, }); } @@ -1009,6 +937,7 @@ export function createResolutionCache(resolutionHost: ResolutionCacheHost, rootD options: CompilerOptions, containingSourceFile: SourceFile, reusedNames: readonly StringLiteralLike[] | undefined, + onNewResolution?: CallbackOnNewResolution, ): readonly ResolvedModuleWithFailedLookupLocations[] { return resolveNamesWithLocalCache({ entries: moduleLiterals, @@ -1018,6 +947,7 @@ export function createResolutionCache(resolutionHost: ResolutionCacheHost, rootD options, reusedNames, perFileCache: resolvedModuleNames, + moduleOrTypeRefCache: moduleResolutionCache, loader: createModuleResolutionLoaderUsingGlobalCache( containingFile, redirectedReference, @@ -1026,9 +956,7 @@ export function createResolutionCache(resolutionHost: ResolutionCacheHost, rootD moduleResolutionCache, ), getResolutionWithResolvedFileName: getResolvedModuleFromResolution, - shouldRetryResolution: resolution => !resolution.resolvedModule || !resolutionExtensionIsTSOrJson(resolution.resolvedModule.extension), - logChanges: logChangesWhenResolvingModule, - deferWatchingNonRelativeResolution: true, // Defer non relative resolution watch because we could be using ambient modules + onNewResolution, }); } @@ -1040,19 +968,19 @@ export function createResolutionCache(resolutionHost: ResolutionCacheHost, rootD ) { const host = getModuleResolutionHost(resolutionHost); let resolution = resolvedLibraries?.get(libFileName); - if (!resolution || resolution.isInvalidated) { + if (isInvalidatedResolution(resolution)) { const existingResolution = resolution; resolution = ts_resolveLibrary(libraryName, resolveFrom, options, host, libraryResolutionCache); const path = resolutionHost.toPath(resolveFrom); - watchFailedLookupLocationsOfExternalModuleResolutions(libraryName, resolution, path, getResolvedModuleFromResolution, /*deferWatchingNonRelativeResolution*/ false); + watchResolution(resolution, path, getResolvedModuleFromResolution, /*redirectedReference*/ undefined); resolvedLibraries.set(libFileName, resolution); if (existingResolution) { - stopWatchFailedLookupLocationOfResolution(existingResolution, path, getResolvedModuleFromResolution); + stopWatchFailedLookupLocationOfResolution(existingResolution, path, libraryResolutionCache); } } else { if (isTraceEnabled(options, host)) { - const resolved = getResolvedModuleFromResolution(resolution); + const resolved = getResolvedModuleFromResolution(resolution!); trace( host, resolved?.resolvedFileName ? @@ -1067,14 +995,14 @@ export function createResolutionCache(resolutionHost: ResolutionCacheHost, rootD ); } } - return resolution; + return resolution!; } function resolveSingleModuleNameWithoutWatching(moduleName: string, containingFile: string) { const path = resolutionHost.toPath(containingFile); const resolutionsInFile = resolvedModuleNames.get(path); const resolution = resolutionsInFile?.get(moduleName, /*mode*/ undefined); - if (resolution && !resolution.isInvalidated) return resolution; + if (resolution && !sharedCache.watchedResolutionInfoMap.get(resolution)!.isInvalidated) return resolution; const data = resolutionHost.beforeResolveSingleModuleNameWithoutWatching?.(moduleResolutionCache); const host = getModuleResolutionHost(resolutionHost); // We are not resolving d.ts so just normal resolution instead of doing resolution pass to global cache @@ -1089,347 +1017,58 @@ export function createResolutionCache(resolutionHost: ResolutionCacheHost, rootD return result; } - function isNodeModulesAtTypesDirectory(dirPath: Path) { - return endsWith(dirPath, "/node_modules/@types"); - } - - function watchFailedLookupLocationsOfExternalModuleResolutions( - name: string, + function watchResolution( resolution: T, filePath: Path, getResolutionWithResolvedFileName: GetResolutionWithResolvedFileName, - deferWatchingNonRelativeResolution: boolean, - ) { - (resolution.files ??= new Set()).add(filePath); - if (resolution.files.size !== 1) return; - if (!deferWatchingNonRelativeResolution || isExternalModuleNameRelative(name)) { - watchFailedLookupLocationOfResolution(resolution); - } - else { - nonRelativeExternalModuleResolutions.add(resolution); - } - const resolved = getResolutionWithResolvedFileName(resolution); - if (resolved && resolved.resolvedFileName) { - const key = resolutionHost.toPath(resolved.resolvedFileName); - let resolutions = resolvedFileToResolution.get(key); - if (!resolutions) resolvedFileToResolution.set(key, resolutions = new Set()); - resolutions.add(resolution); - } - } - - function watchFailedLookupLocation(failedLookupLocation: string, setAtRoot: boolean) { - const failedLookupLocationPath = resolutionHost.toPath(failedLookupLocation); - const toWatch = getDirectoryToWatchFailedLookupLocation( - failedLookupLocation, - failedLookupLocationPath, - rootDir, - rootPath, - rootPathComponents, - isRootWatchable, - getCurrentDirectory, - resolutionHost.preferNonRecursiveWatch, - ); - if (toWatch) { - const { dir, dirPath, nonRecursive, packageDir, packageDirPath } = toWatch; - if (dirPath === rootPath) { - Debug.assert(nonRecursive); - Debug.assert(!packageDir); - setAtRoot = true; - } - else { - setDirectoryWatcher(dir, dirPath, packageDir, packageDirPath, nonRecursive); - } - } - return setAtRoot; - } - - function watchFailedLookupLocationOfResolution(resolution: ResolutionWithFailedLookupLocations) { - Debug.assert(!!resolution.files?.size); - - const { failedLookupLocations, affectingLocations, alternateResult } = resolution; - if (!failedLookupLocations?.length && !affectingLocations?.length && !alternateResult) return; - if (failedLookupLocations?.length || alternateResult) resolutionsWithFailedLookups.add(resolution); - - let setAtRoot = false; - if (failedLookupLocations) { - for (const failedLookupLocation of failedLookupLocations) { - setAtRoot = watchFailedLookupLocation(failedLookupLocation, setAtRoot); - } - } - if (alternateResult) setAtRoot = watchFailedLookupLocation(alternateResult, setAtRoot); - if (setAtRoot) { - // This is always non recursive - setDirectoryWatcher(rootDir, rootPath, /*packageDir*/ undefined, /*packageDirPath*/ undefined, /*nonRecursive*/ true); - } - watchAffectingLocationsOfResolution(resolution, !failedLookupLocations?.length && !alternateResult); - } - - function watchAffectingLocationsOfResolution(resolution: ResolutionWithFailedLookupLocations, addToResolutionsWithOnlyAffectingLocations: boolean) { - Debug.assert(!!resolution.files?.size); - const { affectingLocations } = resolution; - if (!affectingLocations?.length) return; - if (addToResolutionsWithOnlyAffectingLocations) resolutionsWithOnlyAffectingLocations.add(resolution); - // Watch package json - for (const affectingLocation of affectingLocations) { - createFileWatcherOfAffectingLocation(affectingLocation, /*forResolution*/ true); - } - } - - function createFileWatcherOfAffectingLocation(affectingLocation: string, forResolution: boolean) { - const fileWatcher = fileWatchesOfAffectingLocations.get(affectingLocation); - if (fileWatcher) { - if (forResolution) fileWatcher.resolutions++; - else fileWatcher.files++; - return; - } - let locationToWatch = affectingLocation; - let isSymlink = false; - let symlinkWatcher: FileWatcherOfAffectingLocation | undefined; - if (resolutionHost.realpath) { - locationToWatch = resolutionHost.realpath(affectingLocation); - if (affectingLocation !== locationToWatch) { - isSymlink = true; - symlinkWatcher = fileWatchesOfAffectingLocations.get(locationToWatch); - } - } - - const resolutions = forResolution ? 1 : 0; - const files = forResolution ? 0 : 1; - if (!isSymlink || !symlinkWatcher) { - const watcher: FileWatcherOfAffectingLocation = { - watcher: canWatchAffectingLocation(resolutionHost.toPath(locationToWatch)) ? - resolutionHost.watchAffectingFileLocation(locationToWatch, (fileName, eventKind) => { - cachedDirectoryStructureHost?.addOrDeleteFile(fileName, resolutionHost.toPath(locationToWatch), eventKind); - invalidateAffectingFileWatcher(locationToWatch, moduleResolutionCache.getPackageJsonInfoCache().getInternalMap()); - resolutionHost.scheduleInvalidateResolutionsOfFailedLookupLocations(); - }) : noopFileWatcher, - resolutions: isSymlink ? 0 : resolutions, - files: isSymlink ? 0 : files, - symlinks: undefined, - }; - fileWatchesOfAffectingLocations.set(locationToWatch, watcher); - if (isSymlink) symlinkWatcher = watcher; - } - if (isSymlink) { - Debug.assert(!!symlinkWatcher); - const watcher: FileWatcherOfAffectingLocation = { - watcher: { - close: () => { - const symlinkWatcher = fileWatchesOfAffectingLocations.get(locationToWatch); - // Close symlink watcher if no ref - if (symlinkWatcher?.symlinks?.delete(affectingLocation) && !symlinkWatcher.symlinks.size && !symlinkWatcher.resolutions && !symlinkWatcher.files) { - fileWatchesOfAffectingLocations.delete(locationToWatch); - symlinkWatcher.watcher.close(); - } - }, - }, - resolutions, - files, - symlinks: undefined, - }; - fileWatchesOfAffectingLocations.set(affectingLocation, watcher); - (symlinkWatcher.symlinks ??= new Set()).add(affectingLocation); - } - } - - function invalidateAffectingFileWatcher(path: string, packageJsonMap: Map | undefined) { - const watcher = fileWatchesOfAffectingLocations.get(path); - if (watcher?.resolutions) (affectingPathChecks ??= new Set()).add(path); - if (watcher?.files) (affectingPathChecksForFile ??= new Set()).add(path); - watcher?.symlinks?.forEach(path => invalidateAffectingFileWatcher(path, packageJsonMap)); - packageJsonMap?.delete(resolutionHost.toPath(path)); - } - - function watchFailedLookupLocationOfNonRelativeModuleResolutions() { - nonRelativeExternalModuleResolutions.forEach(watchFailedLookupLocationOfResolution); - nonRelativeExternalModuleResolutions.clear(); - } - - function createDirectoryWatcherForPackageDir( - dir: string, - dirPath: Path, - packageDir: string, - packageDirPath: Path, - nonRecursive: boolean | undefined, - ) { - Debug.assert(!nonRecursive); - // Check if this is symlink: - let isSymlink = isSymlinkCache.get(packageDirPath); - let packageDirWatcher = packageDirWatchers.get(packageDirPath); - if (isSymlink === undefined) { - const realPath = resolutionHost.realpath!(packageDir); - isSymlink = realPath !== packageDir && resolutionHost.toPath(realPath) !== packageDirPath; - isSymlinkCache.set(packageDirPath, isSymlink); - if (!packageDirWatcher) { - packageDirWatchers.set( - packageDirPath, - packageDirWatcher = { - dirPathToWatcher: new Map(), - isSymlink, - }, - ); - } - else if (packageDirWatcher.isSymlink !== isSymlink) { - // Handle the change - packageDirWatcher.dirPathToWatcher.forEach(watcher => { - removeDirectoryWatcher(packageDirWatcher!.isSymlink ? packageDirPath : dirPath); - watcher.watcher = createDirPathToWatcher(); - }); - packageDirWatcher.isSymlink = isSymlink; - } - } - else { - Debug.assertIsDefined(packageDirWatcher); - Debug.assert(isSymlink === packageDirWatcher.isSymlink); - } - const forDirPath = packageDirWatcher.dirPathToWatcher.get(dirPath); - if (forDirPath) { - forDirPath.refCount++; - } - else { - packageDirWatcher.dirPathToWatcher.set(dirPath, { - watcher: createDirPathToWatcher(), - refCount: 1, - }); - if (isSymlink) dirPathToSymlinkPackageRefCount.set(dirPath, (dirPathToSymlinkPackageRefCount.get(dirPath) ?? 0) + 1); - } - - function createDirPathToWatcher() { - return isSymlink ? - createOrAddRefToDirectoryWatchOfFailedLookups(packageDir, packageDirPath, nonRecursive) : - createOrAddRefToDirectoryWatchOfFailedLookups(dir, dirPath, nonRecursive); - } - } - - function setDirectoryWatcher( - dir: string, - dirPath: Path, - packageDir: string | undefined, - packageDirPath: Path | undefined, - nonRecursive: boolean | undefined, + redirectedReference: ResolvedProjectReference | undefined, ) { - if (!packageDirPath || !resolutionHost.realpath) { - createOrAddRefToDirectoryWatchOfFailedLookups(dir, dirPath, nonRecursive); + let files = filesReferencingResolution.get(resolution); + if (!files) { + filesReferencingResolution.set(resolution, files = new Set([filePath])); + if (isResolvedWithGlobalCachePass(resolution)) resolutionsResolvedWithGlobalCache++; + else if (isResolvedWithoutGlobalCachePass(resolution)) resolutionsResolvedWithoutGlobalCache++; } else { - createDirectoryWatcherForPackageDir(dir, dirPath, packageDir!, packageDirPath, nonRecursive); + files.add(filePath); } + sharedCache.watchResolution(resolution, getResolutionWithResolvedFileName, redirectedReference); } - function createOrAddRefToDirectoryWatchOfFailedLookups(dir: string, dirPath: Path, nonRecursive: boolean | undefined) { - let dirWatcher = directoryWatchesOfFailedLookups.get(dirPath); - if (dirWatcher) { - Debug.assert(!!nonRecursive === !!dirWatcher.nonRecursive); - dirWatcher.refCount++; - } - else { - directoryWatchesOfFailedLookups.set(dirPath, dirWatcher = { watcher: createDirectoryWatcher(dir, dirPath, nonRecursive), refCount: 1, nonRecursive }); - } - return dirWatcher; - } - - function stopWatchFailedLookupLocation(failedLookupLocation: string, removeAtRoot: boolean) { - const failedLookupLocationPath = resolutionHost.toPath(failedLookupLocation); - const toWatch = getDirectoryToWatchFailedLookupLocation( - failedLookupLocation, - failedLookupLocationPath, - rootDir, - rootPath, - rootPathComponents, - isRootWatchable, - getCurrentDirectory, - resolutionHost.preferNonRecursiveWatch, - ); - if (toWatch) { - const { dirPath, packageDirPath } = toWatch; - if (dirPath === rootPath) { - removeAtRoot = true; - } - else if (packageDirPath && resolutionHost.realpath) { - const packageDirWatcher = packageDirWatchers.get(packageDirPath)!; - const forDirPath = packageDirWatcher.dirPathToWatcher.get(dirPath)!; - forDirPath.refCount--; - if (forDirPath.refCount === 0) { - removeDirectoryWatcher(packageDirWatcher.isSymlink ? packageDirPath : dirPath); - packageDirWatcher.dirPathToWatcher.delete(dirPath); - if (packageDirWatcher.isSymlink) { - const refCount = dirPathToSymlinkPackageRefCount.get(dirPath)! - 1; - if (refCount === 0) { - dirPathToSymlinkPackageRefCount.delete(dirPath); - } - else { - dirPathToSymlinkPackageRefCount.set(dirPath, refCount); - } - } - } - } - else { - removeDirectoryWatcher(dirPath); - } - } - return removeAtRoot; + function invalidateAffectingFileWatcher(path: string) { + (affectingPathChecksForFile ??= new Set()).add(path); } - function stopWatchFailedLookupLocationOfResolution( - resolution: T, + function stopWatchFailedLookupLocationOfResolution( + resolution: ResolutionWithFailedLookupLocations, filePath: Path, - getResolutionWithResolvedFileName: GetResolutionWithResolvedFileName, + cache: ModuleOrTypeReferenceResolutionCache, ) { - Debug.checkDefined(resolution.files).delete(filePath); - if (resolution.files!.size) return; - resolution.files = undefined; - const resolved = getResolutionWithResolvedFileName(resolution); - if (resolved && resolved.resolvedFileName) { - const key = resolutionHost.toPath(resolved.resolvedFileName); - const resolutions = resolvedFileToResolution.get(key); - if (resolutions?.delete(resolution) && !resolutions.size) resolvedFileToResolution.delete(key); - } - - const { failedLookupLocations, affectingLocations, alternateResult } = resolution; - if (resolutionsWithFailedLookups.delete(resolution)) { - let removeAtRoot = false; - if (failedLookupLocations) { - for (const failedLookupLocation of failedLookupLocations) { - removeAtRoot = stopWatchFailedLookupLocation(failedLookupLocation, removeAtRoot); - } - } - if (alternateResult) removeAtRoot = stopWatchFailedLookupLocation(alternateResult, removeAtRoot); - if (removeAtRoot) removeDirectoryWatcher(rootPath); - } - else if (affectingLocations?.length) { - resolutionsWithOnlyAffectingLocations.delete(resolution); - } - - if (affectingLocations) { - for (const affectingLocation of affectingLocations) { - const watcher = fileWatchesOfAffectingLocations.get(affectingLocation)!; - watcher.resolutions--; - } - } - } - - function removeDirectoryWatcher(dirPath: Path) { - const dirWatcher = directoryWatchesOfFailedLookups.get(dirPath)!; - // Do not close the watcher yet since it might be needed by other failed lookup locations. - dirWatcher.refCount--; + const files = filesReferencingResolution.get(resolution)!; + files.delete(filePath); + if (files.size) return; + let setOfResolutions = potentiallyUnreferencedResolutions?.get(cache); + if (!setOfResolutions) (potentiallyUnreferencedResolutions ??= new Map()).set(cache, setOfResolutions = new Set()); + setOfResolutions.add(resolution); } - function createDirectoryWatcher(directory: string, dirPath: Path, nonRecursive: boolean | undefined) { - return resolutionHost.watchDirectoryOfFailedLookupLocation(directory, fileOrDirectory => { - const fileOrDirectoryPath = resolutionHost.toPath(fileOrDirectory); - if (cachedDirectoryStructureHost) { - // Since the file existence changed, update the sourceFiles cache - cachedDirectoryStructureHost.addOrDeleteFileOrDirectory(fileOrDirectory, fileOrDirectoryPath); - } - - scheduleInvalidateResolutionOfFailedLookupLocation(fileOrDirectoryPath, dirPath === fileOrDirectoryPath); - }, nonRecursive ? WatchDirectoryFlags.None : WatchDirectoryFlags.Recursive); + function releaseResolution( + resolution: ResolutionWithFailedLookupLocations, + moduleOrTypeRefCache: ModuleOrTypeReferenceResolutionCache, + ) { + const files = filesReferencingResolution.get(resolution)!; + if (files.size) return false; + filesReferencingResolution.delete(resolution); + if (isResolvedWithGlobalCachePass(resolution)) resolutionsResolvedWithGlobalCache--; + else if (isResolvedWithoutGlobalCachePass(resolution)) resolutionsResolvedWithoutGlobalCache--; + sharedCache.releaseResolution(resolution, moduleOrTypeRefCache); + return true; } - function removeResolutionsOfFileFromCache( + function removeResolutionsOfFileFromCache( cache: Map>, filePath: Path, - getResolutionWithResolvedFileName: GetResolutionWithResolvedFileName, + moduleOrTypeRefCache: ModuleOrTypeReferenceResolutionCache, ) { // Deleted file, stop watching failed lookups for all the resolutions in the file const resolutions = cache.get(filePath); @@ -1438,7 +1077,7 @@ export function createResolutionCache(resolutionHost: ResolutionCacheHost, rootD stopWatchFailedLookupLocationOfResolution( resolution, filePath, - getResolutionWithResolvedFileName, + moduleOrTypeRefCache, ) ); cache.delete(filePath); @@ -1460,23 +1099,22 @@ export function createResolutionCache(resolutionHost: ResolutionCacheHost, rootD } function removeResolutionsOfFile(filePath: Path) { - removeResolutionsOfFileFromCache(resolvedModuleNames, filePath, getResolvedModuleFromResolution); - removeResolutionsOfFileFromCache(resolvedTypeReferenceDirectives, filePath, getResolvedTypeReferenceDirectiveFromResolution); + if (sharedCache.currentCache() === cache) { + removeResolutionsOfFileFromCache(resolvedModuleNames, filePath, moduleResolutionCache); + removeResolutionsOfFileFromCache(resolvedTypeReferenceDirectives, filePath, typeReferenceDirectiveResolutionCache); + } + else { + (pendingRemoveResolutionsOfFile ??= new Set()).add(filePath); + } } - function invalidateResolutions(resolutions: Set | Map | undefined, canInvalidate: (resolution: ResolutionWithFailedLookupLocations) => boolean | undefined) { - if (!resolutions) return false; - let invalidated = false; - resolutions.forEach(resolution => { - if (resolution.isInvalidated || !canInvalidate(resolution)) return; - resolution.isInvalidated = invalidated = true; - for (const containingFilePath of Debug.checkDefined(resolution.files)) { - (filesWithInvalidatedResolutions ??= new Set()).add(containingFilePath); - // When its a file with inferred types resolution, invalidate type reference directive resolution - hasChangedAutomaticTypeDirectiveNames = hasChangedAutomaticTypeDirectiveNames || endsWith(containingFilePath, inferredTypesContainingFile); - } - }); - return invalidated; + function invalidateResolution(resolution: ResolutionWithFailedLookupLocations) { + const files = filesReferencingResolution.get(resolution)!; + for (const containingFilePath of files) { + (filesWithInvalidatedResolutions ??= new Set()).add(containingFilePath); + // When its a file with inferred types resolution, invalidate type reference directive resolution + hasChangedAutomaticTypeDirectiveNames = hasChangedAutomaticTypeDirectiveNames || endsWith(containingFilePath, inferredTypesContainingFile); + } } function invalidateResolutionOfFile(filePath: Path) { @@ -1484,7 +1122,7 @@ export function createResolutionCache(resolutionHost: ResolutionCacheHost, rootD // Resolution is invalidated if the resulting file name is same as the deleted file path const prevHasChangedAutomaticTypeDirectiveNames = hasChangedAutomaticTypeDirectiveNames; if ( - invalidateResolutions(resolvedFileToResolution.get(filePath), returnTrue) && + sharedCache.invalidateResolutionOfFile(filePath) && hasChangedAutomaticTypeDirectiveNames && !prevHasChangedAutomaticTypeDirectiveNames ) { @@ -1492,127 +1130,28 @@ export function createResolutionCache(resolutionHost: ResolutionCacheHost, rootD } } - function setFilesWithInvalidatedNonRelativeUnresolvedImports(filesMap: ReadonlyMap) { - Debug.assert(filesWithInvalidatedNonRelativeUnresolvedImports === filesMap || filesWithInvalidatedNonRelativeUnresolvedImports === undefined); - filesWithInvalidatedNonRelativeUnresolvedImports = filesMap; + function invalidateResolutionsWithGlobalCachePass() { + if (resolutionsResolvedWithGlobalCache) resolutionsWithGlobalCachePassAreInvalidated = true; } - - function scheduleInvalidateResolutionOfFailedLookupLocation(fileOrDirectoryPath: Path, isCreatingWatchedDirectory: boolean) { - if (isCreatingWatchedDirectory) { - // Watching directory is created - // Invalidate any resolution has failed lookup in this directory - (isInDirectoryChecks ||= new Set()).add(fileOrDirectoryPath); - } - else { - // If something to do with folder/file starting with "." in node_modules folder, skip it - const updatedPath = removeIgnoredPath(fileOrDirectoryPath); - if (!updatedPath) return false; - fileOrDirectoryPath = updatedPath; - - // prevent saving an open file from over-eagerly triggering invalidation - if (resolutionHost.fileIsOpen(fileOrDirectoryPath)) { - return false; - } - - // Some file or directory in the watching directory is created - // Return early if it does not have any of the watching extension or not the custom failed lookup path - const dirOfFileOrDirectory = getDirectoryPath(fileOrDirectoryPath); - if ( - isNodeModulesAtTypesDirectory(fileOrDirectoryPath) || isNodeModulesDirectory(fileOrDirectoryPath) || - isNodeModulesAtTypesDirectory(dirOfFileOrDirectory) || isNodeModulesDirectory(dirOfFileOrDirectory) - ) { - // Invalidate any resolution from this directory - (failedLookupChecks ||= new Set()).add(fileOrDirectoryPath); - (startsWithPathChecks ||= new Set()).add(fileOrDirectoryPath); - } - else { - // Ignore emits from the program - if (isEmittedFileOfProgram(resolutionHost.getCurrentProgram(), fileOrDirectoryPath)) { - return false; - } - // Ignore .map files - if (fileExtensionIs(fileOrDirectoryPath, ".map")) { - return false; - } - // Resolution need to be invalidated if failed lookup location is same as the file or directory getting created - (failedLookupChecks ||= new Set()).add(fileOrDirectoryPath); - - // Also any path that starts with this path should be added just in case if this is directory notification - // and we dont get any notification for file - (startsWithPathChecks ||= new Set()).add(fileOrDirectoryPath); - - // If the invalidated file is from a node_modules package, invalidate everything else - // in the package since we might not get notifications for other files in the package. - // This hardens our logic against unreliable file watchers. - const packagePath = parseNodeModuleFromPath(fileOrDirectoryPath, /*isFolder*/ true); - if (packagePath) (startsWithPathChecks ||= new Set()).add(packagePath as Path); - } - } - resolutionHost.scheduleInvalidateResolutionsOfFailedLookupLocations(); + function invalidateResolutionsWithoutGlobalCachePass() { + if (resolutionsResolvedWithoutGlobalCache) resolutionsWithoutGlobalCachePassAreInvalidated = true; } - - function invalidatePackageJsonMap() { - const packageJsonMap = moduleResolutionCache.getPackageJsonInfoCache().getInternalMap(); - if (packageJsonMap && (failedLookupChecks || startsWithPathChecks || isInDirectoryChecks)) { - packageJsonMap.forEach((_value, path) => isInvalidatedFailedLookup(path) ? packageJsonMap.delete(path) : undefined); - } + function invalidateUnresolvedResolutionsWithGlobalCachePass() { + if (resolutionsResolvedWithGlobalCache) unresolvedResolutionsWithGlobalCachePassAreInvalidated = true; } function invalidateResolutionsOfFailedLookupLocations() { - if (allModuleAndTypeResolutionsAreInvalidated) { - affectingPathChecksForFile = undefined; - invalidatePackageJsonMap(); - if (failedLookupChecks || startsWithPathChecks || isInDirectoryChecks || affectingPathChecks) { - invalidateResolutions(resolvedLibraries, canInvalidateFailedLookupResolution); - } - failedLookupChecks = undefined; - startsWithPathChecks = undefined; - isInDirectoryChecks = undefined; - affectingPathChecks = undefined; - return true; - } - let invalidated = false; - if (affectingPathChecksForFile) { + let invalidated = allModuleAndTypeResolutionsAreInvalidated; + if (!allModuleAndTypeResolutionsAreInvalidated && affectingPathChecksForFile) { resolutionHost.getCurrentProgram()?.getSourceFiles().forEach(f => { if (some(f.packageJsonLocations, location => affectingPathChecksForFile!.has(location))) { (filesWithInvalidatedResolutions ??= new Set()).add(f.path); invalidated = true; } }); - affectingPathChecksForFile = undefined; } - - if (!failedLookupChecks && !startsWithPathChecks && !isInDirectoryChecks && !affectingPathChecks) { - return invalidated; - } - - invalidated = invalidateResolutions(resolutionsWithFailedLookups, canInvalidateFailedLookupResolution) || invalidated; - invalidatePackageJsonMap(); - failedLookupChecks = undefined; - startsWithPathChecks = undefined; - isInDirectoryChecks = undefined; - invalidated = invalidateResolutions(resolutionsWithOnlyAffectingLocations, canInvalidatedFailedLookupResolutionWithAffectingLocation) || invalidated; - affectingPathChecks = undefined; - return invalidated; - } - - function canInvalidateFailedLookupResolution(resolution: ResolutionWithFailedLookupLocations) { - if (canInvalidatedFailedLookupResolutionWithAffectingLocation(resolution)) return true; - if (!failedLookupChecks && !startsWithPathChecks && !isInDirectoryChecks) return false; - return resolution.failedLookupLocations?.some(location => isInvalidatedFailedLookup(resolutionHost.toPath(location))) || - (!!resolution.alternateResult && isInvalidatedFailedLookup(resolutionHost.toPath(resolution.alternateResult))); - } - - function isInvalidatedFailedLookup(locationPath: Path) { - return failedLookupChecks?.has(locationPath) || - firstDefinedIterator(startsWithPathChecks?.keys() || [], fileOrDirectoryPath => startsWith(locationPath, fileOrDirectoryPath) ? true : undefined) || - firstDefinedIterator(isInDirectoryChecks?.keys() || [], dirPath => - locationPath.length > dirPath.length && - startsWith(locationPath, dirPath) && (isDiskPathRoot(dirPath) || locationPath[dirPath.length] === directorySeparator) ? true : undefined); - } - - function canInvalidatedFailedLookupResolutionWithAffectingLocation(resolution: ResolutionWithFailedLookupLocations) { - return !!affectingPathChecks && resolution.affectingLocations?.some(location => affectingPathChecks!.has(location)); + affectingPathChecksForFile = undefined; + return sharedCache.invalidateResolutionsOfFailedLookupLocations() || invalidated; } function closeTypeRootsWatch() { @@ -1621,45 +1160,20 @@ export function createResolutionCache(resolutionHost: ResolutionCacheHost, rootD function createTypeRootsWatch(typeRoot: string): FileWatcher { // Create new watch and recursive info - return canWatchTypeRootPath(typeRoot) ? - resolutionHost.watchTypeRootsDirectory(typeRoot, fileOrDirectory => { - const fileOrDirectoryPath = resolutionHost.toPath(fileOrDirectory); - if (cachedDirectoryStructureHost) { - // Since the file existence changed, update the sourceFiles cache - cachedDirectoryStructureHost.addOrDeleteFileOrDirectory(fileOrDirectory, fileOrDirectoryPath); - } + return sharedCache.createTypeRootsWatch(typeRoot, cache); + } - // For now just recompile - // We could potentially store more data here about whether it was/would be really be used or not - // and with that determine to trigger compilation but for now this is enough - hasChangedAutomaticTypeDirectiveNames = true; - resolutionHost.onChangedAutomaticTypeDirectiveNames(); - - // Since directory watchers invoked are flaky, the failed lookup location events might not be triggered - // So handle to failed lookup locations here as well to ensure we are invalidating resolutions - const dirPath = getDirectoryToWatchFailedLookupLocationFromTypeRoot( - typeRoot, - resolutionHost.toPath(typeRoot), - rootPath, - rootPathComponents, - isRootWatchable, - getCurrentDirectory, - resolutionHost.preferNonRecursiveWatch, - dirPath => directoryWatchesOfFailedLookups.has(dirPath) || dirPathToSymlinkPackageRefCount.has(dirPath), - ); - if (dirPath) { - scheduleInvalidateResolutionOfFailedLookupLocation(fileOrDirectoryPath, dirPath === fileOrDirectoryPath); - } - }, WatchDirectoryFlags.Recursive) : - noopFileWatcher; + function invalidateTypeRoot() { + hasChangedAutomaticTypeDirectiveNames = true; + resolutionHost.onChangedAutomaticTypeDirectiveNames(); } /** * Watches the types that would get added as part of getAutomaticTypeDirectiveNames * To be called when compiler options change */ - function updateTypeRootsWatch() { - const options = resolutionHost.getCompilationSettings(); + function updateTypeRootsWatch(options?: CompilerOptions) { + options ??= resolutionHost.getCompilationSettings(); if (options.types) { // No need to do any watch since resolution cache is going to handle the failed lookups // for the types added by this @@ -1684,14 +1198,6 @@ export function createResolutionCache(resolutionHost: ResolutionCacheHost, rootD closeTypeRootsWatch(); } } - - function canWatchTypeRootPath(typeRoot: string) { - // If type roots is specified, watch that path - if (resolutionHost.getCompilationSettings().typeRoots) return true; - - // Otherwise can watch directory only if we can watch the parent directory of node_modules/@types - return canWatchAtTypes(resolutionHost.toPath(typeRoot)); - } } function resolutionIsSymlink(resolution: ResolutionWithFailedLookupLocations) { diff --git a/src/compiler/sharedResolutionCache.ts b/src/compiler/sharedResolutionCache.ts new file mode 100644 index 0000000000000..d8a244eb0298e --- /dev/null +++ b/src/compiler/sharedResolutionCache.ts @@ -0,0 +1,1430 @@ +import { + clearMap, + closeFileWatcherOf, + CompilerOptions, + createModuleResolutionCache, + createTypeReferenceDirectiveResolutionCache, + Debug, + directorySeparator, + endsWith, + fileExtensionIs, + FileWatcher, + firstDefinedIterator, + forEachKey, + GetCanonicalFileName, + getDirectoryPath, + getNormalizedAbsolutePath, + getOptionsForLibraryResolution, + getPathComponents, + getPathFromPathComponents, + identity, + ignoredPaths, + isDiskPathRoot, + isEmittedFileOfProgram, + isNodeModulesDirectory, + isResolvedWithGlobalCachePass, + isResolvedWithGlobalCachePassButStillUnresolved, + isRootedDiskPath, + memoize, + ModuleOrTypeReferenceResolutionCache, + ModuleResolutionCache, + noopFileWatcher, + normalizePath, + parseNodeModuleFromPath, + Path, + PathPathComponents, + removeSuffix, + ResolutionCache, + ResolutionWithResolvedFileName, + ResolvedModuleWithFailedLookupLocations, + ResolvedProjectReference, + ResolvedTypeReferenceDirectiveWithFailedLookupLocations, + returnTrue, + RootDirInfo, + some, + startsWith, + tryAddToSet, + TypeReferenceDirectiveResolutionCache, + WatchDirectoryFlags, +} from "./_namespaces/ts.js"; + +declare module "./_namespaces/ts.js" { + /** @internal */ + export interface ModuleOrTypeReferenceResolutionCache { + sharedCache?: ModuleOrTypeReferenceResolutionCache; + } +} + +/** + * This is the cache of module/typedirectives resolution that are shared across projects + * + * @internal + */ +export interface SharedResolutionCache { + sharedCacheHost: SharedResolutionCacheHost; + moduleResolutionCache: ModuleResolutionCache; + typeReferenceDirectiveResolutionCache: TypeReferenceDirectiveResolutionCache; + libraryResolutionCache: ModuleResolutionCache; + resolvedFileToResolution: Map>; + resolutionsWithFailedLookups: Set; + packageJsonRefCount: Map; + resolutionsWithOnlyAffectingLocations: Set; + watchedResolutionInfoMap: Map; + typeRootsWatches: Map; + inUseResolutionCaches: RefCountCache; + cacheToOptions: Map>; + directoryWatchesOfFailedLookups: Map; + nonRecursiveDirectoryWatchesOfFailedLookups: Map; + fileWatchesOfAffectingLocations: Map; + packageDirWatchers: Map; + dirPathToSymlinkPackageRefCount: Map; + + clear(cache: ResolutionCache): void; + startCachingPerDirectoryResolution(cache: ResolutionCache): void; + finishCachingPerDirectoryResolution(): void; + compactCaches(availableOptions: Set, cache: ResolutionCache): void; + + watchResolution( + resolution: T, + getResolutionWithResolvedFileName: GetResolutionWithResolvedFileName, + redirectedReference: ResolvedProjectReference | undefined, + ): void; + releaseResolution( + resolution: ResolutionWithFailedLookupLocations, + moduleOrTypeRefCache: ModuleOrTypeReferenceResolutionCache, + ): void; + + createFileWatcherOfAffectingLocation(affectingLocation: string): void; + releaseFileWatcherOfAffectingLocation(location: string): void; + closeFileWatcherOfAffectingLocation(path: string): void; + addToPotentiallyUnwatchedPackageJsons(location: string): void; + + invalidateResolutionsOfFailedLookupLocations(): boolean; + invalidateResolutionOfFile(filePath: Path): boolean; + invalidateResolution( + resolution: ResolutionWithFailedLookupLocations, + canInvalidate: (resolution: ResolutionWithFailedLookupLocations) => boolean | undefined, + ): void; + + createTypeRootsWatch(typeRoot: string, cache: ResolutionCache): FileWatcher; + currentCache(): ResolutionCache | undefined; +} + +/** @internal */ +export interface WatchedResolutionInfo { + isInvalidated?: boolean; + // Files that have this resolution using + caches: Set; + watchedFailed?: number; + watchedAffected?: number; + dirWatches?: Set; + nonRecursiveDirWatches?: Set; + packageDirWatchers?: Map>; + rootDirInfo?: RootDirInfo; +} + +/** @internal */ +export type ResolutionWithFailedLookupLocations = + | ResolvedModuleWithFailedLookupLocations + | ( + & ResolvedTypeReferenceDirectiveWithFailedLookupLocations + // Just so we can use this directly. These any ways are optional properties + & Pick + ); + +/** @internal */ +export interface SharedResolutionCacheHost { + getCurrentDirectory(): string; + toPath(fileName: string): Path; + getCanonicalFileName: GetCanonicalFileName; + preferNonRecursiveWatch: boolean | undefined; + fileIsOpen(filePath: Path): boolean; +} + +/** @internal */ +export type RefCountCache = Map; + +/** @internal */ +export interface FileWatcherOfAffectingLocation { + /** watcher for the lookup */ + watcher: FileWatcher; + resolutions: RefCountCache | undefined; + files: RefCountCache | undefined; + symlinks: Set | undefined; +} + +/** @internal */ +export interface DirectoryWatchesOfFailedLookup { + /** watcher for the lookup */ + watcher: FileWatcher; + /** ref count keeping this watch alive */ + refCount: RefCountCache; +} +/** @internal */ +export interface DirPathToWatcherOfPackageDirWatcher { + watcher: DirectoryWatchesOfFailedLookup; + refCount: RefCountCache; +} +/** @internal */ +export interface PackageDirWatcher { + dirPathToWatcher: Map; + isSymlink: boolean; +} +/** @internal */ +export interface TypeRootWatch { + watcher: FileWatcher; + refCount: Set; +} + +/** @internal */ +export interface DirectoryOfFailedLookupWatch { + dir: string; + dirPath: Path; + nonRecursive?: boolean; + packageDir?: string; + packageDirPath?: Path; +} + +/** @internal */ +export function removeIgnoredPath(path: Path): Path | undefined { + // Consider whole staging folder as if node_modules changed. + if (endsWith(path, "/node_modules/.staging")) { + return removeSuffix(path, "/.staging") as Path; + } + + return some(ignoredPaths, searchPath => path.includes(searchPath)) ? + undefined : + path; +} + +function perceivedOsRootLengthForWatching(pathComponents: Readonly, length: number) { + // Ignore "/", "c:/" + if (length <= 1) return 1; + let indexAfterOsRoot = 1; + let isDosStyle = pathComponents[0].search(/[a-z]:/i) === 0; + if ( + pathComponents[0] !== directorySeparator && + !isDosStyle && // Non dos style paths + pathComponents[1].search(/[a-z]\$$/i) === 0 // Dos style nextPart + ) { + // ignore "//vda1cs4850/c$/folderAtRoot" + if (length === 2) return 2; + indexAfterOsRoot = 2; + isDosStyle = true; + } + + if ( + isDosStyle && + !pathComponents[indexAfterOsRoot].match(/^users$/i) + ) { + // Paths like c:/notUsers + return indexAfterOsRoot; + } + + if (pathComponents[indexAfterOsRoot].match(/^workspaces$/i)) { + // Paths like: /workspaces as codespaces hoist the repos in /workspaces so we have to exempt these from "2" level from root rule + return indexAfterOsRoot + 1; + } + + // Paths like: c:/users/username or /home/username + return indexAfterOsRoot + 2; +} + +/** + * Filter out paths like + * "/", "/user", "/user/username", "/user/username/folderAtRoot", + * "c:/", "c:/users", "c:/users/username", "c:/users/username/folderAtRoot", "c:/folderAtRoot" + * @param dirPath + * + * @internal + */ +export function canWatchDirectoryOrFile(pathComponents: Readonly, length?: number): boolean { + if (length === undefined) length = pathComponents.length; + // Ignore "/", "c:/" + // ignore "/user", "c:/users" or "c:/folderAtRoot" + if (length <= 2) return false; + const perceivedOsRootLength = perceivedOsRootLengthForWatching(pathComponents, length); + return length > perceivedOsRootLength + 1; +} + +/** @internal */ +export function canWatchDirectoryOrFilePath(path: Path): boolean { + return canWatchDirectoryOrFile(getPathComponents(path)); +} + +/** @internal */ +export function canWatchAtTypes(atTypes: Path): boolean { + // Otherwise can watch directory only if we can watch the parent directory of node_modules/@types + return canWatchAffectedPackageJsonOrNodeModulesOfAtTypes(getDirectoryPath(atTypes)); +} + +function isInDirectoryPath(dirComponents: Readonly, fileOrDirComponents: Readonly) { + if (fileOrDirComponents.length < dirComponents.length) return false; + for (let i = 0; i < dirComponents.length; i++) { + if (fileOrDirComponents[i] !== dirComponents[i]) return false; + } + return true; +} + +function canWatchAffectedPackageJsonOrNodeModulesOfAtTypes(fileOrDirPath: Path) { + return canWatchDirectoryOrFilePath(fileOrDirPath); +} + +/** @internal */ +export function canWatchAffectingLocation(filePath: Path): boolean { + return canWatchAffectedPackageJsonOrNodeModulesOfAtTypes(filePath); +} + +/** @internal */ +export function getDirectoryToWatchFailedLookupLocation( + failedLookupLocation: string, + failedLookupLocationPath: Path, + rootDir: string, + rootPath: Path, + rootPathComponents: Readonly, + isRootWatchable: boolean, + getCurrentDirectory: () => string | undefined, + preferNonRecursiveWatch: boolean | undefined, +): DirectoryOfFailedLookupWatch | undefined { + const failedLookupPathComponents: Readonly = getPathComponents(failedLookupLocationPath); + // Ensure failed look up is normalized path + failedLookupLocation = isRootedDiskPath(failedLookupLocation) ? normalizePath(failedLookupLocation) : getNormalizedAbsolutePath(failedLookupLocation, getCurrentDirectory()); + const failedLookupComponents: readonly string[] = getPathComponents(failedLookupLocation); + const perceivedOsRootLength = perceivedOsRootLengthForWatching(failedLookupPathComponents, failedLookupPathComponents.length); + if (failedLookupPathComponents.length <= perceivedOsRootLength + 1) return undefined; + // If directory path contains node module, get the most parent node_modules directory for watching + const nodeModulesIndex = failedLookupPathComponents.indexOf("node_modules" as Path); + if (nodeModulesIndex !== -1 && nodeModulesIndex + 1 <= perceivedOsRootLength + 1) return undefined; // node_modules not at position where it can be watched + const lastNodeModulesIndex = failedLookupPathComponents.lastIndexOf("node_modules" as Path); + if (isRootWatchable && isInDirectoryPath(rootPathComponents, failedLookupPathComponents)) { + if (failedLookupPathComponents.length > rootPathComponents.length + 1) { + // Instead of watching root, watch directory in root to avoid watching excluded directories not needed for module resolution + return getDirectoryOfFailedLookupWatch( + failedLookupComponents, + failedLookupPathComponents, + Math.max(rootPathComponents.length + 1, perceivedOsRootLength + 1), + lastNodeModulesIndex, + ); + } + else { + // Always watch root directory non recursively + return { + dir: rootDir, + dirPath: rootPath, + nonRecursive: true, + }; + } + } + + return getDirectoryToWatchFromFailedLookupLocationDirectory( + failedLookupComponents, + failedLookupPathComponents, + failedLookupPathComponents.length - 1, + perceivedOsRootLength, + nodeModulesIndex, + rootPathComponents, + lastNodeModulesIndex, + preferNonRecursiveWatch, + ); +} + +function getDirectoryToWatchFromFailedLookupLocationDirectory( + dirComponents: readonly string[], + dirPathComponents: Readonly, + dirPathComponentsLength: number, + perceivedOsRootLength: number, + nodeModulesIndex: number, + rootPathComponents: Readonly, + lastNodeModulesIndex: number, + preferNonRecursiveWatch: boolean | undefined, +): DirectoryOfFailedLookupWatch | undefined { + // If directory path contains node module, get the most parent node_modules directory for watching + if (nodeModulesIndex !== -1) { + // If the directory is node_modules use it to watch, always watch it recursively + return getDirectoryOfFailedLookupWatch( + dirComponents, + dirPathComponents, + nodeModulesIndex + 1, + lastNodeModulesIndex, + ); + } + + // Use some ancestor of the root directory + let nonRecursive = true; + let length = dirPathComponentsLength; + if (!preferNonRecursiveWatch) { + for (let i = 0; i < dirPathComponentsLength; i++) { + if (dirPathComponents[i] !== rootPathComponents[i]) { + nonRecursive = false; + length = Math.max(i + 1, perceivedOsRootLength + 1); + break; + } + } + } + return getDirectoryOfFailedLookupWatch( + dirComponents, + dirPathComponents, + length, + lastNodeModulesIndex, + nonRecursive, + ); +} + +function getDirectoryOfFailedLookupWatch( + dirComponents: readonly string[], + dirPathComponents: Readonly, + length: number, + lastNodeModulesIndex: number, + nonRecursive?: boolean, +): DirectoryOfFailedLookupWatch { + let packageDirLength; + if (lastNodeModulesIndex !== -1 && lastNodeModulesIndex + 1 >= length && lastNodeModulesIndex + 2 < dirPathComponents.length) { + if (!startsWith(dirPathComponents[lastNodeModulesIndex + 1], "@")) { + packageDirLength = lastNodeModulesIndex + 2; + } + else if (lastNodeModulesIndex + 3 < dirPathComponents.length) { + packageDirLength = lastNodeModulesIndex + 3; + } + } + return { + dir: getPathFromPathComponents(dirComponents, length), + dirPath: getPathFromPathComponents(dirPathComponents, length), + nonRecursive, + packageDir: packageDirLength !== undefined ? getPathFromPathComponents(dirComponents, packageDirLength) : undefined, + packageDirPath: packageDirLength !== undefined ? getPathFromPathComponents(dirPathComponents, packageDirLength) : undefined, + }; +} + +/** @internal */ +export type GetResolutionWithResolvedFileName = (resolution: T) => R | undefined; + +function getModuleOrTypeRefResolved(resolution: ResolutionWithFailedLookupLocations) { + return (resolution as ResolvedModuleWithFailedLookupLocations).resolvedModule ?? + (resolution as ResolvedTypeReferenceDirectiveWithFailedLookupLocations).resolvedTypeReferenceDirective; +} + +/** @internal */ +export function createSharedResolutionCache(sharedCacheHost: SharedResolutionCacheHost): SharedResolutionCache { + const resolutionsWithFailedLookups = new Set(); + const resolutionsWithOnlyAffectingLocations = new Set(); + const resolvedFileToResolution = new Map>(); + const impliedFormatPackageJsons = new Map(); + const watchedResolutionInfoMap = new Map(); + const typeRootsWatches = new Map(); + const inUseResolutionCaches = new Map(); + const cacheToOptions = new Map>(); + + let affectingPathChecks: Set | undefined; + let failedLookupChecks: Set | undefined; + let startsWithPathChecks: Set | undefined; + let isInDirectoryChecks: Set | undefined; + + let cachesNeedingGc: Set> | undefined; + let potentiallyUnreferencedDirWatchers: Set | undefined; + let considerNonWatchedResolutionAsInvalidated = false; + + const getCurrentDirectory = memoize(() => sharedCacheHost.getCurrentDirectory()); + + const moduleResolutionCache = createModuleResolutionCache( + getCurrentDirectory(), + sharedCacheHost.getCanonicalFileName, + /*options*/ undefined, + /*packageJsonInfoCache*/ undefined, + /*optionsToRedirectsKey*/ undefined, + getValidModuleResolution, + ); + + const typeReferenceDirectiveResolutionCache: TypeReferenceDirectiveResolutionCache = createTypeReferenceDirectiveResolutionCache( + getCurrentDirectory(), + sharedCacheHost.getCanonicalFileName, + /*options*/ undefined, + moduleResolutionCache.getPackageJsonInfoCache(), + moduleResolutionCache.optionsToRedirectsKey, + getValidResolution, + ); + + const libraryResolutionCache = createModuleResolutionCache( + getCurrentDirectory(), + sharedCacheHost.getCanonicalFileName, + getOptionsForLibraryResolution(/*options*/ undefined), + moduleResolutionCache.getPackageJsonInfoCache(), + /*optionsToRedirectsKey*/ undefined, + getValidResolution, + ); + + const packageJsonRefCount = new Map(); + let potentiallyUnwatchedPackageJsons: Set | undefined; + const directoryWatchesOfFailedLookups = new Map(); + const nonRecursiveDirectoryWatchesOfFailedLookups = new Map(); + const fileWatchesOfAffectingLocations = new Map(); + + const isSymlinkCache = new Map(); + const packageDirWatchers = new Map(); // Watching packageDir if symlink otherwise watching dirPath + const dirPathToSymlinkPackageRefCount = new Map(); // Refcount for dirPath watches when watching symlinked packageDir + + let currentCache: ResolutionCache | undefined; + + return { + sharedCacheHost, + moduleResolutionCache, + typeReferenceDirectiveResolutionCache, + libraryResolutionCache, + resolvedFileToResolution, + resolutionsWithFailedLookups, + resolutionsWithOnlyAffectingLocations, + packageJsonRefCount, + watchedResolutionInfoMap, + typeRootsWatches, + inUseResolutionCaches, + cacheToOptions, + directoryWatchesOfFailedLookups, + nonRecursiveDirectoryWatchesOfFailedLookups, + fileWatchesOfAffectingLocations, + packageDirWatchers, + dirPathToSymlinkPackageRefCount, + + clear, + startCachingPerDirectoryResolution, + finishCachingPerDirectoryResolution, + compactCaches, + + watchResolution, + releaseResolution, + + createFileWatcherOfAffectingLocation, + releaseFileWatcherOfAffectingLocation, + closeFileWatcherOfAffectingLocation, + addToPotentiallyUnwatchedPackageJsons, + + invalidateResolutionsOfFailedLookupLocations, + invalidateResolutionOfFile, + invalidateResolution, + + createTypeRootsWatch, + currentCache: () => currentCache, + }; + + function clearForCache(cache: ResolutionCache) { + let gcCaches = false; + currentCache = cache; + watchedResolutionInfoMap.forEach((watchedResolutionInfo, resolution) => { + if (watchedResolutionInfo.caches.has(cache)) { + gcCaches = releaseResolution(resolution, /*moduleOrTypeRefCache*/ undefined) || gcCaches; + } + }); + fileWatchesOfAffectingLocations.forEach((watcher, location) => { + if (watcher.files?.delete(cache)) closeFileWatcherOfAffectingLocation(location, watcher); + }); + // Skip handling typeRoots as they would be cleared before calling this method + inUseResolutionCaches.delete(cache); + if (gcCaches) { + gcModuleOrTypeRefCache(moduleResolutionCache); + gcModuleOrTypeRefCache(typeReferenceDirectiveResolutionCache); + gcModuleOrTypeRefCache(libraryResolutionCache); + } + currentCache = undefined; + if (cacheToOptions.delete(cache)) compactCachesWoker(); + } + + function clear(cache: ResolutionCache) { + if (!inUseResolutionCaches.has(cache)) return; + if (inUseResolutionCaches.size !== 1) return clearForCache(cache); + currentCache = undefined; + inUseResolutionCaches.clear(); + cacheToOptions.clear(); + cachesNeedingGc = undefined; + potentiallyUnwatchedPackageJsons = undefined; + clearMap(directoryWatchesOfFailedLookups, closeFileWatcherOf); + clearMap(nonRecursiveDirectoryWatchesOfFailedLookups, closeFileWatcherOf); + clearMap(fileWatchesOfAffectingLocations, closeFileWatcherOf); + clearMap(typeRootsWatches, closeFileWatcherOf); + packageJsonRefCount.clear(); + isSymlinkCache.clear(); + packageDirWatchers.clear(); + dirPathToSymlinkPackageRefCount.clear(); + resolvedFileToResolution.clear(); + resolutionsWithFailedLookups.clear(); + resolutionsWithOnlyAffectingLocations.clear(); + watchedResolutionInfoMap.clear(); + failedLookupChecks = undefined; + startsWithPathChecks = undefined; + isInDirectoryChecks = undefined; + affectingPathChecks = undefined; + moduleResolutionCache.clear(); + typeReferenceDirectiveResolutionCache.clear(); + libraryResolutionCache.clear(); + impliedFormatPackageJsons.clear(); + } + + function startCachingPerDirectoryResolution(cache: ResolutionCache) { + currentCache = cache; + moduleResolutionCache.isReadonly = undefined; + typeReferenceDirectiveResolutionCache.isReadonly = undefined; + libraryResolutionCache.isReadonly = undefined; + moduleResolutionCache.getPackageJsonInfoCache().isReadonly = undefined; + isSymlinkCache.clear(); + } + + function finishCachingPerDirectoryResolution() { + // These are only dir watchers that were potentially removed because packageDir symlink status changed while watching resolutions + potentiallyUnreferencedDirWatchers?.forEach(path => + closeDirectoryWatchesOfFailedLookup( + getDirectoryWatchesOfFailedLookup(path, /*nonRecursive*/ false), + path, + /*nonRecursive*/ false, + ) + ); + potentiallyUnreferencedDirWatchers = undefined; + cachesNeedingGc?.forEach(gcModuleOrTypeRefCache); + cachesNeedingGc = undefined; + potentiallyUnwatchedPackageJsons?.forEach(releasePotentiallyUnwatchedPackageJson); + potentiallyUnwatchedPackageJsons = undefined; + moduleResolutionCache.isReadonly = true; + typeReferenceDirectiveResolutionCache.isReadonly = true; + libraryResolutionCache.isReadonly = true; + moduleResolutionCache.getPackageJsonInfoCache().isReadonly = true; + isSymlinkCache.clear(); + currentCache = undefined; + } + + function compactCaches(availableOptions: Set, cache: ResolutionCache) { + if (availableOptions.size) cacheToOptions.set(cache, availableOptions); + else cacheToOptions.delete(cache); + compactCachesWoker(); + } + + function compactCachesWoker() { + let availableOptions: Set; + if (cacheToOptions.size === 1) availableOptions = firstDefinedIterator(cacheToOptions.values(), identity)!; + else { + availableOptions = new Set(); + cacheToOptions.forEach(setOfOptions => setOfOptions.forEach(options => availableOptions.add(options))); + } + moduleResolutionCache.compact(availableOptions, /*skipOptionsToRedirectsKeyCleanup*/ true); + typeReferenceDirectiveResolutionCache.compact(availableOptions); + libraryResolutionCache.compact(); + } + + function gcModuleOrTypeRefCache( + cache: ModuleOrTypeReferenceResolutionCache, + ) { + considerNonWatchedResolutionAsInvalidated = true; + cache.gc(watchedResolutionInfoMap); + considerNonWatchedResolutionAsInvalidated = false; + } + + function getValidResolution(resolution: T | undefined) { + return isInvalidatedResolution(resolution) ? undefined : resolution; + } + + function getValidModuleResolution(resolution: ResolvedModuleWithFailedLookupLocations | undefined, forSet?: boolean) { + resolution = getValidResolution(resolution); + return resolution && ( + forSet ? + resolution.globalCacheResolution && isInvalidatedResolution(resolution.globalCacheResolution.globalResult) ? + undefined : + resolution : + currentCache?.resolutionHost.getGlobalTypingsCacheLocation?.() && resolution?.globalCacheResolution?.globalResult ? + currentCache.getValidResolution(resolution.globalCacheResolution.globalResult) : + resolution + ); + } + + function isInvalidatedResolution(resolution: ResolutionWithFailedLookupLocations | undefined) { + return !resolution || + (considerNonWatchedResolutionAsInvalidated && !watchedResolutionInfoMap.has(resolution)) || + watchedResolutionInfoMap.get(resolution)?.isInvalidated; + } + + function isNodeModulesAtTypesDirectory(dirPath: Path) { + return endsWith(dirPath, "/node_modules/@types"); + } + + function watchResolution( + resolution: T, + getResolutionWithResolvedFileName: GetResolutionWithResolvedFileName, + redirectedReference: ResolvedProjectReference | undefined, + ) { + let watchedResolutionInfo = watchedResolutionInfoMap.get(resolution); + if (!watchedResolutionInfo?.caches.has(currentCache!)) addRefCountToCacheMap(inUseResolutionCaches, currentCache!); + if (!watchedResolutionInfo?.caches.size) { + if (!watchedResolutionInfo) { + watchedResolutionInfoMap.set(resolution, watchedResolutionInfo = { caches: new Set() }); + if (isResolvedWithGlobalCachePass(resolution) && !watchedResolutionInfoMap.has(resolution.globalCacheResolution.primary)) { + watchedResolutionInfoMap.set(resolution.globalCacheResolution.primary, { caches: new Set() }); + } + } + if (isResolvedWithGlobalCachePassButStillUnresolved(resolution)) { + // Add to potentially unreferenced resolutions + resolution.globalCacheResolution.globalResolution.failedLookupLocations?.forEach( + addToPotentiallyUnwatchedPackageJsonsIfPackageJson, + ); + if (resolution.globalCacheResolution.globalResolution.alternateResult) addToPotentiallyUnwatchedPackageJsonsIfPackageJson(resolution.globalCacheResolution.globalResolution.alternateResult); + resolution.globalCacheResolution.globalResolution.affectingLocations?.forEach(addToPotentiallyUnwatchedPackageJsons); + } + const resolved = getResolutionWithResolvedFileName(resolution); + if (resolved && resolved.resolvedFileName) { + const key = sharedCacheHost.toPath(resolved.resolvedFileName); + let resolutions = resolvedFileToResolution.get(key); + if (!resolutions) resolvedFileToResolution.set(key, resolutions = new Set()); + resolutions.add(resolution); + } + } + watchFailedLookupLocationOfResolution(resolution, redirectedReference, watchedResolutionInfo); + watchAffectingLocationsOfResolution(resolution, watchedResolutionInfo); + watchedResolutionInfo.caches.add(currentCache!); + // If this resolution is primary + if (isResolvedWithGlobalCachePass(resolution)) { + // Update to global cache pass resolution + watchPrimaryOrGlobalResultFailedAndAffectedLookups(resolution.globalCacheResolution.primary); + } + else if (resolution.globalCacheResolution?.globalResult) { + // Update to global cache pass resolution + watchPrimaryOrGlobalResultFailedAndAffectedLookups(resolution.globalCacheResolution.globalResult); + } + } + + function watchPrimaryOrGlobalResultFailedAndAffectedLookups(primaryOrGlobalResult: ResolvedModuleWithFailedLookupLocations) { + const watchInfo = watchedResolutionInfoMap.get(primaryOrGlobalResult); + if (!watchInfo?.caches.size) return; + const first = firstDefinedIterator(watchInfo.caches, identity)!; + const savedCurrentCache = currentCache; + currentCache = first; + watchFailedLookupLocationOfResolution(primaryOrGlobalResult, /*redirectedReference*/ undefined, watchInfo); + watchAffectingLocationsOfResolution(primaryOrGlobalResult, watchInfo); + currentCache = savedCurrentCache; + } + + function watchFailedLookupLocation( + failedLookupLocation: string, + resolution: ResolutionWithFailedLookupLocations, + redirectedReference: ResolvedProjectReference | undefined, + watchedResolutionInfo: WatchedResolutionInfo, + ) { + watchedResolutionInfo.rootDirInfo ??= currentCache!.getRootDirInfoForResolution(redirectedReference, resolution); + const failedLookupLocationPath = sharedCacheHost.toPath(failedLookupLocation); + if (endsWith(failedLookupLocationPath, "/package.json")) addRefToPackageJson(failedLookupLocationPath); + const toWatch = getDirectoryToWatchFailedLookupLocation( + failedLookupLocation, + failedLookupLocationPath, + watchedResolutionInfo.rootDirInfo.rootDir, + watchedResolutionInfo.rootDirInfo.rootPath, + watchedResolutionInfo.rootDirInfo.rootPathComponents, + watchedResolutionInfo.rootDirInfo.canWatch, + getCurrentDirectory, + sharedCacheHost.preferNonRecursiveWatch, + ); + if (!toWatch) return; + const { dir, dirPath, nonRecursive, packageDir, packageDirPath } = toWatch; + + if (!packageDirPath || !currentCache!.resolutionHost.realpath) { + if (!(!nonRecursive ? watchedResolutionInfo.dirWatches : watchedResolutionInfo.nonRecursiveDirWatches)?.has(dirPath)) { + const dirWatcher = createOrAddRefToDirectoryWatchOfFailedLookups(dir, dirPath, nonRecursive, currentCache!); + (!nonRecursive ? watchedResolutionInfo.dirWatches ??= new Set() : watchedResolutionInfo.nonRecursiveDirWatches ??= new Set()).add(dirPath); + addRefCountToMapForCaches(dirWatcher.refCount, watchedResolutionInfo.caches, currentCache); + } + } + else { + Debug.assert(!nonRecursive); + const forDirPath = watchedResolutionInfo.packageDirWatchers?.get(packageDirPath); + if (!forDirPath?.has(dirPath)) { + const packageDirWatcher = createDirectoryWatcherForPackageDir(dir, dirPath, packageDir!, packageDirPath); + if (forDirPath) forDirPath.add(dirPath); + else (watchedResolutionInfo.packageDirWatchers ??= new Map()).set(packageDirPath, new Set([dirPath])); + forRefCountCaches(watchedResolutionInfo.caches, cache => addRefToDirPathWatcherOfPackageDir(packageDirWatcher, dirPath, cache), currentCache); + } + } + } + + function addRefToPackageJson(path: Path) { + addRefCountToCacheMap(packageJsonRefCount, path); + } + + function releasePackageJsonCachePath(path: Path) { + moduleResolutionCache.getPackageJsonInfoCache().getInternalMap()?.delete(path); + packageJsonRefCount.delete(path); + } + + function addToPotentiallyUnwatchedPackageJsons(location: string) { + (potentiallyUnwatchedPackageJsons ??= new Set()).add(sharedCacheHost.toPath(location)); + } + + function addToPotentiallyUnwatchedPackageJsonsIfPackageJson(location: string) { + if (endsWith(location, "/package.json")) addToPotentiallyUnwatchedPackageJsons(location); + } + + function releasePotentiallyUnwatchedPackageJson(path: Path) { + if (!packageJsonRefCount.has(path)) moduleResolutionCache.getPackageJsonInfoCache().getInternalMap()?.delete(path); + } + + function releasePackageJson(path: Path) { + const existing = packageJsonRefCount.get(path)!; + if (existing !== 1) packageJsonRefCount.set(path, existing - 1); + else releasePackageJsonCachePath(path); + } + + function releaseIfPackageJson(failedLookupLocation: string) { + if (endsWith(failedLookupLocation, "/package.json")) releasePackageJson(sharedCacheHost.toPath(failedLookupLocation)); + } + + function watchFailedLookupLocationOfResolution( + resolution: ResolutionWithFailedLookupLocations, + redirectedReference: ResolvedProjectReference | undefined, + watchedResolutionInfo: WatchedResolutionInfo, + ) { + // Existing watches need to be ref counted for this cache + if (!watchedResolutionInfo.caches.has(currentCache!)) { + watchedResolutionInfo.dirWatches?.forEach(dirPath => addRefCountToCacheMap(getDirectoryWatchesOfFailedLookup(dirPath, /*nonRecursive*/ false)!.refCount, currentCache!)); + watchedResolutionInfo.nonRecursiveDirWatches?.forEach(dirPath => addRefCountToCacheMap(getDirectoryWatchesOfFailedLookup(dirPath, /*nonRecursive*/ true)!.refCount, currentCache!)); + watchedResolutionInfo.packageDirWatchers?.forEach((dirPaths, packageDirPath) => { + const packageDirWatcher = packageDirWatchers.get(packageDirPath)!; + dirPaths.forEach(dirPath => addRefToDirPathWatcherOfPackageDir(packageDirWatcher, dirPath, currentCache!)); + }); + } + + // There have to be failed lookup locations if there is alternateResult so storing failedLookupLocation length is good enough, + // alternateResult doesnt change later only failed lookup locations get added on + if (watchedResolutionInfo.watchedFailed === resolution.failedLookupLocations?.length) return; + if (!watchedResolutionInfo.watchedFailed) { + resolutionsWithFailedLookups.add(resolution); + if (watchedResolutionInfo.watchedAffected) resolutionsWithOnlyAffectingLocations.delete(resolution); + } + + for (let i = watchedResolutionInfo.watchedFailed || 0; i < resolution.failedLookupLocations!.length; i++) { + watchFailedLookupLocation( + resolution.failedLookupLocations![i], + resolution, + redirectedReference, + watchedResolutionInfo, + ); + } + if (!watchedResolutionInfo.watchedFailed && resolution.alternateResult) { + watchFailedLookupLocation( + resolution.alternateResult, + resolution, + redirectedReference, + watchedResolutionInfo, + ); + } + watchedResolutionInfo.watchedFailed = resolution.failedLookupLocations?.length; + } + + function createDirectoryWatcherForPackageDir( + dir: string, + dirPath: Path, + packageDir: string, + packageDirPath: Path, + ) { + // Check if this is symlink: + let isSymlink = isSymlinkCache.get(packageDirPath); + let packageDirWatcher = packageDirWatchers.get(packageDirPath); + if (isSymlink === undefined) { + const realPath = currentCache!.resolutionHost.realpath!(packageDir); + isSymlink = realPath !== packageDir && sharedCacheHost.toPath(realPath) !== packageDirPath; + isSymlinkCache.set(packageDirPath, isSymlink); + if (!packageDirWatcher) { + packageDirWatchers.set( + packageDirPath, + packageDirWatcher = { + dirPathToWatcher: new Map(), + isSymlink, + }, + ); + } + else if (packageDirWatcher.isSymlink !== isSymlink) { + // Handle the change + packageDirWatcher.dirPathToWatcher.forEach((watcher, dirPath, map) => { + // Do not close the watcher yet since it might be needed by other failed lookup locations. + releaseRefCountFromMapForCaches(watcher.watcher.refCount, watcher.refCount); + (potentiallyUnreferencedDirWatchers ??= new Set()).add(packageDirWatcher!.isSymlink ? packageDirPath : dirPath); + const firstCache = firstDefinedIterator(watcher.refCount.keys(), identity); + if (firstCache) { + watcher.watcher = createDirPathToWatcher(firstCache); + addRefCountToMapForCaches(watcher.watcher.refCount, watcher.refCount, firstCache); + } + else { + // Unused, remove it + map.delete(dirPath); + } + }); + packageDirWatcher.isSymlink = isSymlink; + } + } + else { + Debug.assertIsDefined(packageDirWatcher); + Debug.assert(isSymlink === packageDirWatcher.isSymlink); + } + + if (packageDirWatcher.dirPathToWatcher.has(dirPath)) { + addRefToDirPathWatcherOfPackageDir(packageDirWatcher, dirPath, currentCache!); + } + else { + packageDirWatcher.dirPathToWatcher.set(dirPath, { + watcher: createDirPathToWatcher(currentCache!), + refCount: new Map([[currentCache!, 1]]), + }); + if (isSymlink) addRefCountToCacheMap(dirPathToSymlinkPackageRefCount, dirPath); + } + return packageDirWatcher; + + function createDirPathToWatcher(cache: ResolutionCache) { + return isSymlink ? + createOrAddRefToDirectoryWatchOfFailedLookups(packageDir, packageDirPath, /*nonRecursive*/ false, cache) : + createOrAddRefToDirectoryWatchOfFailedLookups(dir, dirPath, /*nonRecursive*/ false, cache); + } + } + + function addRefToDirPathWatcherOfPackageDir(packageDirWatcher: PackageDirWatcher, dirPath: Path, cache: ResolutionCache) { + const forDirPath = packageDirWatcher.dirPathToWatcher.get(dirPath)!; + // If this is the first time cache is added for this dirPath, add cache refcount to watcher as well + if (!forDirPath.refCount.has(cache)) addRefCountToCacheMap(forDirPath.watcher.refCount, cache); + addRefCountToCacheMap(forDirPath.refCount, cache); + } + + function removeRefToDirPathWatcherOfPackageDir(packageDirPath: Path, dirPath: Path) { + const packageDirWatcher = packageDirWatchers.get(packageDirPath); + if (!packageDirWatcher) return; + const forDirPath = packageDirWatcher.dirPathToWatcher.get(dirPath); + if (!forDirPath) return; + releaseRefCountFromMap(forDirPath.refCount, currentCache!); + if (forDirPath.refCount.has(currentCache!)) return; + // Release the watcher refcount + releaseRefCountFromMap(forDirPath.watcher.refCount, currentCache!); + if (forDirPath.refCount.size !== 0) return; + closeDirectoryWatchesOfFailedLookup(forDirPath.watcher, packageDirWatcher.isSymlink ? packageDirPath : dirPath, /*nonRecursive*/ false); + packageDirWatcher.dirPathToWatcher.delete(dirPath); + if (packageDirWatcher.isSymlink) releaseRefCountFromMap(dirPathToSymlinkPackageRefCount, dirPath); + if (packageDirWatcher.dirPathToWatcher.size === 0) { + packageDirWatchers.delete(packageDirPath); + } + } + + function getDirectoryWatchesOfFailedLookup(dirPath: Path, nonRecursive: boolean | undefined) { + const watchMap = !nonRecursive ? directoryWatchesOfFailedLookups : nonRecursiveDirectoryWatchesOfFailedLookups; + return watchMap.get(dirPath); + } + + function createOrAddRefToDirectoryWatchOfFailedLookups( + dir: string, + dirPath: Path, + nonRecursive: boolean | undefined, + cache: ResolutionCache, + ) { + const watchMap = !nonRecursive ? directoryWatchesOfFailedLookups : nonRecursiveDirectoryWatchesOfFailedLookups; + let dirWatcher = watchMap.get(dirPath); + if (dirWatcher) { + addRefCountToCacheMap(dirWatcher.refCount, cache); + } + else { + watchMap.set( + dirPath, + dirWatcher = { + watcher: cache.resolutionHost.watchDirectoryOfFailedLookupLocation( + dir, + fileOrDirectory => onDirectoryWatcher(dirPath, nonRecursive, fileOrDirectory), + nonRecursive ? WatchDirectoryFlags.None : WatchDirectoryFlags.Recursive, + ), + refCount: new Map([[cache, 1]]), + }, + ); + } + return dirWatcher; + } + + function removeDirectoryWatcher(dirPath: Path, nonRecursive: boolean, forCaches: Set | RefCountCache) { + const dirWatcher = getDirectoryWatchesOfFailedLookup(dirPath, nonRecursive); + // Do not close the watcher yet since it might be needed by other failed lookup locations. + if (dirWatcher) releaseRefCountFromMapForCaches(dirWatcher.refCount, forCaches); + closeDirectoryWatchesOfFailedLookup(dirWatcher, dirPath, nonRecursive); + } + + function closeDirectoryWatchesOfFailedLookup(watcher: DirectoryWatchesOfFailedLookup | undefined, path: Path, nonRecursive: boolean | undefined) { + if (watcher && watcher.refCount.size === 0) { + if (!nonRecursive) directoryWatchesOfFailedLookups.delete(path); + else nonRecursiveDirectoryWatchesOfFailedLookups.delete(path); + watcher.watcher.close(); + } + } + + function onDirectoryWatcher(dirPath: Path, nonRecursive: boolean | undefined, fileOrDirectory: string, fileOrDirectoryPath?: Path) { + const refCountCache = getDirectoryWatchesOfFailedLookup(dirPath, nonRecursive)?.refCount; + if (!refCountCache) return; + fileOrDirectoryPath ??= sharedCacheHost.toPath(fileOrDirectory); + refCountCache.forEach((_refCount, cache) => { + // Since the file existence changed, update the sourceFiles cache + cache.resolutionHost.getCachedDirectoryStructureHost()?.addOrDeleteFileOrDirectory(fileOrDirectory, fileOrDirectoryPath); + }); + scheduleInvalidateResolutionOfFailedLookupLocation(fileOrDirectoryPath, dirPath === fileOrDirectoryPath, refCountCache); + } + + function watchAffectingLocationsOfResolution( + resolution: ResolutionWithFailedLookupLocations, + watchedResolutionInfo: WatchedResolutionInfo, + ) { + if (resolution.affectingLocations?.length === watchedResolutionInfo.watchedAffected) { + if (!watchedResolutionInfo.caches.has(currentCache!)) { + resolution.affectingLocations?.forEach(affectingLocation => + addRefCountToCacheMap( + fileWatchesOfAffectingLocations.get(affectingLocation)!.resolutions!, + currentCache!, + ) + ); + } + return; + } + if (!watchedResolutionInfo.watchedAffected && !watchedResolutionInfo.watchedFailed) resolutionsWithOnlyAffectingLocations.add(resolution); + // Watch package json + for (let i = watchedResolutionInfo.watchedAffected || 0; i < resolution.affectingLocations!.length; i++) { + createFileWatcherOfAffectingLocation(resolution.affectingLocations![i], /*forResolution*/ true); + addRefCountToMapForCaches( + fileWatchesOfAffectingLocations.get(resolution.affectingLocations![i])!.resolutions!, + watchedResolutionInfo.caches, + currentCache, + ); + } + watchedResolutionInfo.watchedAffected = resolution.affectingLocations?.length; + } + + function createFileWatcherOfAffectingLocation(affectingLocation: string, forResolution?: true) { + if (!forResolution) addRefCountToCacheMap(inUseResolutionCaches, currentCache!); + const fileWatcher = fileWatchesOfAffectingLocations.get(affectingLocation); + if (fileWatcher) { + addRefCountToCacheMap(forResolution ? fileWatcher.resolutions ??= new Map() : fileWatcher.files ??= new Map(), currentCache!); + return; + } + let locationToWatch = affectingLocation; + let isSymlink = false; + let symlinkWatcher: FileWatcherOfAffectingLocation | undefined; + if (currentCache!.resolutionHost.realpath) { + locationToWatch = currentCache!.resolutionHost.realpath(affectingLocation); + if (affectingLocation !== locationToWatch) { + isSymlink = true; + symlinkWatcher = fileWatchesOfAffectingLocations.get(locationToWatch); + } + } + + const resolutions = forResolution ? new Map([[currentCache!, 1]]) : undefined; + const files = forResolution ? undefined : new Map([[currentCache!, 1]]); + if (!isSymlink || !symlinkWatcher) { + const watcher: FileWatcherOfAffectingLocation = { + watcher: canWatchAffectingLocation(sharedCacheHost.toPath(locationToWatch)) ? + currentCache!.resolutionHost.watchAffectingFileLocation(locationToWatch, (fileName, eventKind) => { + const refCountCaches = new Set(); + onFileWatcherOfAffectingLocation(locationToWatch, refCountCaches); + const seenCaches = new Set(); + refCountCaches.forEach(caches => + forRefCountCaches(caches, cache => { + if (!tryAddToSet(seenCaches, cache)) return; + cache.resolutionHost.getCachedDirectoryStructureHost()?.addOrDeleteFile(fileName, sharedCacheHost.toPath(locationToWatch), eventKind); + cache.resolutionHost.scheduleInvalidateResolutionsOfFailedLookupLocations(); + }, /*skipCache*/ undefined) + ); + }) : noopFileWatcher, + resolutions: isSymlink ? undefined : resolutions, + files: isSymlink ? undefined : files, + symlinks: undefined, + }; + fileWatchesOfAffectingLocations.set(locationToWatch, watcher); + addRefToPackageJson(sharedCacheHost.toPath(locationToWatch)); + if (isSymlink) symlinkWatcher = watcher; + } + if (isSymlink) { + Debug.assert(!!symlinkWatcher); + const watcher: FileWatcherOfAffectingLocation = { + watcher: { + close: () => { + const symlinkWatcher = fileWatchesOfAffectingLocations.get(locationToWatch); + // Close symlink watcher if no ref + if (symlinkWatcher?.symlinks?.delete(affectingLocation) && !symlinkWatcher.symlinks.size && !symlinkWatcher.resolutions?.size && !symlinkWatcher.files?.size) { + fileWatchesOfAffectingLocations.delete(locationToWatch); + releasePackageJson(sharedCacheHost.toPath(locationToWatch)); + symlinkWatcher.watcher.close(); + } + }, + }, + resolutions, + files, + symlinks: undefined, + }; + fileWatchesOfAffectingLocations.set(affectingLocation, watcher); + addRefToPackageJson(sharedCacheHost.toPath(affectingLocation)); + (symlinkWatcher.symlinks ??= new Set()).add(affectingLocation); + } + } + + function releaseFileWatcherOfAffectingLocation(location: string) { + releaseRefCountFromMap(inUseResolutionCaches, currentCache!); + const watcher = fileWatchesOfAffectingLocations.get(location)!; + releaseRefCountFromMap(watcher.files!, currentCache!); + } + + function closeFileWatcherOfAffectingLocation(path: string, watcher?: FileWatcherOfAffectingLocation) { + watcher ??= fileWatchesOfAffectingLocations.get(path); + if (watcher && !watcher.files?.size && !watcher.resolutions?.size && !watcher.symlinks?.size) { + fileWatchesOfAffectingLocations.delete(path); + releasePackageJson(sharedCacheHost.toPath(path)); + watcher.watcher.close(); + } + } + + function onFileWatcherOfAffectingLocation(path: string, seenCaches: Set) { + const watcher = fileWatchesOfAffectingLocations.get(path); + if (watcher?.resolutions?.size) { + (affectingPathChecks ??= new Set()).add(path); + seenCaches.add(watcher.resolutions); + } + if (watcher?.files?.size) { + watcher.files.forEach((_refCount, cache) => cache.invalidateAffectingFileWatcher(path)); + seenCaches.add(watcher.files); + } + moduleResolutionCache.getPackageJsonInfoCache().getInternalMap()?.delete(sharedCacheHost.toPath(path)); + watcher?.symlinks?.forEach(path => onFileWatcherOfAffectingLocation(path, seenCaches)); + } + + function releaseResolution( + resolution: ResolutionWithFailedLookupLocations, + moduleOrTypeRefCache: ModuleOrTypeReferenceResolutionCache | undefined, + ) { + releaseRefCountFromMap(inUseResolutionCaches, currentCache!); + const watchedResolutionInfo = watchedResolutionInfoMap.get(resolution)!; + watchedResolutionInfo.caches.delete(currentCache!); + + const forCaches = new Set([currentCache!]); + watchedResolutionInfo.dirWatches?.forEach(dirPath => removeDirectoryWatcher(dirPath, /*nonRecursive*/ false, forCaches)); + watchedResolutionInfo.nonRecursiveDirWatches?.forEach(dirPath => removeDirectoryWatcher(dirPath, /*nonRecursive*/ true, forCaches)); + watchedResolutionInfo.packageDirWatchers?.forEach((dirPaths, packageDirPath) => + dirPaths.forEach( + dirPath => removeRefToDirPathWatcherOfPackageDir(packageDirPath, dirPath), + ) + ); + resolution.affectingLocations?.forEach(affectingLocation => { + const watcher = fileWatchesOfAffectingLocations.get(affectingLocation); + if (watcher?.resolutions) releaseRefCountFromMap(watcher.resolutions, currentCache!); + closeFileWatcherOfAffectingLocation(affectingLocation, watcher); + }); + + if (watchedResolutionInfo.caches.size) return false; + watchedResolutionInfoMap.delete(resolution); + if (resolutionsWithFailedLookups.delete(resolution)) { + resolution.failedLookupLocations?.forEach(releaseIfPackageJson); + if (resolution.alternateResult) releaseIfPackageJson(resolution.alternateResult); + } + resolutionsWithOnlyAffectingLocations.delete(resolution); + + const resolved = getModuleOrTypeRefResolved(resolution); + if (resolved && resolved.resolvedFileName) { + const key = sharedCacheHost.toPath(resolved.resolvedFileName); + const resolutions = resolvedFileToResolution.get(key); + if (resolutions?.delete(resolution) && !resolutions.size) resolvedFileToResolution.delete(key); + } + + if (isResolvedWithGlobalCachePass(resolution)) { + // Remove globalCacheResult from primary resolution + const primary = resolution.globalCacheResolution.primary; + const primaryWatchedInfo = watchedResolutionInfoMap.get(primary)!; + if (primaryWatchedInfo.caches.size) { + primary.globalCacheResolution = { primary }; + } + else { + // Release primary as well + watchedResolutionInfoMap.delete(primary); + } + } + else if (resolution.globalCacheResolution?.globalResult) { + // Keep this in watchInfo if has a globalCacheResult.globalResolution + watchedResolutionInfoMap.set(resolution, watchedResolutionInfo); + watchedResolutionInfo.dirWatches = undefined; + watchedResolutionInfo.nonRecursiveDirWatches = undefined; + watchedResolutionInfo.packageDirWatchers = undefined; + watchedResolutionInfo.watchedFailed = undefined; + watchedResolutionInfo.watchedAffected = undefined; + watchedResolutionInfo.isInvalidated = undefined; + watchedResolutionInfo.rootDirInfo = undefined; + } + if (moduleOrTypeRefCache) (cachesNeedingGc ??= new Set()).add(moduleOrTypeRefCache.sharedCache!); + return true; + } + + function invalidateResolutions( + resolutions: Set | Map | undefined, + canInvalidate: (resolution: ResolutionWithFailedLookupLocations) => boolean | undefined, + ) { + if (!resolutions) return false; + let invalidated = false; + resolutions.forEach(resolution => invalidated = invalidateResolution(resolution, canInvalidate) || invalidated); + return invalidated; + } + + function invalidateResolution( + resolution: ResolutionWithFailedLookupLocations, + canInvalidate: (resolution: ResolutionWithFailedLookupLocations) => boolean | undefined, + ) { + const watchedResolutionInfo = watchedResolutionInfoMap.get(resolution)!; + if (watchedResolutionInfo.isInvalidated || !canInvalidate(resolution)) return false; + watchedResolutionInfo.isInvalidated = true; + watchedResolutionInfo.caches.forEach(cache => + cache !== currentCache ? + cache.invalidateResolution(resolution) : + undefined + ); + return true; + } + + function invalidateResolutionOfFile(filePath: Path) { + return invalidateResolutions(resolvedFileToResolution.get(filePath), returnTrue); + } + + function scheduleInvalidateResolutionOfFailedLookupLocation( + fileOrDirectoryPath: Path, + isCreatingWatchedDirectory: boolean, + refCountCache: RefCountCache, + ) { + if (isCreatingWatchedDirectory) { + // Watching directory is created + // Invalidate any resolution has failed lookup in this directory + (isInDirectoryChecks ||= new Set()).add(fileOrDirectoryPath); + } + else { + // If something to do with folder/file starting with "." in node_modules folder, skip it + const updatedPath = removeIgnoredPath(fileOrDirectoryPath); + if (!updatedPath) return false; + fileOrDirectoryPath = updatedPath; + + // prevent saving an open file from over-eagerly triggering invalidation + if (sharedCacheHost.fileIsOpen(fileOrDirectoryPath)) { + return false; + } + + // Some file or directory in the watching directory is created + // Return early if it does not have any of the watching extension or not the custom failed lookup path + const dirOfFileOrDirectory = getDirectoryPath(fileOrDirectoryPath); + if ( + isNodeModulesAtTypesDirectory(fileOrDirectoryPath) || isNodeModulesDirectory(fileOrDirectoryPath) || + isNodeModulesAtTypesDirectory(dirOfFileOrDirectory) || isNodeModulesDirectory(dirOfFileOrDirectory) + ) { + // Invalidate any resolution from this directory + (failedLookupChecks ||= new Set()).add(fileOrDirectoryPath); + (startsWithPathChecks ||= new Set()).add(fileOrDirectoryPath); + } + else { + // Ignore .map files + if (fileExtensionIs(fileOrDirectoryPath, ".map")) { + return false; + } + // Ignore emits from the program if all caches ignore it + if ( + !forEachKey( + refCountCache, + cache => + !isEmittedFileOfProgram( + cache.resolutionHost.getCurrentProgram(), + fileOrDirectoryPath, + ), + ) + ) return false; + // Resolution need to be invalidated if failed lookup location is same as the file or directory getting created + (failedLookupChecks ||= new Set()).add(fileOrDirectoryPath); + + // Also any path that starts with this path should be added just in case if this is directory notification + // and we dont get any notification for file + (startsWithPathChecks ||= new Set()).add(fileOrDirectoryPath); + + // If the invalidated file is from a node_modules package, invalidate everything else + // in the package since we might not get notifications for other files in the package. + // This hardens our logic against unreliable file watchers. + const packagePath = parseNodeModuleFromPath(fileOrDirectoryPath, /*isFolder*/ true); + if (packagePath) (startsWithPathChecks ||= new Set()).add(packagePath as Path); + } + } + refCountCache.forEach((_refCount, cache) => cache.resolutionHost.scheduleInvalidateResolutionsOfFailedLookupLocations()); + } + + function invalidatePackageJsonMap() { + const packageJsonMap = moduleResolutionCache.getPackageJsonInfoCache().getInternalMap(); + if (packageJsonMap && (failedLookupChecks || startsWithPathChecks || isInDirectoryChecks)) { + packageJsonMap.forEach((_value, path) => isInvalidatedFailedLookup(path) ? packageJsonMap.delete(path) : undefined); + } + } + + function invalidateResolutionsOfFailedLookupLocations() { + if (!failedLookupChecks && !startsWithPathChecks && !isInDirectoryChecks && !affectingPathChecks) { + return false; + } + + let invalidated = invalidateResolutions(resolutionsWithFailedLookups, canInvalidateFailedLookupResolution); + invalidatePackageJsonMap(); + failedLookupChecks = undefined; + startsWithPathChecks = undefined; + isInDirectoryChecks = undefined; + invalidated = invalidateResolutions(resolutionsWithOnlyAffectingLocations, canInvalidatedFailedLookupResolutionWithAffectingLocation) || invalidated; + affectingPathChecks = undefined; + return invalidated; + } + + function canInvalidateFailedLookupResolution(resolution: ResolutionWithFailedLookupLocations) { + if (canInvalidatedFailedLookupResolutionWithAffectingLocation(resolution)) return true; + if (!failedLookupChecks && !startsWithPathChecks && !isInDirectoryChecks) return false; + return resolution.failedLookupLocations?.some(location => isInvalidatedFailedLookup(sharedCacheHost.toPath(location))) || + (!!resolution.alternateResult && isInvalidatedFailedLookup(sharedCacheHost.toPath(resolution.alternateResult))); + } + + function isInvalidatedFailedLookup(locationPath: Path) { + return failedLookupChecks?.has(locationPath) || + firstDefinedIterator(startsWithPathChecks?.keys() || [], fileOrDirectoryPath => startsWith(locationPath, fileOrDirectoryPath) ? true : undefined) || + firstDefinedIterator(isInDirectoryChecks?.keys() || [], dirPath => + locationPath.length > dirPath.length && + startsWith(locationPath, dirPath) && (isDiskPathRoot(dirPath) || locationPath[dirPath.length] === directorySeparator) ? true : undefined); + } + + function canInvalidatedFailedLookupResolutionWithAffectingLocation(resolution: ResolutionWithFailedLookupLocations) { + return !!affectingPathChecks && resolution.affectingLocations?.some(location => affectingPathChecks!.has(location)); + } + + function createTypeRootsWatch(typeRoot: string, cache: ResolutionCache): FileWatcher { + let watcher = typeRootsWatches.get(typeRoot); + if (watcher) { + watcher.refCount.add(cache); + } + else { + typeRootsWatches.set( + typeRoot, + watcher = { + watcher: canWatchAtTypes(sharedCacheHost.toPath(typeRoot)) ? + cache.resolutionHost.watchTypeRootsDirectory(typeRoot, fileOrDirectory => { + const fileOrDirectoryPath = sharedCacheHost.toPath(fileOrDirectory); + typeRootsWatches.get(typeRoot)?.refCount.forEach(cache => { + // Since the file existence changed, update the sourceFiles cache + cache.resolutionHost.getCachedDirectoryStructureHost()?.addOrDeleteFileOrDirectory( + fileOrDirectory, + fileOrDirectoryPath, + ); + cache.invalidateTypeRoot(); + }); + + // Since directory watchers invoked are flaky, the failed lookup location events might not be triggered + // So handle to failed lookup locations here as well to ensure we are invalidating resolutions + const fileOrDirectoryPathComponents = getPathComponents(fileOrDirectoryPath); + directoryWatchesOfFailedLookups.forEach((_watcher, dirPath) => { + if (isInDirectoryPath(getPathComponents(dirPath), fileOrDirectoryPathComponents)) { + onDirectoryWatcher(dirPath, /*nonRecursive*/ false, fileOrDirectory, fileOrDirectoryPath); + } + }); + nonRecursiveDirectoryWatchesOfFailedLookups.forEach((_watcher, dirPath) => { + const dirPathComponents = getPathComponents(dirPath); + if ( + isInDirectoryPath(dirPathComponents, fileOrDirectoryPathComponents) && + (dirPathComponents.length === fileOrDirectoryPathComponents.length || dirPathComponents.length + 1 === fileOrDirectoryPathComponents.length) + ) { + onDirectoryWatcher(dirPath, /*nonRecursive*/ true, fileOrDirectory, fileOrDirectoryPath); + } + }); + }, WatchDirectoryFlags.Recursive) : + noopFileWatcher, + refCount: new Set([cache]), + }, + ); + } + const result: FileWatcher = { + close: () => { + const existing = typeRootsWatches.get(typeRoot); + if (existing?.refCount.delete(cache)) { + releaseRefCountFromMap(inUseResolutionCaches, cache); + closeTypeRootsWatch(typeRoot, existing); + } + }, + }; + addRefCountToCacheMap(inUseResolutionCaches, cache); + return result; + } + + function closeTypeRootsWatch(typeRoot: string, watcher: TypeRootWatch) { + if (!watcher.refCount.size) { + typeRootsWatches.delete(typeRoot); + watcher.watcher.close(); + } + } +} + +/** @internal */ +export function enableSharingModuleOrTypeReferenceResolutionCache>( + moduleOrTypeRefCache: T, + sharedCache: T, +): T { + const getFromDirectoryCache = moduleOrTypeRefCache.getFromDirectoryCache; + moduleOrTypeRefCache.getFromDirectoryCache = (name, mode, directoryName, redirectedReference) => { + let result = getFromDirectoryCache.call(moduleOrTypeRefCache, name, mode, directoryName, redirectedReference); + if (result) return result; + result = withSharingModuleOrTypeReferenceResolutionCache( + moduleOrTypeRefCache, + sharedCache => sharedCache.getFromDirectoryCache(name, mode, directoryName, redirectedReference), + ); + if (result) { + moduleOrTypeRefCache.setPerDirectoryAndNonRelativeNameCacheResult( + name, + mode, + directoryName, + redirectedReference, + result, + ); + } + return result; + }; + const getFromNonRelativeNameCache = moduleOrTypeRefCache.getFromNonRelativeNameCache; + moduleOrTypeRefCache.getFromNonRelativeNameCache = (nonRelativeModuleName, mode, directoryName, redirectedReference) => + getFromNonRelativeNameCache.call(moduleOrTypeRefCache, nonRelativeModuleName, mode, directoryName, redirectedReference) || + withSharingModuleOrTypeReferenceResolutionCache( + moduleOrTypeRefCache, + sharedCache => sharedCache?.getFromNonRelativeNameCache(nonRelativeModuleName, mode, directoryName, redirectedReference), + ); + const setPerDirectoryAndNonRelativeNameCacheResult = moduleOrTypeRefCache.setPerDirectoryAndNonRelativeNameCacheResult; + moduleOrTypeRefCache.setPerDirectoryAndNonRelativeNameCacheResult = (name, mode, directoryName, redirectedReference, result, primary) => { + setPerDirectoryAndNonRelativeNameCacheResult.call(moduleOrTypeRefCache, name, mode, directoryName, redirectedReference, result, primary); + if (primary) return; // Already in the cache + result = result.globalCacheResolution?.primary || result; + withSharingModuleOrTypeReferenceResolutionCache( + moduleOrTypeRefCache, + sharedCache => sharedCache.setPerDirectoryAndNonRelativeNameCacheResult(name, mode, directoryName, redirectedReference, result), + ); + }; + const update = moduleOrTypeRefCache.update; + moduleOrTypeRefCache.update = options => { + update.call(moduleOrTypeRefCache, options); + moduleOrTypeRefCache.sharedCache?.update(options); + }; + moduleOrTypeRefCache.sharedCache = sharedCache; + return moduleOrTypeRefCache; +} + +function withSharingModuleOrTypeReferenceResolutionCache, R>( + moduleOrTypeRefCache: T, + cb: (sharedCache: ModuleOrTypeReferenceResolutionCache) => R, +): R | undefined { + if (!moduleOrTypeRefCache.sharedCache) return; + moduleOrTypeRefCache.sharedCache.update(moduleOrTypeRefCache.options()); + return cb(moduleOrTypeRefCache.sharedCache); +} + +function addRefCountToCacheMap(refCountCache: Map, key: K) { + refCountCache.set(key, (refCountCache.get(key) ?? 0) + 1); +} + +function releaseRefCountFromMap(refCountCache: Map, key: K) { + const existing = refCountCache.get(key)!; + if (existing !== 1) refCountCache.set(key, existing - 1); + else refCountCache.delete(key); +} + +function addRefCountToMapForCaches(refCountCache: RefCountCache, forCaches: Set | RefCountCache, alreadyAddedCache: ResolutionCache | undefined) { + forRefCountCaches(forCaches, cache => addRefCountToCacheMap(refCountCache, cache), alreadyAddedCache); +} + +function releaseRefCountFromMapForCaches(refCountCache: RefCountCache, forCaches: Set | RefCountCache) { + forRefCountCaches(forCaches, cache => releaseRefCountFromMap(refCountCache, cache), /*skipCache*/ undefined); +} + +function forRefCountCaches(forCaches: Set | RefCountCache, cb: (cache: ResolutionCache) => void, skipCache: ResolutionCache | undefined) { + forCaches.forEach((_refCount, cache) => { + if (cache === skipCache) return; + cb(cache); + }); +} diff --git a/src/compiler/types.ts b/src/compiler/types.ts index 232605341b592..f8057688e72ce 100644 --- a/src/compiler/types.ts +++ b/src/compiler/types.ts @@ -4915,6 +4915,7 @@ export interface Program extends ScriptReferenceHost { getResolvedProjectReferenceToRedirect(fileName: string): ResolvedProjectReference | undefined; /** @internal */ forEachResolvedProjectReference(cb: (resolvedProjectReference: ResolvedProjectReference) => T | undefined): T | undefined; /** @internal */ getResolvedProjectReferenceByPath(projectReferencePath: Path): ResolvedProjectReference | undefined; + /** @internal */ getRedirectReferenceForResolution(file: SourceFile): ResolvedProjectReference | undefined; /** @internal */ getRedirectReferenceForResolutionFromSourceOfProject(filePath: Path): ResolvedProjectReference | undefined; /** @internal */ isSourceOfProjectReferenceRedirect(fileName: string): boolean; /** @internal */ getCompilerOptionsForFile(file: SourceFile): CompilerOptions; @@ -8049,6 +8050,25 @@ export const enum Extension { Dcts = ".d.cts", } +/** @internal */ +export interface GlobalCacheResolutionResult { + primary: ResolvedModuleWithFailedLookupLocations; + globalResolution?: ResolvedModuleWithFailedLookupLocations; + globalResult?: ResolvedModuleWithFailedLookupLocations; +} + +/** @internal */ +export interface GlobalCacheResolutionResultDisabled extends GlobalCacheResolutionResult { + primary: ResolvedModuleWithFailedLookupLocations; +} + +/** @internal */ +export interface GlobalCacheResolutionResultEnabled extends GlobalCacheResolutionResult { + primary: ResolvedModuleWithFailedLookupLocations; + globalResolution: ResolvedModuleWithFailedLookupLocations; + globalResult: ResolvedModuleWithFailedLookupLocations; +} + export interface ResolvedModuleWithFailedLookupLocations { readonly resolvedModule: ResolvedModuleFull | undefined; /** @internal */ @@ -8063,8 +8083,20 @@ export interface ResolvedModuleWithFailedLookupLocations { * have been resolvable under different module resolution settings. */ alternateResult?: string; + /** @internal */ + globalCacheResolution?: GlobalCacheResolutionResult; } +/** @internal */ +export type ResolvedModuleWithFailedLookupLocationsGlobalCachePass = ResolvedModuleWithFailedLookupLocations & { + globalCacheResolution: GlobalCacheResolutionResultEnabled; +}; + +/** @internal */ +export type ResolvedModuleWithFailedLookupLocationsGlobalCachePassDisabled = ResolvedModuleWithFailedLookupLocations & { + globalCacheResolution: GlobalCacheResolutionResultDisabled; +}; + export interface ResolvedTypeReferenceDirective { // True if the type declaration file was found in a primary lookup location primary: boolean; @@ -8176,6 +8208,26 @@ export interface CompilerHost extends ModuleResolutionHost { jsDocParsingMode?: JSDocParsingMode; } +/** @internal */ +export interface CompilerHostSupportingResolutionCache { + onReusedModuleResolutions?( + reusedNames: readonly StringLiteralLike[] | undefined, + containingSourceFile: SourceFile, + redirectedReference: ResolvedProjectReference | undefined, + options: CompilerOptions, + ): void; + onReusedTypeReferenceDirectiveResolutions?( + reusedNames: readonly T[] | undefined, + containingSourceFile: SourceFile | undefined, + redirectedReference: ResolvedProjectReference | undefined, + options: CompilerOptions, + ): void; + onSourceFileNotCreated?(sourceFileOptions: CreateSourceFileOptions): void; +} +/** @internal */ +export interface CompilerHost extends CompilerHostSupportingResolutionCache { +} + /** true if --out otherwise source file name * * @internal */ diff --git a/src/compiler/watchPublic.ts b/src/compiler/watchPublic.ts index 4bcedabb7eb0f..6a00fa119c2f3 100644 --- a/src/compiler/watchPublic.ts +++ b/src/compiler/watchPublic.ts @@ -523,25 +523,27 @@ export function createWatchProgram(host: WatchCompiler configFileName ? getDirectoryPath(getNormalizedAbsolutePath(configFileName, currentDirectory)) : currentDirectory, - /*logChangesWhenResolvingModule*/ false, ); + compilerHost.onSourceFileNotCreated = resolutionCache.onSourceFileNotCreated.bind(resolutionCache); // Resolve module using host module resolution strategy if provided otherwise use resolution cache to resolve module names compilerHost.resolveModuleNameLiterals = maybeBind(host, host.resolveModuleNameLiterals); compilerHost.resolveModuleNames = maybeBind(host, host.resolveModuleNames); if (!compilerHost.resolveModuleNameLiterals && !compilerHost.resolveModuleNames) { compilerHost.resolveModuleNameLiterals = resolutionCache.resolveModuleNameLiterals.bind(resolutionCache); + compilerHost.onReusedModuleResolutions = resolutionCache.onReusedModuleResolutions.bind(resolutionCache); } compilerHost.resolveTypeReferenceDirectiveReferences = maybeBind(host, host.resolveTypeReferenceDirectiveReferences); compilerHost.resolveTypeReferenceDirectives = maybeBind(host, host.resolveTypeReferenceDirectives); if (!compilerHost.resolveTypeReferenceDirectiveReferences && !compilerHost.resolveTypeReferenceDirectives) { compilerHost.resolveTypeReferenceDirectiveReferences = resolutionCache.resolveTypeReferenceDirectiveReferences.bind(resolutionCache); + compilerHost.onReusedTypeReferenceDirectiveResolutions = resolutionCache.onReusedTypeReferenceDirectiveResolutions.bind(resolutionCache); } compilerHost.resolveLibrary = !host.resolveLibrary ? resolutionCache.resolveLibrary.bind(resolutionCache) : host.resolveLibrary.bind(host); compilerHost.getModuleResolutionCache = host.resolveModuleNameLiterals || host.resolveModuleNames ? maybeBind(host, host.getModuleResolutionCache) : - (() => resolutionCache.getModuleResolutionCache()); + (() => resolutionCache.moduleResolutionCache); const userProvidedResolution = !!host.resolveModuleNameLiterals || !!host.resolveTypeReferenceDirectiveReferences || !!host.resolveModuleNames || !!host.resolveTypeReferenceDirectives; // All resolutions are invalid if user provided resolutions and didnt supply hasInvalidatedResolutions diff --git a/src/harness/incrementalUtils.ts b/src/harness/incrementalUtils.ts index 47114c88d5151..d3e2a6512654d 100644 --- a/src/harness/incrementalUtils.ts +++ b/src/harness/incrementalUtils.ts @@ -102,6 +102,83 @@ function verifyDocumentRegistry(service: ts.server.ProjectService) { service.forEachProject(collectStats); verifyDocumentRegistryStats(service.documentRegistry, stats); } + +function isFromNodeModulesOfGlobalTypingsAncestor(l: string, globalTypingsCacheLocation: string | undefined) { + return !!globalTypingsCacheLocation && ts.forEachAncestorDirectory( + ts.getDirectoryPath(globalTypingsCacheLocation), + ancestor => l.startsWith(ts.combinePaths(ancestor, "node_modules/")) ? true : undefined, + ); +} + +function containsGlobalTypingsCacheLocation(locations: string[], globalTypingsCacheLocation: string | undefined) { + return !!globalTypingsCacheLocation && ts.find( + locations, + l => l.startsWith(ts.combinePaths(globalTypingsCacheLocation, "node_modules/")), + ); +} + +/** + * Verifies that failed lookups, affecting locations and alternate result are present in actual resolution + * Not checking otherway round because actual resolution can have more failed lookups and affecting locations + */ +function verifyResolutionWithFailedLookupLocationsProperties( + expectedResolutionWithFailedLookupLocations: ts.ResolutionWithFailedLookupLocations, + actualResolutionWithFailedLookupLocations: ts.ResolutionWithFailedLookupLocations | undefined, + projectName: string, + cacheType: string, + globalTypingsCacheLocation: string | undefined, +) { + expectedResolutionWithFailedLookupLocations?.failedLookupLocations?.forEach(l => + ts.Debug.assert( + ts.contains(actualResolutionWithFailedLookupLocations!.failedLookupLocations, l) || + // If resolution is found in cache, we may not look and add js extensions since node resolvers traverses through + // ancestor directories for ts and d.ts first and then for js files as next roung + // So if moduleName was not resolved and is in cache in ancestor folder say folder when it was set from folder/a file + // when we get the resolution from file folder/b , we will not add folder/b/node_modules/moduleName.js to failed lookup + ts.fileExtensionIsOneOf(l, ts.supportedJSExtensionsFlat) || + // Global typings cache resolutions dont go past that folder, + // so if one of the failed lookup was done from there and cached, + // when this resolution is reused, there wont be failed lookups in ancestor folders of global typings location + // which could be there if we didnt reuse the resolution so thats okay + ( + isFromNodeModulesOfGlobalTypingsAncestor(l, globalTypingsCacheLocation) && + containsGlobalTypingsCacheLocation( + actualResolutionWithFailedLookupLocations!.failedLookupLocations!, + globalTypingsCacheLocation, + ) + ), + `${projectName}:: ${cacheType}:: Expected failed lookup location ${l} not found in actual resolution`, + ) + ); + + expectedResolutionWithFailedLookupLocations?.affectingLocations?.forEach(l => + ts.Debug.assert( + ts.contains(actualResolutionWithFailedLookupLocations!.affectingLocations, l), + `${projectName}:: ${cacheType}:: Expected affecting location ${l} not found in actual resolution`, + ) + ); + ts.Debug.assert( + expectedResolutionWithFailedLookupLocations?.alternateResult === actualResolutionWithFailedLookupLocations!.alternateResult, + `${projectName}:: ${cacheType}:: Expected alternateResult not matching with actual resolution`, + ); + ts.Debug.assert( + !!expectedResolutionWithFailedLookupLocations?.globalCacheResolution === !!actualResolutionWithFailedLookupLocations?.globalCacheResolution, + `${projectName}:: ${cacheType}:: Expected globalCacheResolution presence to match`, + ); + ts.Debug.assert( + ts.isResolvedWithoutGlobalCachePass(expectedResolutionWithFailedLookupLocations) === ts.isResolvedWithoutGlobalCachePass(actualResolutionWithFailedLookupLocations!), + `${projectName}:: ${cacheType}:: Expected globalCacheResolution isResolvedWithoutGlobalCachePass should match`, + ); + ts.Debug.assert( + ts.isResolvedWithGlobalCachePass(expectedResolutionWithFailedLookupLocations) === ts.isResolvedWithGlobalCachePass(actualResolutionWithFailedLookupLocations!), + `${projectName}:: ${cacheType}:: Expected globalCacheResolution isResolvedWithGlobalCachePass should match`, + ); + ts.Debug.assert( + ts.isResolvedWithGlobalCachePassButStillUnresolved(expectedResolutionWithFailedLookupLocations) === ts.isResolvedWithGlobalCachePassButStillUnresolved(actualResolutionWithFailedLookupLocations!), + `${projectName}:: ${cacheType}:: Expected globalCacheResolution isResolvedWithGlobalCachePassButStillUnresolved should match`, + ); +} + interface ResolutionInfo { cacheType: string; fileName: string; @@ -121,6 +198,10 @@ function getResolutionCacheDetails string | undefined, indent: string, + actualProgram: ts.Program | undefined, + projectName: string | undefined, + globalTypingsCacheLocation: string | undefined, + actualProgramResolution: ((name: string, mode: ts.ResolutionMode) => T | undefined) | undefined, ) { let addedCacheType = false; forEach?.((resolved, key, mode) => { @@ -129,6 +210,15 @@ function getResolutionCacheDetails | undefined, indent: string, + actualProgram: ts.Program | undefined, + projectName: string | undefined, + globalTypingsCacheLocation: string | undefined, + actualLibResolution: (libFileName: string) => ts.LibResolution | undefined, ) { let addedCacheType = false; cache?.forEach((resolved, libFileName) => { @@ -152,14 +246,30 @@ function getLibResolutionCacheDetails( baseline.push(`${indent}Libs:`); } baseline.push(`${indent} ${libFileName}: Actual: ${resolved.actual} Resolution: ${getResolvedModuleFileName(resolved.resolution)}`); + if (actualProgram) { + verifyResolutionWithFailedLookupLocationsProperties( + resolved.resolution, + actualLibResolution(libFileName)?.resolution, + projectName!, + "Libs", + globalTypingsCacheLocation, + ); + } }); } -function getProgramStructure(program: ts.Program | undefined) { +function getProgramStructure( + program: ts.Program | undefined, + actualProgram?: ts.Program, + projectName?: string, + globalTypingsCacheLocation?: string, + userResolvedModuleNames?: true, +) { const baseline: string[] = []; program?.getSourceFiles().slice().sort((f1, f2) => ts.comparePathsCaseSensitive(f1.path, f2.path)).forEach(f => { baseline.push(` File: ${f.fileName} Path: ${f.path} ResolvedPath: ${f.resolvedPath} impliedNodeFormat: ${f.impliedNodeFormat}`); baseline.push(f.text.split(/\r?\n/).map(l => l ? " " + l : "").join("\n")); + const actualSourceFile = actualProgram?.getSourceFileByPath(f.path)!; getResolutionCacheDetails( baseline, "Modules", @@ -167,6 +277,12 @@ function getProgramStructure(program: ts.Program | undefined) { program.forEachResolvedModule, getResolvedModuleFileName, " ", + actualProgram, + projectName, + globalTypingsCacheLocation, + !userResolvedModuleNames ? + ((key, mode) => actualProgram!.getResolvedModule(actualSourceFile, key, mode)) : + undefined, ); getResolutionCacheDetails( baseline, @@ -175,6 +291,10 @@ function getProgramStructure(program: ts.Program | undefined) { program.forEachResolvedTypeReferenceDirective, getResolvedTypeRefFileName, " ", + actualProgram, + projectName, + globalTypingsCacheLocation, + (key, mode) => actualProgram!.getResolvedTypeReferenceDirective(actualSourceFile, key, mode), ); }); getResolutionCacheDetails( @@ -184,159 +304,650 @@ function getProgramStructure(program: ts.Program | undefined) { program?.getAutomaticTypeDirectiveResolutions().forEach, getResolvedTypeRefFileName, " ", + actualProgram, + projectName, + globalTypingsCacheLocation, + (key, mode) => actualProgram!.getAutomaticTypeDirectiveResolutions()?.get(key, mode), ); getLibResolutionCacheDetails( baseline, program?.resolvedLibReferences, " ", + actualProgram, + projectName, + globalTypingsCacheLocation, + libFileName => actualProgram!.resolvedLibReferences?.get(libFileName), ); return baseline.join("\n"); } -export function verifyProgramStructure(expectedProgram: ts.Program, actualProgram: ts.Program, projectName: string): void { +export function verifyProgramStructure( + expectedProgram: ts.Program, + actualProgram: ts.Program, + projectName: string, + globalTypingsCacheLocation: string | undefined, + userResolvedModuleNames?: true, +): void { const actual = getProgramStructure(actualProgram); - const expected = getProgramStructure(expectedProgram); + const expected = getProgramStructure( + expectedProgram, + actualProgram, + projectName, + globalTypingsCacheLocation, + userResolvedModuleNames, + ); ts.Debug.assert(actual === expected, `Program verification:: ${projectName}`); } -export function verifyResolutionCache( +interface PopulateResolutionCacheResult { + expected: ts.ResolutionCache; + resolutionToRefs: Map; +} +function populateResolutionCache( actual: ts.ResolutionCache, + sharedCache: ts.SharedResolutionCache, + expectedToResolution: Map, + actualToResolution: Map, +): PopulateResolutionCacheResult; +function populateResolutionCache( + actual: ts.ResolutionCache, + sharedCache: ts.SharedResolutionCache, + expectedToResolution: Map, + actualToResolution: Map, + verifyProgramAndResolution: true, actualProgram: ts.Program, resolutionHostCacheHost: ts.ResolutionCacheHost, projectName: string, -): void { - const currentDirectory = resolutionHostCacheHost.getCurrentDirectory!(); - const expected = ts.createResolutionCache(resolutionHostCacheHost, actual.rootDirForResolution, /*logChangesWhenResolvingModule*/ false); - expected.startCachingPerDirectoryResolution(); + userResolvedModuleNames: true | undefined, +): PopulateResolutionCacheResult; +function populateResolutionCache( + actual: ts.ResolutionCache, + sharedCache: ts.SharedResolutionCache, + expectedToResolution: Map, + actualToResolution: Map, + verifyProgramAndResolution?: true, + actualProgram?: ts.Program, + resolutionHostCacheHost?: ts.ResolutionCacheHost, + projectName?: string, + userResolvedModuleNames?: true, +) { + resolutionHostCacheHost ??= { + getCurrentDirectory: actual.resolutionHost.getCurrentDirectory.bind(actual.resolutionHost), + toPath: actual.resolutionHost.toPath.bind(actual.resolutionHost), + getCanonicalFileName: actual.resolutionHost.getCanonicalFileName.bind(actual.resolutionHost), + getCompilationSettings: actual.resolutionHost.getCompilationSettings.bind(actual.resolutionHost), + fileExists: ts.notImplemented, + readFile: ts.notImplemented, + realpath: actual.resolutionHost.realpath?.bind(actual.resolutionHost), + globalCacheResolutionModuleName: actual.resolutionHost.globalCacheResolutionModuleName?.bind(actual.resolutionHost), + getCurrentProgram: actual.resolutionHost.getCurrentProgram.bind(actual.resolutionHost), + fileIsOpen: actual.resolutionHost.fileIsOpen.bind(actual.resolutionHost), + projectName: actual.resolutionHost.projectName, + preferNonRecursiveWatch: actual.resolutionHost.preferNonRecursiveWatch, + watchDirectoryOfFailedLookupLocation: ts.returnNoopFileWatcher, + watchAffectingFileLocation: ts.returnNoopFileWatcher, + onInvalidatedResolution: ts.notImplemented, + watchTypeRootsDirectory: ts.returnNoopFileWatcher, + onChangedAutomaticTypeDirectiveNames: ts.notImplemented, + scheduleInvalidateResolutionsOfFailedLookupLocations: ts.notImplemented, + getCachedDirectoryStructureHost: ts.returnUndefined, + writeLog: ts.noop, + }; + actualProgram ??= actual.resolutionHost.getCurrentProgram()!; + const currentDirectory = resolutionHostCacheHost.getCurrentDirectory(); + resolutionHostCacheHost.getRootDirInfoForResolution = (_redirectedReference, expectedResolution) => + actual.sharedCache.watchedResolutionInfoMap.get( + expectedToResolution.get(expectedResolution)!, + )!.rootDirInfo!; - type ExpectedResolution = ts.CachedResolvedModuleWithFailedLookupLocations & ts.CachedResolvedTypeReferenceDirectiveWithFailedLookupLocations; + const expected = ts.createResolutionCache(resolutionHostCacheHost, actual.rootDirForResolution, sharedCache); + expected.startCachingPerDirectoryResolution(actualProgram.getCompilerOptions()); - const expectedToResolution = new Map(); - const resolutionToExpected = new Map(); const resolutionToRefs = new Map(); + const inferredTypesPath = resolutionHostCacheHost.toPath( + ts.getAutomaticTypeDirectiveContainingFile( + actualProgram.getCompilerOptions(), + currentDirectory, + ), + ); actual.resolvedModuleNames.forEach((resolutions, path) => collectResolutionToRefFromCache( "Modules", + expectedToResolution, + actualToResolution, path, resolutions, getResolvedModuleFileName, - /*deferWatchingNonRelativeResolution*/ true, expected.resolvedModuleNames, + expected.moduleResolutionCache, + () => actualProgram.getRedirectReferenceForResolution(actualProgram.getSourceFileByPath(path)!), + (name, mode) => actualProgram.getResolvedModule(actualProgram.getSourceFileByPath(path)!, name, mode), ) ); actual.resolvedTypeReferenceDirectives.forEach((resolutions, path) => collectResolutionToRefFromCache( "TypeRefs", + expectedToResolution, + actualToResolution, path, resolutions, getResolvedTypeRefFileName, - /*deferWatchingNonRelativeResolution*/ false, expected.resolvedTypeReferenceDirectives, + expected.typeReferenceDirectiveResolutionCache, + () => + path !== inferredTypesPath ? + actualProgram.getRedirectReferenceForResolution(actualProgram.getSourceFileByPath(path)!) : + undefined, + (name, mode) => + path !== inferredTypesPath ? + actualProgram.getResolvedTypeReferenceDirective(actualProgram.getSourceFileByPath(path)!, name, mode) : + actualProgram.getAutomaticTypeDirectiveResolutions().get(name, mode), ) ); actual.resolvedLibraries.forEach((resolved, libFileName) => { + const libResolvedFrom = ts.getInferredLibraryNameResolveFrom(actualProgram.getCompilerOptions(), currentDirectory, libFileName); const expectedResolution = collectResolution( "Libs", - resolutionHostCacheHost.toPath( - ts.getInferredLibraryNameResolveFrom(actualProgram.getCompilerOptions(), currentDirectory, libFileName), - ), + expectedToResolution, + actualToResolution, + resolutionHostCacheHost.toPath(libResolvedFrom), resolved, - getResolvedModuleFileName(resolved), + getResolvedModuleFileName, ts.getLibraryNameFromLibFileName(libFileName), /*mode*/ undefined, - /*deferWatchingNonRelativeResolution*/ false, ); expected.resolvedLibraries.set(libFileName, expectedResolution); - }); - - expected.finishCachingPerDirectoryResolution(actualProgram, /*oldProgram*/ undefined); - - // Verify ref count - resolutionToRefs.forEach((info, resolution) => { - ts.Debug.assert( - resolution.files?.size === info.length, - `${projectName}:: Expected Resolution ref count ${info.length} but got ${resolution.files?.size}`, - () => - `Expected from:: ${JSON.stringify(info, undefined, " ")}` + - `Actual from: ${resolution.files?.size}`, + expected.libraryResolutionCache.setPerDirectoryAndNonRelativeNameCacheResult( + ts.getLibraryNameFromLibFileName(libFileName), + undefined, + ts.getDirectoryPath(libResolvedFrom), + undefined, + expectedResolution, ); - verifySet(resolutionToExpected.get(resolution)!.files, resolution.files, `${projectName}:: Resolution files`); }); - verifyMapOfResolutionSet(expected.resolvedFileToResolution, actual.resolvedFileToResolution, `resolvedFileToResolution`); - verifyResolutionSet(expected.resolutionsWithFailedLookups, actual.resolutionsWithFailedLookups, `resolutionsWithFailedLookups`); - verifyResolutionSet(expected.resolutionsWithOnlyAffectingLocations, actual.resolutionsWithOnlyAffectingLocations, `resolutionsWithOnlyAffectingLocations`); - verifyDirectoryWatchesOfFailedLookups(expected.directoryWatchesOfFailedLookups, actual.directoryWatchesOfFailedLookups); - verifyFileWatchesOfAffectingLocations(expected.fileWatchesOfAffectingLocations, actual.fileWatchesOfAffectingLocations); - verifyPackageDirWatchers(expected.packageDirWatchers, actual.packageDirWatchers); - verifyDirPathToSymlinkPackageRefCount(expected.dirPathToSymlinkPackageRefCount, actual.dirPathToSymlinkPackageRefCount); + if (verifyProgramAndResolution) { + // Check for resolutions in program but not in cache to empty resolutions + if (!userResolvedModuleNames) { + actualProgram.forEachResolvedModule((resolution, name, mode, filePath) => + verifyResolutionIsInCache( + "Modules", + actual.resolvedModuleNames.get(filePath), + resolution, + name, + mode, + filePath, + ) + ); + } + actualProgram.forEachResolvedTypeReferenceDirective((resolution, name, mode, filePath) => + verifyResolutionIsInCache( + "TypeRefs", + actual.resolvedTypeReferenceDirectives.get(filePath), + resolution, + name, + mode, + filePath, + ) + ); + actualProgram.getAutomaticTypeDirectiveResolutions().forEach((resolution, name, mode) => + verifyResolutionIsInCache( + "AutoTypeRefs", + actual.resolvedTypeReferenceDirectives.get(inferredTypesPath), + resolution, + name, + mode, + inferredTypesPath, + ) + ); + } - // Stop watching resolutions to verify everything gets closed. - expected.startCachingPerDirectoryResolution(); - actual.resolvedModuleNames.forEach((_resolutions, path) => expected.removeResolutionsOfFile(path)); - actual.resolvedTypeReferenceDirectives.forEach((_resolutions, path) => expected.removeResolutionsOfFile(path)); - expected.finishCachingPerDirectoryResolution(/*newProgram*/ undefined, actualProgram); + expected.finishCachingPerDirectoryResolution(actualProgram, /*oldProgram*/ undefined, /*skipCacheCompact*/ true); + const project = actual.resolutionHost as ts.server.Project; + if ( + !project.projectService || + (project.languageServiceEnabled && project.projectService.serverMode === ts.LanguageServiceMode.Semantic) + ) expected.updateTypeRootsWatch(actualProgram.getCompilerOptions()); - resolutionToExpected.forEach( - expected => ts.Debug.assert(!expected.files?.size, `${projectName}:: Shouldnt ref to any files`), - ); - ts.Debug.assert(expected.resolvedFileToResolution.size === 0, `${projectName}:: resolvedFileToResolution should be released`); - ts.Debug.assert(expected.resolutionsWithFailedLookups.size === 0, `${projectName}:: resolutionsWithFailedLookups should be released`); - ts.Debug.assert(expected.resolutionsWithOnlyAffectingLocations.size === 0, `${projectName}:: resolutionsWithOnlyAffectingLocations should be released`); - ts.Debug.assert(expected.directoryWatchesOfFailedLookups.size === 0, `${projectName}:: directoryWatchesOfFailedLookups should be released`); - ts.Debug.assert(expected.fileWatchesOfAffectingLocations.size === 0, `${projectName}:: fileWatchesOfAffectingLocations should be released`); + return { expected, resolutionToRefs }; function collectResolutionToRefFromCache( cacheType: string, + expectedToResolution: Map, + actualToResolution: Map, fileName: ts.Path, cache: ts.ModeAwareCache | undefined, getResolvedFileName: (resolution: T) => string | undefined, - deferWatchingNonRelativeResolution: boolean, - storeExpcted: Map>, + storeExpected: Map>, + moduleOrTypeRefCache: ts.ModuleOrTypeReferenceResolutionCache, + getRedirectReferenceForResolution: () => ts.ResolvedProjectReference | undefined, + getProgramResolutions: (name: string, mode: ts.ResolutionMode) => T | undefined, ) { - ts.Debug.assert( - actualProgram.getSourceFileByPath(fileName) || ts.endsWith(fileName, ts.inferredTypesContainingFile), - `${projectName}:: ${cacheType} ${fileName} Expect cache for file in program or auto type ref`, - ); + if (verifyProgramAndResolution) { + ts.Debug.assert( + actualProgram!.getSourceFileByPath(fileName) || inferredTypesPath === fileName, + `${projectName}:: ${cacheType} ${fileName} Expect cache for file in program or auto type ref`, + ); + } let expectedCache: ts.ModeAwareCache | undefined; cache?.forEach((resolved, name, mode) => { - const resolvedFileName = getResolvedFileName(resolved); - const expected = collectResolution(cacheType, fileName, resolved, resolvedFileName, name, mode, deferWatchingNonRelativeResolution); - if (!expectedCache) storeExpcted.set(fileName, expectedCache = ts.createModeAwareCache()); + const expected = collectResolution( + cacheType, + expectedToResolution, + actualToResolution, + fileName, + resolved, + getResolvedFileName, + name, + mode, + ); + if (!expectedCache) storeExpected.set(fileName, expectedCache = ts.createModeAwareCache()); expectedCache.set(name, mode, expected); + moduleOrTypeRefCache.setPerDirectoryAndNonRelativeNameCacheResult( + name, + mode, + ts.getDirectoryPath(fileName), + getRedirectReferenceForResolution(), + expected as unknown as T, + ); + if (verifyProgramAndResolution) { + // Resolution in cache should be same as that is in program + ts.Debug.assert( + resolved === getProgramResolutions(name, mode), + `${projectName}:: ${cacheType} ${fileName} ${name} ${mode} Expected resolution in cache to be matched to that in the program`, + ); + } }); } function collectResolution( cacheType: string, + expectedToResolution: Map, + actualToResolution: Map, fileName: ts.Path, resolved: T, - resolvedFileName: string | undefined, + getResolvedFileName: (resolution: T) => string | undefined, name: string, mode: ts.ResolutionMode, - deferWatchingNonRelativeResolution: boolean, - ): ExpectedResolution { + ) { const existing = resolutionToRefs.get(resolved); - let expectedResolution: ExpectedResolution; + let expectedResolution = actualToResolution.get(resolved) as T | undefined; if (existing) { existing.push({ cacheType, fileName, name, mode }); - expectedResolution = resolutionToExpected.get(resolved)!; } else { resolutionToRefs.set(resolved, [{ cacheType, fileName, name, mode }]); - expectedResolution = { - resolvedModule: (resolved as any).resolvedModule, - resolvedTypeReferenceDirective: (resolved as any).resolvedTypeReferenceDirective, - failedLookupLocations: resolved.failedLookupLocations, - affectingLocations: resolved.affectingLocations, - alternateResult: resolved.alternateResult, - }; + } + if (!expectedResolution) { + expectedResolution = { ...resolved }; + if (ts.isResolvedWithGlobalCachePass(resolved)) { + const primary = resolved.globalCacheResolution.primary; + if (!actualToResolution.has(primary)) { + // Set primary resolution + const primaryExpectedResolution = { ...primary } as ts.ResolvedModuleWithFailedLookupLocations; + primaryExpectedResolution.globalCacheResolution = { + primary: primaryExpectedResolution, + globalResolution: primary.globalCacheResolution?.globalResolution, + globalResult: expectedResolution as ts.ResolvedModuleWithFailedLookupLocations, + }; + (expectedResolution as ts.ResolvedModuleWithFailedLookupLocations).globalCacheResolution = primaryExpectedResolution.globalCacheResolution; + expectedToResolution.set(primaryExpectedResolution, primary); + actualToResolution.set(primary, primaryExpectedResolution); + } + } + else if (ts.isResolvedWithoutGlobalCachePass(resolved)) { + if (resolved.globalCacheResolution.globalResult) { + // Set the global resolution as well + const globalResult = resolved.globalCacheResolution.globalResult; + if (!actualToResolution.has(globalResult)) { + const globalExpectedResult = { ...globalResult } as ts.ResolvedModuleWithFailedLookupLocations; + expectedResolution.globalCacheResolution = { + primary: expectedResolution as ts.ResolvedModuleWithFailedLookupLocations, + globalResolution: resolved.globalCacheResolution.globalResolution, + globalResult: globalExpectedResult, + }; + globalExpectedResult.globalCacheResolution = expectedResolution.globalCacheResolution; + expectedToResolution.set(globalExpectedResult, globalResult); + actualToResolution.set(globalResult, globalExpectedResult); + } + } + else { + expectedResolution.globalCacheResolution = { primary: expectedResolution as ts.ResolvedModuleWithFailedLookupLocations }; + } + } expectedToResolution.set(expectedResolution, resolved); - resolutionToExpected.set(resolved, expectedResolution); + actualToResolution.set(resolved, expectedResolution); } - expected.watchFailedLookupLocationsOfExternalModuleResolutions(name, expectedResolution, fileName, () => ({ resolvedFileName }), deferWatchingNonRelativeResolution); + // We are passing redirectedReference as undefined because we want to use existing rootDirInfo + expected.watchResolution( + expectedResolution, + fileName, + () => ({ resolvedFileName: getResolvedFileName(resolved) }), + /*redirectedReference*/ undefined, + ); return expectedResolution; } + function verifyResolutionIsInCache( + cacheType: string, + cache: ts.ModeAwareCache | undefined, + resolution: T, + name: string, + mode: ts.ResolutionMode, + fileName: string, + ) { + if (resolution !== ts.emptyResolution) { + // Resolutions should match + ts.Debug.assert( + cache?.get(name, mode) === resolution, + `${projectName}:: ${cacheType}:: ${name}:: ${mode} Expected resolution in program to be in cache ${fileName}`, + ); + } + else { + // EmptyResolution is place holder and shouldnt be in the cache + ts.Debug.assert( + !cache?.has(name, mode), + `${projectName}:: ${cacheType}:: ${name}:: ${mode} Ambient moduleResolution, should not be in cache or watched ${fileName}`, + ); + } + } +} + +function releaseResolutionCache( + expectedCache: ts.ResolutionCache, + actualCache: ts.ResolutionCache, + actualProgram: ts.Program | undefined, + skipCacheCompact: boolean, +) { + // Stop watching resolutions to verify everything gets closed. + actualProgram ??= actualCache.resolutionHost.getCurrentProgram()!; + expectedCache.startCachingPerDirectoryResolution(actualProgram.getCompilerOptions()); + actualCache.resolvedModuleNames.forEach((_resolutions, path) => expectedCache.removeResolutionsOfFile(path)); + actualCache.resolvedTypeReferenceDirectives.forEach((_resolutions, path) => expectedCache.removeResolutionsOfFile(path)); + expectedCache.finishCachingPerDirectoryResolution(/*newProgram*/ undefined, actualProgram, skipCacheCompact); + expectedCache.closeTypeRootsWatch(); +} + +export function verifyResolutionCache( + actual: ts.ResolutionCache, + actualProgram: ts.Program, + resolutionHostCacheHost: ts.ResolutionCacheHost, + projectName: string, + userResolvedModuleNames?: true, +): void { + const expectedCacheToActualCache = new Map(); + const actualCacheToExpectedCache = new Map(); + const expectedToResolution = new Map(); + const actualToResolution = new Map(); + const expectedResolutionCacheToResolutions = new Map>(); + + const sharedCache = ts.createSharedResolutionCache(actual.sharedCache.sharedCacheHost); + forEachOtherResolutionCachesInSharedCache(cache => { + const expected = populateResolutionCache( + cache, + sharedCache, + expectedToResolution, + actualToResolution, + ); + expectedCacheToActualCache.set(expected.expected, cache); + actualCacheToExpectedCache.set(cache, expected.expected); + const optionsSet = actual.sharedCache.cacheToOptions.get(cache); + if (optionsSet) sharedCache.cacheToOptions.set(expected.expected, optionsSet); + expectedResolutionCacheToResolutions.set(expected.expected, new Set(expected.resolutionToRefs.keys())); + }); + + expectedResolutionCacheToResolutions.forEach((expectedRefs, expectedCache) => + expectedRefs.forEach(actualResolution => { + const expectedResolution = actualResolutionToExpectedResolution(actualResolution); + const actualCache = expectedCacheToActualCache.get(expectedCache)!; + if (actualCache.sharedCache.watchedResolutionInfoMap.get(actualResolution)!.isInvalidated) { + sharedCache.watchedResolutionInfoMap.get(expectedResolution)!.isInvalidated = true; + } + if (ts.isResolvedWithGlobalCachePass(actualResolution)) { + if (actualCache.sharedCache.watchedResolutionInfoMap.get(actualResolution.globalCacheResolution.primary)?.isInvalidated) { + sharedCache.watchedResolutionInfoMap.get(expectedResolution.globalCacheResolution!.primary)!.isInvalidated = true; + } + } + else if (actualResolution.globalCacheResolution?.globalResult) { + if (actualCache.sharedCache.watchedResolutionInfoMap.get(actualResolution.globalCacheResolution.globalResult)?.isInvalidated) { + sharedCache.watchedResolutionInfoMap.get(expectedResolution.globalCacheResolution!.globalResult!)!.isInvalidated = true; + } + } + }) + ); + + const { expected, resolutionToRefs } = populateResolutionCache( + actual, + sharedCache, + expectedToResolution, + actualToResolution, + /*verifyProgramAndResolution*/ true, + actualProgram, + resolutionHostCacheHost, + projectName, + userResolvedModuleNames, + ); + expectedCacheToActualCache.set(expected, actual); + actualCacheToExpectedCache.set(actual, expected); + + verifyRefCountCache(sharedCache.inUseResolutionCaches, actual.sharedCache.inUseResolutionCaches, "inUseResolutionCaches"); + // Verify ref count + resolutionToRefs.forEach((info, actualResolution) => { + const actualFiles = actual.filesReferencingResolution.get(actualResolution); + ts.Debug.assert( + actualFiles?.size === info.length, + `${projectName}:: Expected Resolution ref count ${info.length} but got ${actualFiles?.size}`, + () => + `Expected from:: ${JSON.stringify(info, undefined, " ")}` + + `Actual from: ${actualFiles?.size}`, + ); + const actualWatchedResolutionInfo = actual.sharedCache.watchedResolutionInfoMap.get(actualResolution)!; + ts.Debug.assert( + actualWatchedResolutionInfo.caches.has(actual), + `${projectName}:: Expected Resolution to have reference for the cache`, + ); + ts.Debug.assert( + !actualWatchedResolutionInfo.isInvalidated, + `${projectName}:: Resolution should not be invalidated`, + ); + const expectedResolution = actualResolutionToExpectedResolution(actualResolution); + const expecedFiles = expected.filesReferencingResolution.get(expectedResolution); + verifySet(expecedFiles, actualFiles, `Resolution files`); + verifyWatchedResolutionInfo(sharedCache.watchedResolutionInfoMap.get(expectedResolution), actualWatchedResolutionInfo, "watchedResolutionInfo of Resolution"); + }); + verifyMap( + sharedCache.watchedResolutionInfoMap, + actual.sharedCache.watchedResolutionInfoMap, + verifyWatchedResolutionInfo, + "watchedResolutionInfoMap", + expectedResolutionToActualResolution, + actualResolutionToExpectedResolution, + ); + verifyMapOfResolutionSet(sharedCache.resolvedFileToResolution, actual.sharedCache.resolvedFileToResolution, "resolvedFileToResolution"); + verifyResolutionSet(sharedCache.resolutionsWithFailedLookups, actual.sharedCache.resolutionsWithFailedLookups, "resolutionsWithFailedLookups"); + verifyResolutionSet(sharedCache.resolutionsWithOnlyAffectingLocations, actual.sharedCache.resolutionsWithOnlyAffectingLocations, `resolutionsWithOnlyAffectingLocations`); + verifyDirectoryWatchesOfFailedLookups(sharedCache.directoryWatchesOfFailedLookups, actual.sharedCache.directoryWatchesOfFailedLookups, "directoryWatchesOfFailedLookups"); + verifyDirectoryWatchesOfFailedLookups(sharedCache.nonRecursiveDirectoryWatchesOfFailedLookups, actual.sharedCache.nonRecursiveDirectoryWatchesOfFailedLookups, "nonRecursiveDirectoryWatchesOfFailedLookups"); + verifyFileWatchesOfAffectingLocations(sharedCache.fileWatchesOfAffectingLocations, actual.sharedCache.fileWatchesOfAffectingLocations); + verifyPackageDirWatchers(sharedCache.packageDirWatchers, actual.sharedCache.packageDirWatchers); + verifyDirPathToSymlinkPackageRefCount(sharedCache.dirPathToSymlinkPackageRefCount, actual.sharedCache.dirPathToSymlinkPackageRefCount); + ts.Debug.assert( + expected.countResolutionsResolvedWithGlobalCache() === actual.countResolutionsResolvedWithGlobalCache(), + `${projectName}:: Expected ResolutionsResolvedWithGlobalCache count ${expected.countResolutionsResolvedWithGlobalCache()} but got ${actual.countResolutionsResolvedWithGlobalCache()}`, + ); + ts.Debug.assert( + expected.countResolutionsResolvedWithoutGlobalCache() === actual.countResolutionsResolvedWithoutGlobalCache(), + `${projectName}:: Expected ResolutionsResolvedWithoutGlobalCache count ${expected.countResolutionsResolvedWithoutGlobalCache()} but got ${actual.countResolutionsResolvedWithoutGlobalCache()}`, + ); + + // Verify that caches are same: + forEachModuleOrTypeRefOrLibCache((cache, cacheType) => verifyModuleOrTypeResolutionCache(cache, actual[cacheType], cacheType)); + forEachSharedModuleOrTypeRefOrLibCache((cache, cacheType) => verifyModuleOrTypeResolutionCache(cache, actual.sharedCache[cacheType], `sharedCache ${cacheType}`)); + verifyPackageJsonWatchInfo(); + + verifyTypeRootWatches(); + + // Stop watching resolutions to verify everything gets closed. + releaseResolutionCache(expected, actual, actualProgram, /*skipCacheCompact*/ true); + verifyResolutionRefCountCacheOrSetDoesNotContainExpected(sharedCache.inUseResolutionCaches, "inUseResolutionCaches"); + ts.Debug.assert(!expected.filesReferencingResolution.size, `${projectName}:: Shouldnt watch any files`); + sharedCache.watchedResolutionInfoMap.forEach(info => + verifyResolutionRefCountCacheOrSetDoesNotContainExpected( + info.caches, + "watchedResolutionInfoMap", + ) + ); + sharedCache.resolvedFileToResolution.forEach((resolutions, file) => + verifyResolutionSetReleasedFromExpected( + resolutions, + `resolvedFileToResolution: ${file}`, + ) + ); + verifyResolutionSetReleasedFromExpected(sharedCache.resolutionsWithFailedLookups, "resolutionsWithFailedLookups"); + verifyResolutionSetReleasedFromExpected(sharedCache.resolutionsWithOnlyAffectingLocations, "resolutionsWithOnlyAffectingLocations"); + sharedCache.directoryWatchesOfFailedLookups.forEach((watcher, dirPath) => + verifyResolutionRefCountCacheOrSetDoesNotContainExpected( + watcher.refCount, + `directoryWatchesOfFailedLookups: ${dirPath}`, + ) + ); + sharedCache.nonRecursiveDirectoryWatchesOfFailedLookups.forEach((watcher, dirPath) => + verifyResolutionRefCountCacheOrSetDoesNotContainExpected( + watcher.refCount, + `nonRecursiveDirectoryWatchesOfFailedLookups: ${dirPath}`, + ) + ); + sharedCache.fileWatchesOfAffectingLocations.forEach((watcher, fileName) => { + verifyResolutionRefCountCacheOrSetDoesNotContainExpected( + watcher.resolutions, + `fileWatchesOfAffectingLocations: resolutions ${fileName}`, + ); + verifyResolutionRefCountCacheOrSetDoesNotContainExpected( + watcher.files, + `fileWatchesOfAffectingLocations: files ${fileName}`, + ); + }); + sharedCache.packageDirWatchers.forEach((watcher, dirPath) => + watcher.dirPathToWatcher.forEach(dirPathWatcher => { + verifyResolutionRefCountCacheOrSetDoesNotContainExpected( + dirPathWatcher.refCount, + `packageDirWatchers ${dirPath}`, + ); + verifyResolutionRefCountCacheOrSetDoesNotContainExpected( + dirPathWatcher.watcher.refCount, + `packageDirWatchers ${dirPath} watcher.refCount`, + ); + }) + ); + ts.Debug.assert(expected.countResolutionsResolvedWithGlobalCache() === 0, `${projectName}:: ResolutionsResolvedWithGlobalCache should be cleared`); + ts.Debug.assert(expected.countResolutionsResolvedWithoutGlobalCache() === 0, `${projectName}:: ResolutionsResolvedWithoutGlobalCache should be cleared`); + forEachModuleOrTypeRefOrLibCache((cache, cacheType) => verifyModuleOrTypeResolutionCacheIsEmpty(cache, cacheType, /*compacted*/ false, "")); + forEachSharedModuleOrTypeRefOrLibCache((cache, cacheType) => verifyModuleOrTypeResolutionCacheReferencesOnlyOtherCaches(cache, cacheType, /*compacted*/ false)); + + ts.Debug.assert(sharedCache.packageJsonRefCount.size <= actual.sharedCache.packageJsonRefCount.size, `${projectName}:: packageJsonRefCount should have released`); + ts.Debug.assert( + (sharedCache.moduleResolutionCache.getPackageJsonInfoCache().getInternalMap()?.size ?? 0) <= (actual.sharedCache.moduleResolutionCache.getPackageJsonInfoCache().getInternalMap()?.size ?? 0), + `${projectName}:: Shouldnt have released packageJson entries`, + ); + ts.Debug.assert(expected.typeRootsWatches.size === 0, `${projectName}:: typeRootsWatches should be cleared`); + sharedCache.typeRootsWatches.forEach((watcher, dirPath) => + verifyResolutionRefCountCacheOrSetDoesNotContainExpected( + watcher.refCount, + `typeRootsWatches ${dirPath}`, + ) + ); + + expected.compactCaches(/*newProgram*/ undefined); + forEachModuleOrTypeRefOrLibCache((cache, cacheType) => verifyModuleOrTypeResolutionCacheIsEmpty(cache, cacheType, /*compacted*/ true, "")); + forEachSharedModuleOrTypeRefOrLibCache((cache, cacheType) => verifyModuleOrTypeResolutionCacheReferencesOnlyOtherCaches(cache, cacheType, /*compacted*/ true)); + + // Release everything in shared cache:: + forEachOtherResolutionCachesInSharedCache(cache => { + const expectedResolutionCache = actualCacheToExpectedCache.get(cache)!; + releaseResolutionCache( + expectedResolutionCache, + cache, + /*actualProgram*/ undefined, + /*skipCacheCompact*/ false, + ); + forEachModuleOrTypeRefOrLibCacheOfResolutionCache( + expectedResolutionCache, + (cache, cacheType) => verifyModuleOrTypeResolutionCacheIsEmpty(cache, cacheType, /*compacted*/ false, `${expectedResolutionCache.resolutionHost.projectName}`), + ); + }); + ts.Debug.assert(!sharedCache.inUseResolutionCaches.size, `${projectName}:: inUseResolutionCaches should be released`); + ts.Debug.assert(!sharedCache.watchedResolutionInfoMap.size, `${projectName}:: Shouldnt watch any files`); + ts.Debug.assert(sharedCache.resolvedFileToResolution.size === 0, `${projectName}:: resolvedFileToResolution should be released`); + ts.Debug.assert(sharedCache.resolutionsWithFailedLookups.size === 0, `${projectName}:: resolutionsWithFailedLookups should be released`); + ts.Debug.assert(sharedCache.resolutionsWithOnlyAffectingLocations.size === 0, `${projectName}:: resolutionsWithOnlyAffectingLocations should be released`); + ts.Debug.assert(sharedCache.directoryWatchesOfFailedLookups.size === 0, `${projectName}:: directoryWatchesOfFailedLookups should be released`); + ts.Debug.assert(sharedCache.nonRecursiveDirectoryWatchesOfFailedLookups.size === 0, `${projectName}:: nonRecursiveDirectoryWatchesOfFailedLookups should be released`); + ts.Debug.assert(sharedCache.fileWatchesOfAffectingLocations.size === 0, `${projectName}:: fileWatchesOfAffectingLocations should be released`); + ts.Debug.assert(sharedCache.packageDirWatchers.size === 0, `${projectName}:: packageDirWatchers should be released`); + ts.Debug.assert(sharedCache.dirPathToSymlinkPackageRefCount.size === 0, `${projectName}:: dirPathToSymlinkPackageRefCount should be released`); + ts.Debug.assert(sharedCache.packageJsonRefCount.size === 0, `${projectName}:: packageJsonRefCount should be cleared`); + ts.Debug.assert( + sharedCache.moduleResolutionCache.getPackageJsonInfoCache().getInternalMap() === undefined || sharedCache.moduleResolutionCache.getPackageJsonInfoCache().getInternalMap()!.size === 0, + `${projectName}:: Shouldnt have any packageJson entries`, + ); + ts.Debug.assert(sharedCache.typeRootsWatches.size === 0, `${projectName}:: sharedCache typeRootsWatches should be cleared`); + forEachSharedModuleOrTypeRefOrLibCache((cache, cacheType) => verifyModuleOrTypeResolutionCacheIsEmpty(cache, cacheType, /*compacted*/ false, "sharedCache ")); + + // compact caches + forEachOtherResolutionCachesInSharedCache(cache => { + const expectedResolutionCache = actualCacheToExpectedCache.get(cache)!; + expectedResolutionCache.compactCaches(/*newProgram*/ undefined); + forEachModuleOrTypeRefOrLibCacheOfResolutionCache( + expectedResolutionCache, + (cache, cacheType) => verifyModuleOrTypeResolutionCacheIsEmpty(cache, cacheType, /*compacted*/ true, `${expectedResolutionCache.resolutionHost.projectName}`), + ); + }); + forEachSharedModuleOrTypeRefOrLibCache((cache, cacheType) => verifyModuleOrTypeResolutionCacheIsEmpty(cache, cacheType, /*compacted*/ true, "sharedCache ")); + + function expectedResolutionToActualResolution(expectedResolution: ts.ResolutionWithFailedLookupLocations) { + return expectedToResolution.get(expectedResolution)!; + } + + function actualResolutionToExpectedResolution(actualResolution: ts.ResolutionWithFailedLookupLocations) { + return actualToResolution.get(actualResolution)!; + } + + function forEachOtherResolutionCachesInSharedCache(cb: (cache: ts.ResolutionCache) => void) { + actual.sharedCache.inUseResolutionCaches.forEach((_refCount, cache) => cache !== actual ? cb(cache) : undefined); + } + + function verifyWatchedResolutionInfo( + expectedWatchedResolutionInfo: ts.WatchedResolutionInfo | undefined, + actualWatchedResolutionInfo: ts.WatchedResolutionInfo | undefined, + caption: string, + ) { + verifyResolutionCacheSet( + expectedWatchedResolutionInfo?.caches, + actualWatchedResolutionInfo?.caches, + `${caption}:: CacheRefs`, + ); + ts.Debug.assert( + expectedWatchedResolutionInfo?.watchedFailed === actualWatchedResolutionInfo?.watchedFailed, + `${projectName}:: Expected watchedFailed ${expectedWatchedResolutionInfo?.watchedFailed} but got ${actualWatchedResolutionInfo?.watchedFailed}`, + ); + ts.Debug.assert( + expectedWatchedResolutionInfo?.watchedAffected === actualWatchedResolutionInfo?.watchedAffected, + `${projectName}:: Expected watchedAffected ${expectedWatchedResolutionInfo?.watchedAffected} but got ${actualWatchedResolutionInfo?.watchedAffected}`, + ); + verifySet(expectedWatchedResolutionInfo?.dirWatches, actualWatchedResolutionInfo?.dirWatches, "Resolution dirWatches"); + verifySet(expectedWatchedResolutionInfo?.nonRecursiveDirWatches, actualWatchedResolutionInfo?.nonRecursiveDirWatches, "Resolution nonRecursiveDirWatches"); + verifyMap( + expectedWatchedResolutionInfo?.packageDirWatchers, + actualWatchedResolutionInfo?.packageDirWatchers, + (expectedForDirWatchers, actualForDirWatchers, caption) => + verifySet( + expectedForDirWatchers, + actualForDirWatchers, + caption, + ), + `packageDirWatchers`, + ); + } + function verifyMapOfResolutionSet( expected: Map> | undefined, actual: Map> | undefined, @@ -350,22 +961,48 @@ export function verifyResolutionCache( actual: Set | undefined, caption: string, ) { - expected?.forEach(resolution => - ts.Debug.assert( - actual?.has(expectedToResolution.get(resolution as ExpectedResolution)!), - `${projectName}:: ${caption}:: Expected resolution should be present in actual resolutions`, - ) + verifySet( + expected, + actual, + `${projectName}:: ${caption}:: Resolutions`, + expectedResolutionToActualResolution, + actualResolutionToExpectedResolution, ); - actual?.forEach(resolution => - ts.Debug.assert( - expected?.has(resolutionToExpected.get(resolution)!), - `${projectName}:: ${caption}:: Actual resolution should be present in expected resolutions`, - ) + } + + function expectedResolutionCacheToActualResolutionCache(expectedCache: ts.ResolutionCache): ts.ResolutionCache { + return expectedCacheToActualCache.get(expectedCache)!; + } + + function actualResolutionCacheToExpectedResolutionCache(actualCache: ts.ResolutionCache): ts.ResolutionCache { + return actualCacheToExpectedCache.get(actualCache)!; + } + + function resolutionCacheToText(cache: ts.ResolutionCache) { + return cache.resolutionHost.projectName ?? cache; + } + + function verifyResolutionCacheSet( + expectedResolutionCacheSet: Set | undefined, + actualdResolutionCacheSet: Set | undefined, + caption: string, + ) { + verifySet( + expectedResolutionCacheSet, + actualdResolutionCacheSet, + `${projectName}:: ${caption}`, + expectedResolutionCacheToActualResolutionCache, + actualResolutionCacheToExpectedResolutionCache, + resolutionCacheToText, ); } - function verifyDirectoryWatchesOfFailedLookups(expected: Map, actual: Map) { - verifyMap(expected, actual, verifyDirectoryWatchesOfFailedLookup, "directoryWatchesOfFailedLookups"); + function verifyDirectoryWatchesOfFailedLookups( + expected: Map, + actual: Map, + caption: string, + ) { + verifyMap(expected, actual, verifyDirectoryWatchesOfFailedLookup, caption); } function verifyDirectoryWatchesOfFailedLookup( @@ -373,9 +1010,28 @@ export function verifyResolutionCache( actual: ts.DirectoryWatchesOfFailedLookup | undefined, caption: string, ) { - ts.Debug.assert(expected?.refCount === actual?.refCount, `${projectName}:: ${caption}:: refCount`); + verifyRefCountCache(expected?.refCount, actual?.refCount, `${caption}:: refCount`); ts.Debug.assert(!!expected?.refCount, `${projectName}:: ${caption}:: expected refCount to be non zero`); - ts.Debug.assert(expected?.nonRecursive === actual?.nonRecursive, `${projectName}:: ${caption}:: nonRecursive`); + } + + function verifyRefCountCache( + expectedRefCountCache: ts.RefCountCache | undefined, + actualRefCountCache: ts.RefCountCache | undefined, + caption: string, + ) { + verifyMap( + expectedRefCountCache, + actualRefCountCache, + (expectedRefCount, actualRefCount, caption) => + ts.Debug.assert( + expectedRefCount === actualRefCount, + `${projectName}:: ${caption} Expected ref count ${expectedRefCount} but got ${actualRefCount}`, + ), + caption, + expectedResolutionCacheToActualResolutionCache, + actualResolutionCacheToExpectedResolutionCache, + resolutionCacheToText, + ); } function verifyFileWatchesOfAffectingLocations( @@ -390,8 +1046,8 @@ export function verifyResolutionCache( actual: ts.FileWatcherOfAffectingLocation | undefined, caption: string, ) { - ts.Debug.assert(expected?.resolutions === actual?.resolutions, `${projectName}:: ${caption}:: resolutions`); - ts.Debug.assert(expected?.files === actual?.files, `${projectName}:: ${caption}:: files`); + verifyRefCountCache(expected?.resolutions, actual?.resolutions, `${caption}:: resolutions`); + verifyRefCountCache(expected?.files, actual?.files, `${caption}:: files`); verifySet(expected?.symlinks, actual?.symlinks, `${projectName}:: ${caption}:: symlinks`); } @@ -416,7 +1072,7 @@ export function verifyResolutionCache( actual: ts.DirPathToWatcherOfPackageDirWatcher | undefined, caption: string, ) { - ts.Debug.assert(expected?.refCount === actual?.refCount, `${projectName}:: ${caption}:: refCount`); + verifyRefCountCache(expected?.refCount, actual?.refCount, `${caption}:: refCount`); verifyDirectoryWatchesOfFailedLookup(expected?.watcher, actual?.watcher, `${projectName}:: ${caption}:: directoryWatchesOfFailedLookup`); } @@ -428,37 +1084,416 @@ export function verifyResolutionCache( ts.Debug.assert(expected === actual, `${projectName}:: ${caption}`); }, "dirPathToSymlinkPackageRefCount"); } + + type ModuleOrTypeRefOrLibraryCacheType = "moduleResolutionCache" | "typeReferenceDirectiveResolutionCache" | "libraryResolutionCache"; + function forEachModuleOrTypeRefOrLibCache( + action: (cache: ts.ResolutionCache[ModuleOrTypeRefOrLibraryCacheType], cacheType: ModuleOrTypeRefOrLibraryCacheType) => void, + ) { + forEachModuleOrTypeRefOrLibCacheOfResolutionCache(expected, action); + } + + function forEachSharedModuleOrTypeRefOrLibCache( + action: (cache: ts.ResolutionCache[ModuleOrTypeRefOrLibraryCacheType], cacheType: ModuleOrTypeRefOrLibraryCacheType) => void, + ) { + forEachModuleOrTypeRefOrLibCacheOfResolutionCache(sharedCache, action); + } + + function forEachModuleOrTypeRefOrLibCacheOfResolutionCache( + cache: ts.ResolutionCache | ts.SharedResolutionCache, + action: (cache: ts.ResolutionCache[ModuleOrTypeRefOrLibraryCacheType], cacheType: ModuleOrTypeRefOrLibraryCacheType) => void, + ) { + action(cache.moduleResolutionCache, "moduleResolutionCache"); + action(cache.typeReferenceDirectiveResolutionCache, "typeReferenceDirectiveResolutionCache"); + action(cache.libraryResolutionCache, "libraryResolutionCache"); + } + + function verifyModuleOrTypeResolutionCache( + expectedModuleOrTypeRefCache: ts.ModuleOrTypeReferenceResolutionCache, + actualModuleOrTypeRefCache: ts.ModuleOrTypeReferenceResolutionCache, + cacheType: string, + ) { + verfiyCacheWithRedirects( + expectedModuleOrTypeRefCache.directoryToModuleNameMap, + actualModuleOrTypeRefCache.directoryToModuleNameMap, + verifyDirectoryToModuleNameMap, + `${cacheType}:: directoryToModuleNameMap`, + ); + verfiyCacheWithRedirects( + expectedModuleOrTypeRefCache.moduleNameToDirectoryMap, + actualModuleOrTypeRefCache.moduleNameToDirectoryMap, + verifyModuleNameToDirectoryMap, + `${cacheType}:: moduleNameToDirectoryMap`, + ); + } + + function verifyDirectoryToModuleNameMap( + expectedDirectoryToModuleNameMap: ts.ModeAwareCache | undefined, + actualDirectoryToModuleNameMap: ts.ModeAwareCache | undefined, + caption: string, + ) { + verifyModeAwareCache( + expectedDirectoryToModuleNameMap, + actualDirectoryToModuleNameMap, + verfiyResolution, + caption, + ); + } + + function verifyModuleNameToDirectoryMap( + expectedModuleNameToDirectoryMap: ts.PerNonRelativeNameCache | undefined, + actualModuleNameToDirectoryMap: ts.PerNonRelativeNameCache | undefined, + caption: string, + ) { + verifyMap( + expectedModuleNameToDirectoryMap?.directoryPathMap, + actualModuleNameToDirectoryMap?.directoryPathMap, + verfiyResolution, + caption, + ); + } + + function verfiyResolution( + expectedResolution: ts.ResolutionWithFailedLookupLocations | undefined, + actualResolution: ts.ResolutionWithFailedLookupLocations | undefined, + caption: string, + ) { + ts.Debug.assert( + expectedResolution ? + // Resolution should match + expectedResolutionToActualResolution(expectedResolution) === actualResolution : + // Otherwise in actual cache present because of incremental storage and should be referenced somewhere + sharedCache.watchedResolutionInfoMap.has(actualResolutionToExpectedResolution(actualResolution!)), + `${projectName}:: ${caption} Expected resolution need to match in actual`, + ); + } + + function verfiyCacheWithRedirects( + expectedCacheWithRedirects: ts.CacheWithRedirects, + actualCacheWithRedirects: ts.CacheWithRedirects, + verifyValue: (expectedCacheWithRedirectsValue: V | undefined, actualCacheWithRedirectsValue: V | undefined, caption: string) => void, + cacheType: string, + ) { + const expectedOwnOptions = expectedCacheWithRedirects.getOwnOptions(); + const actualOwnOptions = actualCacheWithRedirects.getOwnOptions(); + ts.Debug.assert( + (expectedOwnOptions && ts.computeRedirectsCacheKey(expectedOwnOptions)) === (actualOwnOptions && ts.computeRedirectsCacheKey(actualOwnOptions)), + `${projectName}:: ${cacheType}:: ownOptions affecting cache should match`, + ); + verifyMap( + expectedCacheWithRedirects.getOwnMap(), + actualCacheWithRedirects.getOwnMap(), + verifyValue, + `${cacheType}:: ownMap`, + ); + expectedCacheWithRedirects.redirectsKeyToMap.forEach( + (expectedCacheWithRedirectsValue, key) => { + // Expected might have value in redirectsKeyToMap because we collect and set resolutions + // in different order than its computed by program creation + const actualCacheWithRedirectsValue = actualCacheWithRedirects.redirectsKeyToMap.get(key); + if (actualCacheWithRedirectsValue) { + verifyMap( + expectedCacheWithRedirectsValue, + actualCacheWithRedirects.redirectsKeyToMap.get(key), + verifyValue, + `${cacheType}:: redirectsKeyToMap:: ${key}`, + ); + } + else { + // This is own key + ts.Debug.assert( + ts.computeRedirectsCacheKey(expectedCacheWithRedirects.getOwnOptions()!) === key, + `${cacheType}:: redirectsKeyToMap:: ${key} not present in actualCacheWithRedirects: should be ownKey`, + ); + + ts.Debug.assert( + expectedCacheWithRedirects.getOwnMap() === expectedCacheWithRedirectsValue, + `${cacheType}:: redirectsKeyToMap:: ${key} not present in actualCacheWithRedirects: should be ownMap`, + ); + } + }, + ); + actualCacheWithRedirects.redirectsKeyToMap.forEach( + (actualCacheWithRedirectsValue, key) => { + const expectedCacheWithRedirectsValue = expectedCacheWithRedirects.redirectsKeyToMap.get(key); + if (expectedCacheWithRedirectsValue) { + verifyMap( + expectedCacheWithRedirectsValue, + actualCacheWithRedirectsValue, + verifyValue, + `${cacheType}:: redirectsKeyToMap:: ${key}`, + ); + } + else if (actualCacheWithRedirectsValue.size) { + // When changes affect module resolution, we update the compilerOptions which sets the redirectsKeyToMap with ownMap + // This will not happen for initial program/resolution cache creation so expected may not have the value in redirectsKeyToMap + ts.Debug.assert( + ts.computeRedirectsCacheKey(actualCacheWithRedirects.getOwnOptions()!) === key, + `${cacheType}:: redirectsKeyToMap:: ${key} not present in expectedCacheWithRedirects: should be ownKey`, + ); + + ts.Debug.assert( + actualCacheWithRedirects.getOwnMap() === actualCacheWithRedirectsValue, + `${cacheType}:: redirectsKeyToMap:: ${key} not present in expectedCacheWithRedirects: should be ownMap`, + ); + } + }, + ); + } + + function verifyModuleOrTypeResolutionCacheIsEmpty( + moduleOrTypeRefCache: ts.ModuleOrTypeReferenceResolutionCache, + cacheType: string, + compacted: boolean, + caption: string, + ) { + verifyCacheWithRedirectsIsEmpty( + moduleOrTypeRefCache.directoryToModuleNameMap, + `${caption}${cacheType}:: directoryToModuleNameMap`, + compacted, + ); + verifyCacheWithRedirectsIsEmpty( + moduleOrTypeRefCache.moduleNameToDirectoryMap, + `${caption}${cacheType}:: moduleNameToDirectoryMap`, + compacted, + ); + } + + function verifyCacheWithRedirectsIsEmpty( + cacheWithRedirects: ts.CacheWithRedirects, + cacheType: string, + compacted: boolean, + ) { + ts.Debug.assert( + cacheWithRedirects.getOwnMap().size === 0, + `${projectName}:: ${cacheType}:: ${compacted}:: ownMap should be empty`, + ); + cacheWithRedirects.redirectsKeyToMap.forEach((actualMap, actualKey) => { + ts.Debug.assert( + compacted ? actualMap === cacheWithRedirects.getOwnMap() : actualMap.size === 0, + `${projectName}:: ${cacheType}:: ${compacted}:: redirectsKeyToMap:: ${actualKey} expected to be empty`, + ); + if (compacted) { + ts.Debug.assert( + ts.computeRedirectsCacheKey(cacheWithRedirects.getOwnOptions()!) === actualKey, + `${projectName}:: ${cacheType}:: ${compacted}:: redirectsKeyToMap:: ${actualKey} expected to be same as ownKey`, + ); + } + }); + } + + function verifyModuleOrTypeResolutionCacheReferencesOnlyOtherCaches( + moduleOrTypeRefCache: ts.ModuleOrTypeReferenceResolutionCache, + cacheType: ModuleOrTypeRefOrLibraryCacheType, + compacted: boolean, + ) { + let allowedKeys: Set | undefined; + forEachOtherResolutionCachesInSharedCache(cache => + cacheType !== "libraryResolutionCache" ? + actual.sharedCache.cacheToOptions.get(cache)?.forEach( + options => + (allowedKeys ??= new Set()).add( + ts.computeRedirectsCacheKey(options), + ), + ) : + (allowedKeys ??= new Set()).add( + ts.computeRedirectsCacheKey(ts.getOptionsForLibraryResolution(/*options*/ undefined)), + ) + ); + verifyCacheWithRedirectsReferencesOnlyOtherCaches( + moduleOrTypeRefCache.directoryToModuleNameMap, + `sharedCache ${cacheType}:: directoryToModuleNameMap`, + allowedKeys, + compacted, + ); + verifyCacheWithRedirectsReferencesOnlyOtherCaches( + moduleOrTypeRefCache.moduleNameToDirectoryMap, + `sharedCache ${cacheType}:: moduleNameToDirectoryMap`, + allowedKeys, + compacted, + ); + } + + function verifyCacheWithRedirectsReferencesOnlyOtherCaches( + cacheWithRedirects: ts.CacheWithRedirects, + cacheType: string, + allowedKeys: Set | undefined, + compacted: boolean, + ) { + ts.Debug.assert( + cacheWithRedirects.getOwnMap().size === 0 || allowedKeys?.has(ts.computeRedirectsCacheKey(cacheWithRedirects.getOwnOptions()!)), + `${projectName}:: ${cacheType}:: ${compacted}:: ownMap should be empty`, + ); + cacheWithRedirects.redirectsKeyToMap.forEach((actualMap, actualKey) => + ts.Debug.assert( + (compacted ? actualMap === cacheWithRedirects.getOwnMap() : actualMap.size === 0) || allowedKeys?.has(actualKey), + `${projectName}:: ${cacheType}:: ${compacted}:: redirectsKeyToMap:: ${actualKey} expected to be empty`, + ) + ); + } + + function verifyPackageJsonWatchInfo() { + verifyMap( + sharedCache.packageJsonRefCount, + actual.sharedCache.packageJsonRefCount, + (expectedRefCount, actualRefCount, caption) => + ts.Debug.assert( + expectedRefCount === actualRefCount, + `${projectName}:: ${caption}`, + ), + "packageJsonRefCount", + ); + verifyMap( + actual.sharedCache.packageJsonRefCount, + actual.moduleResolutionCache.getPackageJsonInfoCache().getInternalMap(), + (refCount, packageJsonCacheEntry, caption) => { + // Ok to have refcount on entry not in cache + if (!packageJsonCacheEntry) return; + ts.Debug.assert( + !!refCount, + `${projectName}:: ${caption}:: expected ref count on packageJson as there is entry in the cache`, + ); + }, + "Package Json cache watched", + ); + } + + function verifyTypeRootWatches() { + verifyMap( + expected.typeRootsWatches, + actual.typeRootsWatches, + (expectedWatch, actualWatch, caption) => + ts.Debug.assert( + !!expectedWatch === !!actualWatch, + `${projectName}:: ${caption}`, + ), + "typeRootsWatches", + ); + verifyMap( + sharedCache.typeRootsWatches, + actual.sharedCache.typeRootsWatches, + verifySharedCacheTypeRootWatch, + "sharedCache typeRootsWatches", + ); + } + + function verifySharedCacheTypeRootWatch( + expectedWatch: ts.TypeRootWatch | undefined, + actualWatch: ts.TypeRootWatch | undefined, + caption: string, + ) { + ts.Debug.assert( + !!expectedWatch === !!actualWatch, + `${projectName}:: ${caption}`, + ); + ts.Debug.assert( + !!expectedWatch?.watcher === !!actualWatch?.watcher, + `${projectName}:: ${caption} watcher`, + ); + verifyResolutionCacheSet(expectedWatch?.refCount, actualWatch?.refCount, `${caption} refCount`); + } + + function verifyResolutionRefCountCacheOrSetDoesNotContainExpected( + refCacheOrSet: ts.RefCountCache | Set | undefined, + caption: string, + ) { + ts.Debug.assert( + !refCacheOrSet?.has(expected), + `${projectName}:: Expected ${caption} to have released cache`, + ); + } + + function verifyResolutionSetReleasedFromExpected( + resolutionSet: Set, + caption: string, + ) { + resolutionSet.forEach(resolution => { + verifyResolutionRefCountCacheOrSetDoesNotContainExpected( + sharedCache.watchedResolutionInfoMap.get(resolution)!.caches, + caption, + ); + }); + } } -function verifyMap( - expected: Map | undefined, - actual: Map | undefined, - verifyValue: (expected: Expected | undefined, actual: Actual | undefined, key: string) => void, +function verifyMap( + expectedMap: Map | undefined, + actualMap: Map | undefined, + verifyValue: (expectedValue: Expected | undefined, actualValue: Actual | undefined, caption: string) => void, caption: string, + expectedKeyToActualKey: (expectedValue: Key) => Key = ts.identity, + actualKeyToExpectedKey: (actualValue: Key) => Key = ts.identity, + keyToText: (key: Key) => any = ts.identity, ) { - expected?.forEach((expected, path) => verifyValue(expected, actual?.get(path), `${caption}:: ${path}`)); - actual?.forEach((actual, path) => verifyValue(expected?.get(path), actual, `${caption}:: ${path}`)); + expectedMap?.forEach((expectedValue, path) => + verifyValue( + expectedValue, + actualMap?.get(expectedKeyToActualKey(path)), + `${caption}:: ${keyToText(path)}`, + ) + ); + actualMap?.forEach((actualValue, path) => + verifyValue( + expectedMap?.get(actualKeyToExpectedKey(path)), + actualValue, + `${caption}:: ${keyToText(path)}`, + ) + ); } -function verifySet( - expected: Set | undefined, - actual: Set | undefined, +function verifySet( + expectedSet: Set | undefined, + actualSet: Set | undefined, caption: string, + expectedValueToActualValue: (expectedValue: K) => K = ts.identity, + actualValueToExpectedValue: (actualValue: K) => K = ts.identity, + valueToText: (key: K) => any = ts.identity, ) { - expected?.forEach(expected => + expectedSet?.forEach(expectedValue => ts.Debug.assert( - actual?.has(expected), - `${caption}:: Expected should be present in actual`, + actualSet?.has(expectedValueToActualValue(expectedValue)), + `${caption}:: ${valueToText(expectedValue)} should be present in actual`, ) ); - actual?.forEach(actual => + actualSet?.forEach(actualValue => ts.Debug.assert( - expected?.has(actual), - `${caption}:: Actual should be present in expected`, + expectedSet?.has(actualValueToExpectedValue(actualValue)), + `${caption}:: ${valueToText(actualValue)} should be present in expected`, ) ); } +function verifyArray( + expectedArray: readonly string[] | undefined, + actualArray: readonly string[] | undefined, + caption: string, +) { + return verifySet(expectedArray && new Set(expectedArray), actualArray && new Set(actualArray), caption); +} + +function verifyModeAwareCache( + expectedModeAwareCache: ts.ModeAwareCache | undefined, + actualModeAwareCache: ts.ModeAwareCache | undefined, + verifyValue: (expectedModeAwareCacheValue: T | undefined, actualModeAwareCacheValue: T | undefined, caption: string) => void, + caption: string, +) { + expectedModeAwareCache?.forEach( + (expectedModeAwareCacheValue, key, mode) => + verifyValue( + expectedModeAwareCacheValue, + actualModeAwareCache?.get(key, mode), + `${caption}:: ${key}:: ${mode}`, + ), + ); + actualModeAwareCache?.forEach( + (actualModeAwareCacheValue, key, mode) => + verifyValue( + expectedModeAwareCache?.get(key, mode), + actualModeAwareCacheValue, + `${caption}:: ${key}:: ${mode}`, + ), + ); +} + function verifyProgram(service: ts.server.ProjectService, project: ts.server.Project) { if (service.serverMode === ts.LanguageServiceMode.Syntactic) return; const options = project.getCompilerOptions(); @@ -568,8 +1603,32 @@ function verifyProgram(service: ts.server.ProjectService, project: ts.server.Pro }), project.getCurrentProgram()!, project.projectName, + service.typingsInstaller.globalTypingsCacheLocation, + ); + verifyResolutionCache( + project.resolutionCache, + project.getCurrentProgram()!, + resolutionHostCacheHost, + project.projectName, + ); +} + +function verifyUnresolvedImports(_service: ts.server.ProjectService, project: ts.server.Project) { + const cachedUnresolvedImportsPerFile = new Map(); + const lastCachedUnresolvedImportsList = project.useTypingsFromGlobalCache() ? + ts.server.getUnresolvedImports(project.getCurrentProgram()!, cachedUnresolvedImportsPerFile) : + undefined; + verifyArray( + lastCachedUnresolvedImportsList, + project.lastCachedUnresolvedImportsList, + `${project.getProjectName()}:: lastCachedUnresolvedImportsList`, + ); + verifyMap( + cachedUnresolvedImportsPerFile, + project.cachedUnresolvedImportsPerFile, + (expected, actual, caption) => verifyArray(expected, actual, caption), + `${project.getProjectName()}:: cachedUnresolvedImportsPerFile`, ); - verifyResolutionCache(project.resolutionCache, project.getCurrentProgram()!, resolutionHostCacheHost, project.projectName); } interface ResolveSingleModuleNameWithoutWatchingData { @@ -648,6 +1707,7 @@ export interface IncrementalVerifierCallbacks { export function incrementalVerifier(service: ts.server.ProjectService): void { service.verifyDocumentRegistry = withIncrementalVerifierCallbacks(service, verifyDocumentRegistry); service.verifyProgram = withIncrementalVerifierCallbacks(service, verifyProgram); + service.verifyUnresovedImports = withIncrementalVerifierCallbacks(service, verifyUnresolvedImports); service.onProjectCreation = onProjectCreation; } diff --git a/src/server/editorServices.ts b/src/server/editorServices.ts index 23f8d844c9856..3d33b0b3ad000 100644 --- a/src/server/editorServices.ts +++ b/src/server/editorServices.ts @@ -20,6 +20,7 @@ import { createDocumentRegistryInternal, createGetCanonicalFileName, createMultiMap, + createSharedResolutionCache, Debug, Diagnostic, directorySeparator, @@ -114,6 +115,7 @@ import { returnNoopFileWatcher, ScriptKind, SharedExtendedConfigFileWatcher, + SharedResolutionCache, some, SourceFile, SourceFileLike, @@ -1283,6 +1285,9 @@ export class ProjectService { /** @internal */ readonly documentRegistry: DocumentRegistry; + /** @internal */ + readonly sharedResolutionCache: SharedResolutionCache; + /** * Container of all known scripts * @@ -1424,6 +1429,7 @@ export class ProjectService { /** @internal */ baseline: (title?: string) => void = noop; /** @internal */ verifyDocumentRegistry: typeof noop = noop; /** @internal */ verifyProgram: (project: Project) => void = noop; + /** @internal */ verifyUnresovedImports: (project: Project) => void = noop; /** @internal */ onProjectCreation: (project: Project) => void = noop; /** @internal */ canUseWatchEvents: boolean; @@ -1505,9 +1511,21 @@ export class ProjectService { getDetailWatchInfo, ); this.canUseWatchEvents = getCanUseWatchEvents(this, opts.canUseWatchEvents); + this.sharedResolutionCache = createSharedResolutionCache({ + getCurrentDirectory: this.host.getCurrentDirectory.bind(this.host), + toPath: this.toPath.bind(this), + getCanonicalFileName: this.toCanonicalFileName, + preferNonRecursiveWatch: this.canUseWatchEvents || this.host.preferNonRecursiveWatch, + fileIsOpen: this.fileIsOpen.bind(this), + }); opts.incrementalVerifier?.(this); } + /** @internal */ + fileIsOpen(filePath: Path): boolean { + return this.openFiles.has(filePath); + } + toPath(fileName: string): Path { return toPath(fileName, this.currentDirectory, this.toCanonicalFileName); } @@ -1594,12 +1612,7 @@ export class ProjectService { switch (response.kind) { case ActionSet: // Update the typing files and update the project - project.updateTypingFiles( - response.compilerOptions, - response.typeAcquisition, - response.unresolvedImports, - response.typings, - ); + project.updateTypingFiles(response); return; case ActionInvalidate: // Do not clear resolution cache, there was changes detected in typings, so enque typing request and let it get us correct results diff --git a/src/server/project.ts b/src/server/project.ts index 90205d695015c..635f0f8d11fd6 100644 --- a/src/server/project.ts +++ b/src/server/project.ts @@ -24,6 +24,7 @@ import { createCacheableExportInfoMap, createLanguageService, createResolutionCache, + CreateSourceFileOptions, createSymlinkCache, Debug, Diagnostic, @@ -33,6 +34,8 @@ import { DocumentPositionMapper, ensureTrailingDirectorySeparator, enumerateInsertsAndDeletes, + equateStringsCaseInsensitive, + equateStringsCaseSensitive, every, explainFiles, ExportInfoMap, @@ -76,6 +79,7 @@ import { isDeclarationFileName, isExternalModuleNameRelative, isInsideNodeModules, + isUnresolvedOrResolvedToJs, JSDocParsingMode, JsTyping, LanguageService, @@ -88,7 +92,7 @@ import { ModuleResolutionCache, ModuleResolutionHost, ModuleSpecifierCache, - noop, + needsResolutionFromGlobalCache, noopFileWatcher, normalizePath, normalizeSlashes, @@ -106,7 +110,6 @@ import { ProjectReference, removeFileExtension, ResolutionCache, - resolutionExtensionIsTSOrJson, ResolvedModuleWithFailedLookupLocations, ResolvedProjectReference, ResolvedTypeReferenceDirectiveWithFailedLookupLocations, @@ -156,6 +159,7 @@ import { ScriptInfo, ServerHost, Session, + SetTypings, toNormalizedPath, updateProjectIfDirty, } from "./_namespaces/ts.server.js"; @@ -359,11 +363,17 @@ function compilerOptionsChanged(opt1: CompilerOptions, opt2: CompilerOptions): b } function unresolvedImportsChanged(imports1: SortedReadonlyArray | undefined, imports2: SortedReadonlyArray | undefined): boolean { - if (imports1 === imports2) { - return false; - } + if (imports1 === imports2) return false; + // undefined and 0 length array are same + if (!imports1?.length === !imports2?.length) return false; return !arrayIsEqualTo(imports1, imports2); } +const disabledTypeAcquisition: TypeAcquisition = {}; +const enabledTypeAcquisition: TypeAcquisition = { + enable: true, + include: ts.emptyArray, + exclude: ts.emptyArray, +}; export abstract class Project implements LanguageServiceHost, ModuleResolutionHost { private rootFilesMap = new Map(); @@ -383,6 +393,7 @@ export abstract class Project implements LanguageServiceHost, ModuleResolutionHo * @internal */ cachedUnresolvedImportsPerFile: Map = new Map(); + private recordChangesToUnresolvedImports = false; /** @internal */ lastCachedUnresolvedImportsList: SortedReadonlyArray | undefined; @@ -628,7 +639,7 @@ export abstract class Project implements LanguageServiceHost, ModuleResolutionHo this.resolutionCache = createResolutionCache( this, this.currentDirectory, - /*logChangesWhenResolvingModule*/ true, + this.projectService.sharedResolutionCache, ); this.languageService = createLanguageService( this, @@ -706,7 +717,6 @@ export abstract class Project implements LanguageServiceHost, ModuleResolutionHo (result || (result = [])).push(value.fileName); } }); - return addRange(result, this.typingFiles) || ts.emptyArray; } @@ -790,17 +800,62 @@ export abstract class Project implements LanguageServiceHost, ModuleResolutionHo } /** @internal */ - resolveModuleNameLiterals(moduleLiterals: readonly StringLiteralLike[], containingFile: string, redirectedReference: ResolvedProjectReference | undefined, options: CompilerOptions, containingSourceFile: SourceFile, reusedNames: readonly StringLiteralLike[] | undefined): readonly ResolvedModuleWithFailedLookupLocations[] { - return this.resolutionCache.resolveModuleNameLiterals(moduleLiterals, containingFile, redirectedReference, options, containingSourceFile, reusedNames); + resolveModuleNameLiterals( + moduleLiterals: readonly StringLiteralLike[], + containingFile: string, + redirectedReference: ResolvedProjectReference | undefined, + options: CompilerOptions, + containingSourceFile: SourceFile, + reusedNames: readonly StringLiteralLike[] | undefined, + ): readonly ResolvedModuleWithFailedLookupLocations[] { + let invalidated = false; + return this.resolutionCache.resolveModuleNameLiterals( + moduleLiterals, + containingFile, + redirectedReference, + options, + containingSourceFile, + reusedNames, + this.recordChangesToUnresolvedImports ? (existing, current, path, name) => { + if (invalidated || isExternalModuleNameRelative(name)) return; + // If only unresolved flag is changed, update + if ((existing && isUnresolvedOrResolvedToJs(existing)) === isUnresolvedOrResolvedToJs(current)) return; + invalidated = true; + this.cachedUnresolvedImportsPerFile.delete(path); + this.lastCachedUnresolvedImportsList = undefined; + } : undefined, + ); + } + + /** @internal */ + onReusedModuleResolutions( + reusedNames: readonly ts.StringLiteralLike[] | undefined, + containingSourceFile: ts.SourceFile, + redirectedReference: ResolvedProjectReference | undefined, + options: CompilerOptions, + ): void { + return this.resolutionCache.onReusedModuleResolutions( + reusedNames, + containingSourceFile, + redirectedReference, + options, + ); } /** @internal */ getModuleResolutionCache(): ModuleResolutionCache | undefined { - return this.resolutionCache.getModuleResolutionCache(); + return this.resolutionCache.moduleResolutionCache; } /** @internal */ - resolveTypeReferenceDirectiveReferences(typeDirectiveReferences: readonly T[], containingFile: string, redirectedReference: ResolvedProjectReference | undefined, options: CompilerOptions, containingSourceFile: SourceFile | undefined, reusedNames: readonly T[] | undefined): readonly ResolvedTypeReferenceDirectiveWithFailedLookupLocations[] { + resolveTypeReferenceDirectiveReferences( + typeDirectiveReferences: readonly T[], + containingFile: string, + redirectedReference: ResolvedProjectReference | undefined, + options: CompilerOptions, + containingSourceFile: SourceFile | undefined, + reusedNames: readonly T[] | undefined, + ): readonly ResolvedTypeReferenceDirectiveWithFailedLookupLocations[] { return this.resolutionCache.resolveTypeReferenceDirectiveReferences( typeDirectiveReferences, containingFile, @@ -811,11 +866,31 @@ export abstract class Project implements LanguageServiceHost, ModuleResolutionHo ); } + /** @internal */ + onReusedTypeReferenceDirectiveResolutions( + reusedNames: readonly T[] | undefined, + containingSourceFile: ts.SourceFile | undefined, + redirectedReference: ResolvedProjectReference | undefined, + options: CompilerOptions, + ): void { + return this.resolutionCache.onReusedTypeReferenceDirectiveResolutions( + reusedNames, + containingSourceFile, + redirectedReference, + options, + ); + } + /** @internal */ resolveLibrary(libraryName: string, resolveFrom: string, options: CompilerOptions, libFileName: string): ResolvedModuleWithFailedLookupLocations { return this.resolutionCache.resolveLibrary(libraryName, resolveFrom, options, libFileName); } + /** @internal */ + onSourceFileNotCreated(sourceFileOptions: CreateSourceFileOptions): void { + this.resolutionCache.onSourceFileNotCreated(sourceFileOptions); + } + directoryExists(path: string): boolean { return this.directoryStructureHost.directoryExists!(path); // TODO: GH#18217 } @@ -915,7 +990,7 @@ export abstract class Project implements LanguageServiceHost, ModuleResolutionHo /** @internal */ fileIsOpen(filePath: Path): boolean { - return this.projectService.openFiles.has(filePath); + return this.projectService.fileIsOpen(filePath); } /** @internal */ @@ -1043,6 +1118,10 @@ export abstract class Project implements LanguageServiceHost, ModuleResolutionHo } this.languageServiceEnabled = true; this.lastFileExceededProgramSize = undefined; + // Watch the type locations that would be added to program as part of automatic type resolutions + if (this.projectService.serverMode === LanguageServiceMode.Semantic) { + this.resolutionCache.updateTypeRootsWatch(); + } this.projectService.onUpdateLanguageServiceStateForProject(this, /*languageServiceEnabled*/ true); } @@ -1418,44 +1497,45 @@ export abstract class Project implements LanguageServiceHost, ModuleResolutionHo updateProjectIfDirty(this); } + /** @internal */ + useTypingsFromGlobalCache(): boolean { + return !this.isOrphan() && + !!this.languageServiceEnabled && + this.projectService.serverMode === LanguageServiceMode.Semantic && + this.projectService.typingsInstaller !== nullTypingsInstaller && + !!this.getTypeAcquisition().enable; + } + /** * Updates set of files that contribute to this project * @returns: true if set of files in the project stays the same and false - otherwise. */ updateGraph(): boolean { tracing?.push(tracing.Phase.Session, "updateGraph", { name: this.projectName, kind: ProjectKind[this.projectKind] }); - this.resolutionCache.startRecordingFilesWithChangedResolutions(); + const useTypingsFromGlobalCache = this.useTypingsFromGlobalCache(); + if (!useTypingsFromGlobalCache) this.resolutionCache.invalidateResolutionsWithGlobalCachePass(); + else this.resolutionCache.invalidateResolutionsWithoutGlobalCachePass(); + if (useTypingsFromGlobalCache && this.cachedUnresolvedImportsPerFile.size) this.recordChangesToUnresolvedImports = true; const hasNewProgram = this.updateGraphWorker(); const hasAddedorRemovedFiles = this.hasAddedorRemovedFiles; this.hasAddedorRemovedFiles = false; this.hasAddedOrRemovedSymlinks = false; + this.recordChangesToUnresolvedImports = false; - const changedFiles: readonly Path[] = this.resolutionCache.finishRecordingFilesWithChangedResolutions() || emptyArray; - - for (const file of changedFiles) { - // delete cached information for changed files - this.cachedUnresolvedImportsPerFile.delete(file); - } - - // update builder only if language service is enabled - // otherwise tell it to drop its internal state - if (this.languageServiceEnabled && this.projectService.serverMode === LanguageServiceMode.Semantic && !this.isOrphan()) { - // 1. no changes in structure, no changes in unresolved imports - do nothing - // 2. no changes in structure, unresolved imports were changed - collect unresolved imports for all files - // (can reuse cached imports for files that were not changed) - // 3. new files were added/removed, but compilation settings stays the same - collect unresolved imports for all new/modified files - // (can reuse cached imports for files that were not changed) - // 4. compilation settings were changed in the way that might affect module resolution - drop all caches and collect all data from the scratch - if (hasNewProgram || changedFiles.length) { - this.lastCachedUnresolvedImportsList = getUnresolvedImports(this.program!, this.cachedUnresolvedImportsPerFile); - } - + if (useTypingsFromGlobalCache) { + this.lastCachedUnresolvedImportsList ??= getUnresolvedImports( + this.program!, + this.cachedUnresolvedImportsPerFile, + ); this.enqueueInstallTypingsForProject(hasAddedorRemovedFiles); } else { this.lastCachedUnresolvedImportsList = undefined; + this.cachedUnresolvedImportsPerFile.clear(); + this.typingsCache = undefined; } + this.projectService.verifyUnresovedImports(this); const isFirstProgramLoad = this.projectProgramVersion === 0 && hasNewProgram; if (hasNewProgram) { @@ -1493,26 +1573,47 @@ export abstract class Project implements LanguageServiceHost, ModuleResolutionHo this.typingsCache = { compilerOptions: this.getCompilationSettings(), typeAcquisition, - unresolvedImports: this.lastCachedUnresolvedImportsList, + unresolvedImports: this.lastCachedUnresolvedImportsList?.length ? this.lastCachedUnresolvedImportsList : undefined, }; // something has been changed, issue a request to update typings - this.projectService.typingsInstaller.enqueueInstallTypingsRequest(this, typeAcquisition, this.lastCachedUnresolvedImportsList); + this.projectService.typingsInstaller.enqueueInstallTypingsRequest( + this, + typeAcquisition, + this.typingsCache.unresolvedImports, + ); } } /** @internal */ - updateTypingFiles(compilerOptions: CompilerOptions, typeAcquisition: TypeAcquisition, unresolvedImports: SortedReadonlyArray, newTypings: string[]): void { + updateTypingFiles({ compilerOptions, typeAcquisition, unresolvedImports, typings }: SetTypings): void { + if (!this.getTypeAcquisition().enable) return; this.typingsCache = { compilerOptions, typeAcquisition, unresolvedImports, }; - const typingFiles = !typeAcquisition || !typeAcquisition.enable ? emptyArray : toSorted(newTypings); - if (enumerateInsertsAndDeletes(typingFiles, this.typingFiles, getStringComparer(!this.useCaseSensitiveFileNames()), /*inserted*/ noop, removed => this.detachScriptInfoFromProject(removed))) { + const typingFiles = typings.length ? toSorted(typings) : emptyArray; + // The typings files are result of types acquired based on unresolved imports and other structure + // With respect to unresolved imports: + // The first time we see unresolved import the TI will fetch the typing into cache and return it as part of typings file + // This makes typings file set as files to be included as root + // Program update on this will resolve the unresolved imports from the previous pass + // Because resolution has changed, this will enqueue TI request without the previously unresolved imports + // As a result TI will send new Typings files that does not contain the typing files we got before + // So our root files will change as part of that but we dont want to detach the typing files that are no more typings file + // but rather let program update do that + // This ensures that if nothing else changes, program will still have that file and the update doesnt mark file as added or removed unncessarily + if ( + !arrayIsEqualTo( + typingFiles, + this.typingFiles, + this.useCaseSensitiveFileNames() ? equateStringsCaseSensitive : equateStringsCaseInsensitive, + ) + ) { // If typing files changed, then only schedule project update this.typingFiles = typingFiles; // Invalidate files with unresolved imports - this.resolutionCache.setFilesWithInvalidatedNonRelativeUnresolvedImports(this.cachedUnresolvedImportsPerFile); + if (this.typingFiles.length) this.resolutionCache.invalidateUnresolvedResolutionsWithGlobalCachePass(); this.projectService.delayUpdateProjectGraphAndEnsureProjectStructureForOpenFiles(this); } } @@ -1979,10 +2080,21 @@ export abstract class Project implements LanguageServiceHost, ModuleResolutionHo if (newTypeAcquisition) { this.typeAcquisition = this.removeLocalTypingsFromTypeAcquisition(newTypeAcquisition); } + else { + this.typeAcquisition = undefined; + } + // If the typeAcquition is disabled, dont use typing files as root and close existing watchers from TI + if (!this.getTypeAcquisition().enable) { + this.typingFiles = emptyArray; + if (this.typingsCache) { + this.typingsCache = undefined; + this.projectService.typingsInstaller.onProjectClosed(this); + } + } } getTypeAcquisition(): TypeAcquisition { - return this.typeAcquisition || {}; + return this.typeAcquisition ??= disabledTypeAcquisition; } /** @internal */ @@ -2357,7 +2469,11 @@ export abstract class Project implements LanguageServiceHost, ModuleResolutionHo } } -function getUnresolvedImports(program: Program, cachedUnresolvedImportsPerFile: Map): SortedReadonlyArray { +/** @internal */ +export function getUnresolvedImports( + program: Program, + cachedUnresolvedImportsPerFile: Map, +): SortedReadonlyArray { const sourceFiles = program.getSourceFiles(); tracing?.push(tracing.Phase.Session, "getUnresolvedImports", { count: sourceFiles.length }); const ambientModules = program.getTypeChecker().getAmbientModules().map(mod => stripQuotes(mod.getName())); @@ -2379,11 +2495,10 @@ function extractUnresolvedImportsFromSourceFile( ): readonly string[] { return getOrUpdate(cachedUnresolvedImportsPerFile, file.path, () => { let unresolvedImports: string[] | undefined; - program.forEachResolvedModule(({ resolvedModule }, name) => { + program.forEachResolvedModule((resolution, name) => { // pick unresolved non-relative names if ( - (!resolvedModule || !resolutionExtensionIsTSOrJson(resolvedModule.extension)) && - !isExternalModuleNameRelative(name) && + needsResolutionFromGlobalCache(name, resolution) && !ambientModules.some(m => m === name) ) { unresolvedImports = append(unresolvedImports, parsePackageName(name).packageName); @@ -2399,6 +2514,7 @@ function extractUnresolvedImportsFromSourceFile( */ export class InferredProject extends Project { private _isJsInferredProject = false; + private inferredTypeAcquisition: TypeAcquisition | undefined; toggleJsInferredProject(isJsInferredProject: boolean): void { if (isJsInferredProject !== this._isJsInferredProject) { @@ -2471,11 +2587,13 @@ export class InferredProject extends Project { else if (this.isOrphan() && this._isJsInferredProject && !info.isJavaScript()) { this.toggleJsInferredProject(/*isJsInferredProject*/ false); } + this.inferredTypeAcquisition = undefined; super.addRoot(info); } override removeRoot(info: ScriptInfo): void { this.projectService.stopWatchingConfigFilesForScriptInfo(info); + this.inferredTypeAcquisition = undefined; super.removeRoot(info); // Delay toggling to isJsInferredProject = false till we actually need it again if (!this.isOrphan() && this._isJsInferredProject && info.isJavaScript()) { @@ -2503,12 +2621,13 @@ export class InferredProject extends Project { super.close(); } + override setTypeAcquisition(newTypeAcquisition: ts.TypeAcquisition | undefined): void { + this.inferredTypeAcquisition = undefined; + super.setTypeAcquisition(newTypeAcquisition); + } + override getTypeAcquisition(): TypeAcquisition { - return this.typeAcquisition || { - enable: allRootFilesAreJsOrDts(this), - include: ts.emptyArray, - exclude: ts.emptyArray, - }; + return this.typeAcquisition || (this.inferredTypeAcquisition ??= allRootFilesAreJsOrDts(this) ? enabledTypeAcquisition : disabledTypeAcquisition); } } @@ -2850,11 +2969,6 @@ export class AutoImportProviderProject extends Project { override getSymlinkCache(): SymlinkCache { return this.hostProject.getSymlinkCache(); } - - /** @internal */ - override getModuleResolutionCache(): ModuleResolutionCache | undefined { - return this.hostProject.getCurrentProgram()?.getModuleResolutionCache(); - } } /** diff --git a/src/server/session.ts b/src/server/session.ts index 56331182c0d86..8c50f9f68f6a8 100644 --- a/src/server/session.ts +++ b/src/server/session.ts @@ -1749,7 +1749,7 @@ export class Session implements EventSender { ); const packageName = getPackageNameFromTypesPackageName(unmangleScopedPackageName(packageNamePathPart)); const path = project.toPath(fileName); - if (entrypoints && some(entrypoints, e => project.toPath(e) === path)) { + if (some(entrypoints, e => project.toPath(e) === path)) { // This file was the main entrypoint of a package. Try to resolve that same package name with // the auxiliary project that only resolves to implementation files. return auxiliaryProject.resolutionCache.resolveSingleModuleNameWithoutWatching(packageName, resolveFromFile).resolvedModule?.resolvedFileName; diff --git a/src/services/services.ts b/src/services/services.ts index 0534598da21d7..1c35e4c57786f 100644 --- a/src/services/services.ts +++ b/src/services/services.ts @@ -1770,7 +1770,10 @@ export function createLanguageService( resolveTypeReferenceDirectives: maybeBind(host, host.resolveTypeReferenceDirectives), resolveModuleNameLiterals: maybeBind(host, host.resolveModuleNameLiterals), resolveTypeReferenceDirectiveReferences: maybeBind(host, host.resolveTypeReferenceDirectiveReferences), + onReusedModuleResolutions: maybeBind(host, host.onReusedModuleResolutions), + onReusedTypeReferenceDirectiveResolutions: maybeBind(host, host.onReusedTypeReferenceDirectiveResolutions), resolveLibrary: maybeBind(host, host.resolveLibrary), + onSourceFileNotCreated: maybeBind(host, host.onSourceFileNotCreated), useSourceOfProjectReferenceRedirect: maybeBind(host, host.useSourceOfProjectReferenceRedirect), getParsedCommandLine, jsDocParsingMode: host.jsDocParsingMode, diff --git a/src/services/types.ts b/src/services/types.ts index 16c0498d1aeed..5bf39a750a086 100644 --- a/src/services/types.ts +++ b/src/services/types.ts @@ -1,6 +1,7 @@ import { CancellationToken, CompilerHost, + CompilerHostSupportingResolutionCache, CompilerOptions, CustomTransformers, Diagnostic, @@ -436,6 +437,10 @@ export interface LanguageServiceHost extends GetEffectiveTypeRootsHost, MinimalR jsDocParsingMode?: JSDocParsingMode | undefined; } +/** @internal */ +export interface LanguageServiceHost extends CompilerHostSupportingResolutionCache { +} + /** @internal */ export const emptyOptions = {}; diff --git a/src/testRunner/unittests/canWatch.ts b/src/testRunner/unittests/canWatch.ts index 36b4e5a07cb3a..ffc3a91e797e4 100644 --- a/src/testRunner/unittests/canWatch.ts +++ b/src/testRunner/unittests/canWatch.ts @@ -99,36 +99,6 @@ describe("unittests:: canWatch::", () => { }); } - [undefined, true].forEach(preferNonRecursiveWatch => { - baselineCanWatch( - `getDirectoryToWatchFailedLookupLocationFromTypeRoot${preferNonRecursiveWatch ? "NonRecursive" : ""}`, - () => `When watched typeRoot handler is invoked, this method determines the directory for which the failedLookupLocation would need to be invalidated.\r\nSince this is invoked only when watching default typeRoot and is used to handle flaky directory watchers, this is used as a fail safe where if failed lookup starts with returned directory we will invalidate that resolution.`, - (paths, longestPathLength, baseline) => { - const maxLength = longestPathLength + "/node_modules/@types".length; - const maxLengths = [maxLength, maxLength] as const; - baselineCanWatchForRoot(paths, baseline, (rootPathCompoments, root, isRootWatchable) => { - pushHeader(baseline, ["Directory", "getDirectoryToWatchFailedLookupLocationFromTypeRoot"], maxLengths); - paths.forEach(path => { - path = combinePaths(path, "node_modules/@types"); - // This is invoked only on paths that are watched - if (!ts.canWatchAtTypes(path)) return; - const result = ts.getDirectoryToWatchFailedLookupLocationFromTypeRoot( - path, - path, - root, - rootPathCompoments, - isRootWatchable, - ts.returnUndefined, - preferNonRecursiveWatch, - ts.returnTrue, - ); - pushRow(baseline, [path, result !== undefined ? result : ""], maxLengths); - }); - }); - }, - ); - }); - function baselineCanWatchForRoot( paths: readonly ts.Path[], baseline: string[], diff --git a/src/testRunner/unittests/helpers/packageJsonScope.ts b/src/testRunner/unittests/helpers/packageJsonScope.ts new file mode 100644 index 0000000000000..fd9ae8b3a676a --- /dev/null +++ b/src/testRunner/unittests/helpers/packageJsonScope.ts @@ -0,0 +1,135 @@ +import { dedent } from "../../_namespaces/Utils.js"; +import { jsonToReadableText } from "../helpers.js"; +import { TscWatchCompileChange } from "./tscWatch.js"; +import { TestServerHost } from "./virtualFileSystemWithWatch.js"; + +function getRandomFileContent() { + return "export const x = 10;"; +} + +export function forEachPackageJsonScopeScenario( + forTsserver: boolean, + action: ( + scenario: string, + sys: () => TestServerHost, + edits: () => readonly TscWatchCompileChange[], + project: string, + mainFile: string, + ) => void, +): void { + action( + "project with package json scope", + () => + (!forTsserver ? TestServerHost.createWatchedSystem : TestServerHost.createServerHost)({ + "/home/src/workspaces/project/src/tsconfig.json": jsonToReadableText({ + compilerOptions: { + target: "es2016", + composite: true, + module: "node16", + outDir: "../out", + traceResolution: true, + }, + files: [ + "main.ts", + "fileA.ts", + "fileB.mts", + "randomFile.ts", + "a/randomFile.ts", + "b/ba/randomFile.ts", + "b/randomFile.ts", + "c/ca/randomFile.ts", + "c/ca/caa/randomFile.ts", + "c/ca/caa/caaa/randomFile.ts", + "c/cb/randomFile.ts", + "d/da/daa/daaa/x/y/z/randomFile.ts", + "d/da/daa/daaa/randomFile.ts", + "d/da/daa/randomFile.ts", + "d/da/randomFile.ts", + "e/ea/randomFile.ts", + "e/ea/eaa/randomFile.ts", + "e/ea/eaa/eaaa/randomFile.ts", + "e/ea/eaa/eaaa/x/y/z/randomFile.ts", + "f/fa/faa/x/y/z/randomFile.ts", + "f/fa/faa/faaa/randomFile.ts", + ], + }), + "/home/src/workspaces/project/src/main.ts": getRandomFileContent(), + "/home/src/workspaces/project/src/fileA.ts": dedent` + import { foo } from "./fileB.mjs"; + foo(); + `, + "/home/src/workspaces/project/src/fileB.mts": `export function foo() {}`, + "/home/src/workspaces/project/src/randomFile.ts": getRandomFileContent(), + "/home/src/workspaces/project/src/a/randomFile.ts": getRandomFileContent(), + "/home/src/workspaces/project/src/b/ba/randomFile.ts": getRandomFileContent(), + "/home/src/workspaces/project/src/b/randomFile.ts": getRandomFileContent(), + "/home/src/workspaces/project/src/c/ca/randomFile.ts": getRandomFileContent(), + "/home/src/workspaces/project/src/c/ca/caa/randomFile.ts": getRandomFileContent(), + "/home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts": getRandomFileContent(), + "/home/src/workspaces/project/src/c/cb/randomFile.ts": getRandomFileContent(), + "/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts": getRandomFileContent(), + "/home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts": getRandomFileContent(), + "/home/src/workspaces/project/src/d/da/daa/randomFile.ts": getRandomFileContent(), + "/home/src/workspaces/project/src/d/da/randomFile.ts": getRandomFileContent(), + "/home/src/workspaces/project/src/e/ea/randomFile.ts": getRandomFileContent(), + "/home/src/workspaces/project/src/e/ea/eaa/randomFile.ts": getRandomFileContent(), + "/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts": getRandomFileContent(), + "/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts": getRandomFileContent(), + "/home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts": getRandomFileContent(), + "/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts": getRandomFileContent(), + "/home/src/workspaces/project/package.json": jsonToReadableText({ name: "app", version: "1.0.0" }), + }, { currentDirectory: "/home/src/workspaces/project" }), + () => [ + { + caption: "random edit", + edit: sys => sys.appendFile("/home/src/workspaces/project/src/randomFile.ts", `export const y = 10;`), + timeouts: sys => { + sys.runQueuedTimeoutCallbacks(); // Failed lookups + sys.runQueuedTimeoutCallbacks(); // actual update + }, + }, + { + caption: "Modify package json file to add type module", + edit: sys => sys.writeFile(`/home/src/workspaces/project/package.json`, jsonToReadableText({ name: "app", version: "1.0.0", type: "module" })), + timeouts: sys => { + sys.runQueuedTimeoutCallbacks(); // Failed lookups + sys.runQueuedTimeoutCallbacks(); // actual update + }, + }, + { + caption: "Modify package.json file to remove type module", + edit: sys => sys.writeFile(`/home/src/workspaces/project/package.json`, jsonToReadableText({ name: "app", version: "1.0.0" })), + timeouts: sys => { + sys.runQueuedTimeoutCallbacks(); // Failed lookups + sys.runQueuedTimeoutCallbacks(); // actual update + }, + }, + { + caption: "Delete package.json", + edit: sys => sys.deleteFile(`/home/src/workspaces/project/package.json`), + timeouts: sys => { + sys.runQueuedTimeoutCallbacks(); // Failed lookups + sys.runQueuedTimeoutCallbacks(); // actual update + }, + }, + { + caption: "Add package json file with type module", + edit: sys => sys.writeFile(`/home/src/workspaces/project/package.json`, jsonToReadableText({ name: "app", version: "1.0.0", type: "module" })), + timeouts: sys => { + sys.runQueuedTimeoutCallbacks(); // Failed lookups + sys.runQueuedTimeoutCallbacks(); // actual update + }, + }, + { + caption: "Delete package.json", + edit: sys => sys.deleteFile(`/home/src/workspaces/project/package.json`), + timeouts: sys => { + sys.runQueuedTimeoutCallbacks(); // Failed lookups + sys.runQueuedTimeoutCallbacks(); // actual update + }, + }, + ], + "/home/src/workspaces/project/src/tsconfig.json", + "/home/src/workspaces/project/src/main.ts", + ); +} diff --git a/src/testRunner/unittests/helpers/resolutionCache.ts b/src/testRunner/unittests/helpers/resolutionCache.ts new file mode 100644 index 0000000000000..c764b56540c9a --- /dev/null +++ b/src/testRunner/unittests/helpers/resolutionCache.ts @@ -0,0 +1,454 @@ +import { emptyArray } from "../../_namespaces/ts.js"; +import { dedent } from "../../_namespaces/Utils.js"; +import { jsonToReadableText } from "../helpers.js"; +import { forEachPackageJsonScopeScenario } from "./packageJsonScope.js"; +import { solutionBuildWithBaseline } from "./solutionBuilder.js"; +import { TscWatchCompileChange } from "./tscWatch.js"; +import { TestServerHost } from "./virtualFileSystemWithWatch.js"; + +function getRandomFileContent() { + return "export const x = 10;"; +} +function getPkgPackageJsonContent(pkg: number) { + return jsonToReadableText({ + name: `pkg${pkg}`, + version: "0.0.1", + exports: { + import: "./import.js", + require: "./require.js", + }, + }); +} +function getPkgImportContent(type: "Import" | "Require", pkg: number) { + return `export interface ${type}Interface${pkg} {}`; +} +function getPkgTypeRefContent(type: "Import" | "Require", pkg: number) { + return dedent` + export {}; + declare global { + interface ${type}Interface${pkg} {} + } + `; +} + +function getPkg01ImportImportContent() { + return dedent` + import type { ImportInterface0 } from "pkg0"; + import type { ImportInterface1 } from "pkg1"; + `; +} + +function forEachResolutionCacheProjectWithImportsScenario( + forTsserver: boolean, + action: ResolutionCacheLifeTimeAction, +) { + action( + "project with imports", + () => + (!forTsserver ? TestServerHost.createWatchedSystem : TestServerHost.createServerHost)({ + "/home/src/workspaces/project/tsconfig.json": jsonToReadableText({ + compilerOptions: { traceResolution: true }, + include: ["*.ts"], + exclude: ["*.d.ts"], + }), + "/home/src/workspaces/project/main.ts": getRandomFileContent(), + "/home/src/workspaces/project/fileWithImports.ts": dedent` + import type { ImportInterface0 } from "pkg0" assert { "resolution-mode": "import" }; + import type { RequireInterface1 } from "pkg1" assert { "resolution-mode": "require" }; + `, + "/home/src/workspaces/project/randomFileForImport.ts": getRandomFileContent(), + "/home/src/workspaces/project/node_modules/pkg0/package.json": getPkgPackageJsonContent(0), + "/home/src/workspaces/project/node_modules/pkg0/import.d.ts": getPkgImportContent("Import", 0), + "/home/src/workspaces/project/node_modules/pkg0/require.d.ts": getPkgImportContent("Require", 0), + "/home/src/workspaces/project/node_modules/pkg1/package.json": getPkgPackageJsonContent(1), + "/home/src/workspaces/project/node_modules/pkg1/import.d.ts": getPkgImportContent("Import", 1), + "/home/src/workspaces/project/fileWithTypeRefs.ts": dedent` + /// + /// + interface LocalInterface extends ImportInterface2, RequireInterface3 {} + export {} + `, + "/home/src/workspaces/project/randomFileForTypeRef.ts": getRandomFileContent(), + "/home/src/workspaces/project/node_modules/pkg2/package.json": getPkgPackageJsonContent(2), + "/home/src/workspaces/project/node_modules/pkg2/import.d.ts": getPkgTypeRefContent("Import", 2), + "/home/src/workspaces/project/node_modules/pkg2/require.d.ts": getPkgTypeRefContent("Require", 2), + "/home/src/workspaces/project/node_modules/pkg3/package.json": getPkgPackageJsonContent(3), + "/home/src/workspaces/project/node_modules/pkg3/import.d.ts": getPkgTypeRefContent("Import", 3), + "/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts": getRandomFileContent(), + }, { currentDirectory: "/home/src/workspaces/project" }), + () => [ + { + caption: "modify randomFileForImport by adding import", + edit: sys => sys.prependFile("/home/src/workspaces/project/randomFileForImport.ts", `import type { ImportInterface0 } from "pkg0" assert { "resolution-mode": "import" };\n`), + timeouts: sys => sys.runQueuedTimeoutCallbacks(), + }, + { + caption: "modify randomFileForTypeRef by adding typeRef", + edit: sys => sys.prependFile("/home/src/workspaces/project/randomFileForTypeRef.ts", `/// \n`), + timeouts: sys => sys.runQueuedTimeoutCallbacks(), + }, + { + caption: "write file not resolved by import", + edit: sys => sys.writeFile("/home/src/workspaces/project/node_modules/pkg1/require.d.ts", getPkgImportContent("Require", 1)), + timeouts: sys => { + sys.runQueuedTimeoutCallbacks(); // failed lookup + sys.runQueuedTimeoutCallbacks(); // actual update + }, + }, + { + caption: "write file not resolved by typeRef", + edit: sys => sys.writeFile("/home/src/workspaces/project/node_modules/pkg3/require.d.ts", getPkgTypeRefContent("Require", 3)), + timeouts: sys => { + sys.runQueuedTimeoutCallbacks(); // failed lookup + sys.runQueuedTimeoutCallbacks(); // actual update + }, + }, + { + caption: "modify package.json and that should re-resolve", + edit: sys => sys.replaceFileText("/home/src/workspaces/project/node_modules/pkg1/package.json", "./require.js", "./require1.js"), + timeouts: sys => { + sys.runQueuedTimeoutCallbacks(); // failed lookup + sys.runQueuedTimeoutCallbacks(); // actual update + }, + }, + { + caption: "write file not resolved by import", + edit: sys => sys.writeFile("/home/src/workspaces/project/node_modules/pkg1/require1.d.ts", getPkgImportContent("Require", 1)), + timeouts: sys => { + sys.runQueuedTimeoutCallbacks(); // failed lookup + sys.runQueuedTimeoutCallbacks(); // actual update + }, + }, + { + caption: "delete file with imports", + edit: sys => sys.deleteFile("/home/src/workspaces/project/fileWithImports.ts"), + timeouts: sys => sys.runQueuedTimeoutCallbacks(), + }, + { + caption: "delete file with typeRefs", + edit: sys => sys.deleteFile("/home/src/workspaces/project/fileWithTypeRefs.ts"), + timeouts: sys => sys.runQueuedTimeoutCallbacks(), + }, + { + caption: "delete resolved import file", + edit: sys => sys.deleteFile("/home/src/workspaces/project/node_modules/pkg0/import.d.ts"), + timeouts: sys => sys.runQueuedTimeoutCallbacks(), + }, + { + caption: "delete resolved typeRef file", + edit: sys => sys.deleteFile("/home/src/workspaces/project/node_modules/pkg2/import.d.ts"), + timeouts: sys => sys.runQueuedTimeoutCallbacks(), + }, + ], + "/home/src/workspaces/project/tsconfig.json", + "/home/src/workspaces/project/main.ts", + ResolutionCacheLifeTimeScenarios.SingleProject, + ); +} + +function forEachResolutionCacheProjectWithMultiplePlacesImportsScenario( + forTsserver: boolean, + action: ResolutionCacheLifeTimeAction, +) { + action( + "project with multiple places imports", + () => + (!forTsserver ? TestServerHost.createWatchedSystem : TestServerHost.createServerHost)({ + "/home/src/workspaces/project/tsconfig.json": configFileContent(/*bBAFileWithImport*/ true), + "/home/src/workspaces/project/main.ts": getRandomFileContent(), + "/home/src/workspaces/project/fileWithImports.ts": getPkg01ImportImportContent(), + "/home/src/workspaces/project/randomFileForImport.ts": getRandomFileContent(), + "/home/src/workspaces/project/a/fileWithImports.ts": getPkg01ImportImportContent(), + "/home/src/workspaces/project/b/ba/fileWithImports.ts": getPkg01ImportImportContent(), + "/home/src/workspaces/project/b/randomFileForImport.ts": getRandomFileContent(), + "/home/src/workspaces/project/c/ca/fileWithImports.ts": getPkg01ImportImportContent(), + "/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts": getRandomFileContent(), + "/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts": getPkg01ImportImportContent(), + "/home/src/workspaces/project/c/cb/fileWithImports.ts": getPkg01ImportImportContent(), + "/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts": getRandomFileContent(), + "/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts": getPkg01ImportImportContent(), + "/home/src/workspaces/project/d/da/daa/fileWithImports.ts": getPkg01ImportImportContent(), + "/home/src/workspaces/project/d/da/fileWithImports.ts": getPkg01ImportImportContent(), + "/home/src/workspaces/project/e/ea/fileWithImports.ts": getPkg01ImportImportContent(), + "/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts": getPkg01ImportImportContent(), + "/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts": getPkg01ImportImportContent(), + "/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts": getRandomFileContent(), + "/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts": getPkg01ImportImportContent(), + "/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts": getRandomFileContent(), + "/home/src/workspaces/project/node_modules/pkg0/index.d.ts": getPkgImportContent("Import", 0), + }, { currentDirectory: "/home/src/workspaces/project" }), + () => [ + { + caption: "modify randomFileForImport by adding import", + edit: sys => sys.prependFile("/home/src/workspaces/project/randomFileForImport.ts", `import type { ImportInterface0 } from "pkg0";\n`), + timeouts: sys => sys.runQueuedTimeoutCallbacks(), + }, + { + caption: "modify b/randomFileForImport by adding import", + edit: sys => sys.prependFile("/home/src/workspaces/project/b/randomFileForImport.ts", `import type { ImportInterface0 } from "pkg0";\n`), + timeouts: sys => sys.runQueuedTimeoutCallbacks(), + }, + { + caption: "modify c/ca/caa/randomFileForImport by adding import", + edit: sys => sys.prependFile("/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts", `import type { ImportInterface0 } from "pkg0";\n`), + timeouts: sys => sys.runQueuedTimeoutCallbacks(), + }, + { + caption: "modify d/da/daa/daaa/x/y/z/randomFileForImport by adding import", + edit: sys => sys.prependFile("/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts", `import type { ImportInterface0 } from "pkg0";\n`), + timeouts: sys => sys.runQueuedTimeoutCallbacks(), + }, + { + caption: "modify e/ea/eaa/eaaa/x/y/z/randomFileForImport by adding import", + edit: sys => sys.prependFile("/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts", `import type { ImportInterface0 } from "pkg0";\n`), + timeouts: sys => sys.runQueuedTimeoutCallbacks(), + }, + { + caption: "modify randomFileForImport by adding unresolved import", + edit: sys => sys.prependFile("/home/src/workspaces/project/randomFileForImport.ts", `import type { ImportInterface1 } from "pkg1";\n`), + timeouts: sys => sys.runQueuedTimeoutCallbacks(), + }, + { + caption: "modify b/randomFileForImport by adding unresolved import", + edit: sys => sys.prependFile("/home/src/workspaces/project/b/randomFileForImport.ts", `import type { ImportInterface1 } from "pkg1";\n`), + timeouts: sys => sys.runQueuedTimeoutCallbacks(), + }, + { + caption: "modify c/ca/caa/randomFileForImport by adding unresolved import", + edit: sys => sys.prependFile("/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts", `import type { ImportInterface1 } from "pkg1";\n`), + timeouts: sys => sys.runQueuedTimeoutCallbacks(), + }, + { + caption: "modify d/da/daa/daaa/x/y/z/randomFileForImport by adding unresolved import", + edit: sys => sys.prependFile("/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts", `import type { ImportInterface1 } from "pkg1";\n`), + timeouts: sys => sys.runQueuedTimeoutCallbacks(), + }, + { + caption: "modify e/ea/eaa/eaaa/x/y/z/randomFileForImport by adding unresolved import", + edit: sys => sys.prependFile("/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts", `import type { ImportInterface1 } from "pkg1";\n`), + timeouts: sys => sys.runQueuedTimeoutCallbacks(), + }, + { + caption: "modify f/fa/faa/x/y/z/randomFileForImport by adding import", + edit: sys => sys.prependFile("/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts", `import type { ImportInterface0 } from "pkg0";\n`), + timeouts: sys => sys.runQueuedTimeoutCallbacks(), + }, + { + caption: "modify f/fa/faa/x/y/z/randomFileForImport by adding unresolved import", + edit: sys => sys.prependFile("/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts", `import type { ImportInterface1 } from "pkg1";\n`), + timeouts: sys => sys.runQueuedTimeoutCallbacks(), + }, + { + caption: "add file for unresolved import and random edit", + edit: sys => { + sys.ensureFileOrFolder({ + path: "/home/src/workspaces/project/node_modules/pkg1/index.d.ts", + content: getPkgImportContent("Import", 1), + }); + sys.appendFile("/home/src/workspaces/project/randomFileForImport.ts", `export const y = 10;`); + }, + timeouts: sys => { + sys.runQueuedTimeoutCallbacks(); // Failed lookups + sys.runQueuedTimeoutCallbacks(); // actual update + }, + }, + { + caption: "delete file b/ba/fileWithImports.ts", + edit: sys => { + sys.deleteFile("/home/src/workspaces/project/b/ba/fileWithImports.ts"); + sys.writeFile("/home/src/workspaces/project/tsconfig.json", configFileContent(/*bBAFileWithImport*/ false)); + }, + timeouts: sys => sys.runQueuedTimeoutCallbacks(), + }, + ], + "/home/src/workspaces/project/tsconfig.json", + "/home/src/workspaces/project/main.ts", + ResolutionCacheLifeTimeScenarios.SingleProjectWithMultiplePlacesResolutions, + ); + + function configFileContent(bBAFileWithImport: boolean) { + return jsonToReadableText({ + compilerOptions: { traceResolution: true }, + files: [ + "main.ts", + "fileWithImports.ts", + "randomFileForImport.ts", + "a/fileWithImports.ts", + ...(bBAFileWithImport ? ["b/ba/fileWithImports.ts"] : emptyArray), + "b/randomFileForImport.ts", + "c/ca/fileWithImports.ts", + "c/ca/caa/randomFileForImport.ts", + "c/ca/caa/caaa/fileWithImports.ts", + "c/cb/fileWithImports.ts", + "d/da/daa/daaa/x/y/z/randomFileForImport.ts", + "d/da/daa/daaa/fileWithImports.ts", + "d/da/daa/fileWithImports.ts", + "d/da/fileWithImports.ts", + "e/ea/fileWithImports.ts", + "e/ea/eaa/fileWithImports.ts", + "e/ea/eaa/eaaa/fileWithImports.ts", + "e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts", + "f/fa/faa/x/y/z/randomFileForImport.ts", + "f/fa/faa/faaa/fileWithImports.ts", + ], + }); + } +} + +function getSysForResolutionCacheMultipleProjects(forTsserver: boolean) { + const sys = (!forTsserver ? TestServerHost.createWatchedSystem : TestServerHost.createServerHost)({ + "/home/src/workspaces/project/tsconfig.a.json": jsonToReadableText({ + compilerOptions: { + composite: true, + traceResolution: true, + }, + files: [ + "aMain.ts", + "aFileWithImports.ts", + "aRandomFileForImport.ts", + "aRandomFileForImport2.ts", + ], + }), + "/home/src/workspaces/project/aMain.ts": getRandomFileContent(), + "/home/src/workspaces/project/aFileWithImports.ts": dedent` + import type { ImportInterface0 } from "pkg0"; + export { x } from "./aRandomFileForImport"; + export { x as x2 } from "./aRandomFileForImport2"; + export const y = 10; + `, + "/home/src/workspaces/project/aRandomFileForImport.ts": getRandomFileContent(), + "/home/src/workspaces/project/aRandomFileForImport2.ts": getRandomFileContent(), + "/home/src/workspaces/project/node_modules/pkg0/index.d.ts": getPkgImportContent("Import", 0), + "/home/src/workspaces/project/tsconfig.b.json": jsonToReadableText({ + compilerOptions: { + composite: true, + traceResolution: true, + }, + files: [ + "bMain.ts", + "bFileWithImports.ts", + "bRandomFileForImport.ts", + "bRandomFileForImport2.ts", + ], + references: [ + { path: "./tsconfig.a.json" }, + ], + }), + "/home/src/workspaces/project/bMain.ts": getRandomFileContent(), + "/home/src/workspaces/project/bFileWithImports.ts": dedent` + export { y } from "./aFileWithImports"; + export { x } from "./bRandomFileForImport"; + import type { ImportInterface0 } from "pkg0"; + `, + "/home/src/workspaces/project/bRandomFileForImport.ts": getRandomFileContent(), + "/home/src/workspaces/project/bRandomFileForImport2.ts": getRandomFileContent(), + "/home/src/workspaces/project/tsconfig.json": jsonToReadableText({ + compilerOptions: { + composite: true, + traceResolution: true, + module: "amd", + }, + files: [ + "cMain.ts", + "cFileWithImports.ts", + "cRandomFileForImport.ts", + "cRandomFileForImport2.ts", + ], + references: [ + { path: "./tsconfig.a.json" }, + { path: "./tsconfig.b.json" }, + ], + }), + "/home/src/workspaces/project/cMain.ts": getRandomFileContent(), + "/home/src/workspaces/project/cFileWithImports.ts": dedent` + import { y } from "./bFileWithImports"; + import type { ImportInterface0 } from "pkg0"; + `, + "/home/src/workspaces/project/cRandomFileForImport.ts": getRandomFileContent(), + "/home/src/workspaces/project/cRandomFileForImport2.ts": getRandomFileContent(), + "/home/src/workspaces/project/pkg0.d.ts": getPkgImportContent("Import", 0), + }, { currentDirectory: "/home/src/workspaces/project" }); + solutionBuildWithBaseline(sys, ["/home/src/workspaces/project"]); + return sys; +} + +function forEachResolutionCacheMultipleProjectsScenario( + forTsserver: boolean, + action: ResolutionCacheLifeTimeAction, +) { + [ + { + project: "/home/src/workspaces/project/tsconfig.b.json", + mainFile: "/home/src/workspaces/project/bMain.ts", + file: "bRandomFileForImport", + }, + { + project: "/home/src/workspaces/project/tsconfig.json", + mainFile: "/home/src/workspaces/project/cMain.ts", + file: "cRandomFileForImport", + }, + ].forEach( + ({ project, mainFile, file }) => + action( + `multiple projects${mainFile.endsWith("cMain.ts") ? " with redirect options" : ""}`, + () => getSysForResolutionCacheMultipleProjects(forTsserver), + () => [ + { + caption: `modify ${file} by adding import`, + edit: sys => sys.prependFile(`/home/src/workspaces/project/${file}.ts`, `export type { ImportInterface0 } from "pkg0";\n`), + timeouts: sys => sys.runQueuedTimeoutCallbacks(), + }, + ], + project, + mainFile, + ResolutionCacheLifeTimeScenarios.MultipleProjects, + ), + ); +} + +export enum ResolutionCacheLifeTimeScenarios { + SingleProject, + MultipleProjects, + SingleProjectWithMultiplePlacesResolutions, + SingleProjectWithPackageJsonEdits, +} + +export type ResolutionCacheLifeTimeAction = ( + scenario: string, + sys: () => TestServerHost, + edits: () => readonly TscWatchCompileChange[], + project: string, + mainFile: string, + kind: ResolutionCacheLifeTimeScenarios, +) => void; +export function forEachResolutionCacheLifeTimeScenario( + forTsserver: boolean, + action: ResolutionCacheLifeTimeAction, +): void { + describe("resolutionCache:: on project with imports sharing", () => { + forEachResolutionCacheProjectWithImportsScenario(forTsserver, action); + }); + + describe("resolutionCache:: resolutions are shared from multiple places", () => { + forEachResolutionCacheProjectWithMultiplePlacesImportsScenario(forTsserver, action); + }); + + describe("resolutionCache:: with multiple projects", () => { + forEachResolutionCacheMultipleProjectsScenario(forTsserver, action); + }); + + describe("resolutionCache:: with package json edits", () => { + forEachPackageJsonScopeScenario( + forTsserver, + (scenario, sys, edits, project, mainFile) => + action( + scenario, + sys, + edits, + project, + mainFile, + ResolutionCacheLifeTimeScenarios.SingleProjectWithPackageJsonEdits, + ), + ); + }); +} diff --git a/src/testRunner/unittests/helpers/tscWatch.ts b/src/testRunner/unittests/helpers/tscWatch.ts index 2e6dbc2b8c970..0cbbdd91db96f 100644 --- a/src/testRunner/unittests/helpers/tscWatch.ts +++ b/src/testRunner/unittests/helpers/tscWatch.ts @@ -133,6 +133,7 @@ export interface RunWatchBaseline extends BaselineB getPrograms: () => readonly CommandLineProgram[]; watchOrSolution: WatchOrSolution; useSourceOfProjectReferenceRedirect?: () => boolean; + userResolvedModuleNames?: true; } export function runWatchBaseline({ scenario, @@ -146,6 +147,7 @@ export function runWatchBaseline): void { baseline.push(`${sys.getExecutingFilePath()} ${commandLineArgs.join(" ")}`); let programs = watchBaseline({ @@ -171,6 +173,7 @@ export function runWatchBaseline | undefined)?.getResolutionCache?.(), useSourceOfProjectReferenceRedirect, + userResolvedModuleNames, }); } } @@ -183,6 +186,7 @@ export interface WatchBaseline extends BaselineBase, TscWatchCheckOptions { caption?: string; resolutionCache?: ts.ResolutionCache; useSourceOfProjectReferenceRedirect?: () => boolean; + userResolvedModuleNames?: true; } export function watchBaseline({ baseline, @@ -194,6 +198,7 @@ export function watchBaseline({ caption, resolutionCache, useSourceOfProjectReferenceRedirect, + userResolvedModuleNames, }: WatchBaseline): readonly CommandLineProgram[] { const programs = baselineAfterTscCompile( sys, @@ -213,6 +218,7 @@ export function watchBaseline({ programs[0][0], resolutionCache, useSourceOfProjectReferenceRedirect, + userResolvedModuleNames, ); } return programs; @@ -222,7 +228,8 @@ function verifyProgramStructureAndResolutionCache( sys: TscWatchSystem, program: ts.Program, resolutionCache: ts.ResolutionCache, - useSourceOfProjectReferenceRedirect?: () => boolean, + useSourceOfProjectReferenceRedirect: (() => boolean) | undefined, + userResolvedModuleNames: true | undefined, ) { const options = program.getCompilerOptions(); const compilerHost = ts.createCompilerHostWorker(options, /*setParentNodes*/ undefined, sys); @@ -238,26 +245,33 @@ function verifyProgramStructureAndResolutionCache( }), program, caption, + /*globalTypingsCacheLocation*/ undefined, + userResolvedModuleNames, ); - verifyResolutionCache(resolutionCache, program, { - ...compilerHost, - - getCompilerHost: () => compilerHost, - toPath: fileName => sys.toPath(fileName), - getCompilationSettings: () => options, - fileIsOpen: ts.returnFalse, - getCurrentProgram: () => program, - preferNonRecursiveWatch: sys.preferNonRecursiveWatch, + verifyResolutionCache( + resolutionCache, + program, + { + ...compilerHost, + getCompilerHost: () => compilerHost, + toPath: fileName => sys.toPath(fileName), + getCompilationSettings: () => options, + fileIsOpen: ts.returnFalse, + getCurrentProgram: () => program, + preferNonRecursiveWatch: sys.preferNonRecursiveWatch, - watchDirectoryOfFailedLookupLocation: ts.returnNoopFileWatcher, - watchAffectingFileLocation: ts.returnNoopFileWatcher, - onInvalidatedResolution: ts.noop, - watchTypeRootsDirectory: ts.returnNoopFileWatcher, - onChangedAutomaticTypeDirectiveNames: ts.noop, - scheduleInvalidateResolutionsOfFailedLookupLocations: ts.noop, - getCachedDirectoryStructureHost: ts.returnUndefined, - writeLog: ts.noop, - }, caption); + watchDirectoryOfFailedLookupLocation: ts.returnNoopFileWatcher, + watchAffectingFileLocation: ts.returnNoopFileWatcher, + onInvalidatedResolution: ts.noop, + watchTypeRootsDirectory: ts.returnNoopFileWatcher, + onChangedAutomaticTypeDirectiveNames: ts.noop, + scheduleInvalidateResolutionsOfFailedLookupLocations: ts.noop, + getCachedDirectoryStructureHost: ts.returnUndefined, + writeLog: ts.noop, + }, + caption, + userResolvedModuleNames, + ); } export interface VerifyTscWatch extends TscWatchCompile { baselineIncremental?: boolean; diff --git a/src/testRunner/unittests/tsc/moduleResolution.ts b/src/testRunner/unittests/tsc/moduleResolution.ts index e44fc7936487a..1ab80631eba87 100644 --- a/src/testRunner/unittests/tsc/moduleResolution.ts +++ b/src/testRunner/unittests/tsc/moduleResolution.ts @@ -7,6 +7,7 @@ import { dedent } from "../../_namespaces/Utils.js"; import { jsonToReadableText } from "../helpers.js"; import { verifyAlternateResultScenario } from "../helpers/alternateResult.js"; import { compilerOptionsToConfigJson } from "../helpers/contents.js"; +import { forEachPackageJsonScopeScenario } from "../helpers/packageJsonScope.js"; import { verifyTsc } from "../helpers/tsc.js"; import { TestServerHost } from "../helpers/virtualFileSystemWithWatch.js"; @@ -200,4 +201,16 @@ describe("unittests:: tsc:: moduleResolution::", () => { }, ], }); + + forEachPackageJsonScopeScenario( + /*forTsserver*/ false, + (subScenario, sys, edits, project) => + verifyTsc({ + scenario: "moduleResolution", + subScenario, + sys, + commandLineArgs: ["-p", project, "--explainFiles", "--extendedDiagnostics"], + edits: edits(), + }), + ); }); diff --git a/src/testRunner/unittests/tscWatch/resolutionCache.ts b/src/testRunner/unittests/tscWatch/resolutionCache.ts index 267ef8cb5c4ed..c731c2bcc5c59 100644 --- a/src/testRunner/unittests/tscWatch/resolutionCache.ts +++ b/src/testRunner/unittests/tscWatch/resolutionCache.ts @@ -2,6 +2,7 @@ import * as ts from "../../_namespaces/ts.js"; import { dedent } from "../../_namespaces/Utils.js"; import { jsonToReadableText } from "../helpers.js"; import { createBaseline } from "../helpers/baseline.js"; +import { forEachResolutionCacheLifeTimeScenario } from "../helpers/resolutionCache.js"; import { createWatchCompilerHostOfFilesAndCompilerOptionsForBaseline, runWatchBaseline, @@ -758,3 +759,17 @@ declare namespace NodeJS { ], }); }); + +describe("unittests:: tsc-watch:: resolutionCache:: resolution lifetime", () => { + forEachResolutionCacheLifeTimeScenario( + /*forTsserver*/ false, + (subScenario, sys, edits, project) => + verifyTscWatch({ + scenario: "resolutionCache", + subScenario, + commandLineArgs: ["-w", "-p", project, "--explainFiles", "--extendedDiagnostics"], + sys, + edits: edits(), + }), + ); +}); diff --git a/src/testRunner/unittests/tscWatch/watchApi.ts b/src/testRunner/unittests/tscWatch/watchApi.ts index e0f877db4f68c..31f907c6df0e6 100644 --- a/src/testRunner/unittests/tscWatch/watchApi.ts +++ b/src/testRunner/unittests/tscWatch/watchApi.ts @@ -118,6 +118,7 @@ describe("unittests:: tscWatch:: watchAPI:: tsc-watch with custom module resolut }, ], watchOrSolution: watch, + userResolvedModuleNames: true, }); }); } diff --git a/src/testRunner/unittests/tsserver/resolutionCache.ts b/src/testRunner/unittests/tsserver/resolutionCache.ts index 2f0a8f9e42432..da2fad9cf4c36 100644 --- a/src/testRunner/unittests/tsserver/resolutionCache.ts +++ b/src/testRunner/unittests/tsserver/resolutionCache.ts @@ -5,8 +5,13 @@ import { compilerOptionsToConfigJson, getPathForTypeScriptTypingInstallerCacheTest, } from "../helpers/contents.js"; +import { + forEachResolutionCacheLifeTimeScenario, + ResolutionCacheLifeTimeScenarios, +} from "../helpers/resolutionCache.js"; import { baselineTsserverLogs, + forEachTscWatchEdit, openExternalProjectForSession, openFilesForSession, setCompilerOptionsForInferredProjectsRequestForSession, @@ -749,3 +754,32 @@ describe("unittests:: tsserver:: resolutionCache:: global typings and inferred p ); } }); +describe("unittests:: tsserver:: resolutionCache:: resolution lifetime", () => { + forEachResolutionCacheLifeTimeScenario( + /*forTsserver*/ true, + (scenario, getHost, edits, _project, mainFile, kind) => + it(scenario, () => { + const host = getHost(); + const session = new TestSession(host); + openFilesForSession([mainFile], session); + forEachTscWatchEdit(session, edits(), ts.noop); + if (kind === ResolutionCacheLifeTimeScenarios.MultipleProjects) { + // Try opening other project files + applyOtherFileEdits( + mainFile.endsWith("cMain.ts") ? + mainFile.replace("cMain.ts", "bMain.ts") : + mainFile.replace("bMain.ts", "cMain.ts"), + mainFile.endsWith("cMain.ts") ? "bRandomFileForImport" : "cRandomFileForImport", + ); + applyOtherFileEdits("/home/src/workspaces/project/aMain.ts", "aRandomFileForImport"); + } + baselineTsserverLogs("resolutionCache", scenario, session); + function applyOtherFileEdits(mainFile: string, file: string) { + openFilesForSession([mainFile], session); + session.logger.info(`modify ${file} by adding import`); + host.prependFile(`/home/src/workspaces/project/${file}.ts`, `export type { ImportInterface0 } from "pkg0";\n`); + host.runQueuedTimeoutCallbacks(); + } + }), + ); +}); diff --git a/src/testRunner/unittests/tsserver/typeAquisition.ts b/src/testRunner/unittests/tsserver/typeAquisition.ts index 64c992d4e15c9..752b663413e6f 100644 --- a/src/testRunner/unittests/tsserver/typeAquisition.ts +++ b/src/testRunner/unittests/tsserver/typeAquisition.ts @@ -1,3 +1,4 @@ +import { emptyArray } from "../../_namespaces/ts.js"; import { jsonToReadableText } from "../helpers.js"; import { getPathForTypeScriptTypingInstallerCacheTest } from "../helpers/contents.js"; import { @@ -7,6 +8,7 @@ import { TestSession, toExternalFile, } from "../helpers/tsserver.js"; +import { FileWithPackageName } from "../helpers/typingsInstaller.js"; import { TestServerHost } from "../helpers/virtualFileSystemWithWatch.js"; describe("unittests:: tsserver:: typeAquisition:: autoDiscovery", () => { @@ -58,3 +60,183 @@ describe("unittests:: tsserver:: typeAquisition:: prefer typings to js", () => { baselineTsserverLogs("typeAquisition", "prefer typings in second pass", session); }); }); + +describe("unittests:: tsserver:: typeAquisition:: changes", () => { + enum TestType { + Single = "", + MultiProject = " multiple projects", + ProjectWithSharedResolution = " multiple projects with shared resolution", + } + [TestType.Single, TestType.MultiProject, TestType.ProjectWithSharedResolution].forEach(testType => { + it(scenario("changes to typeAquisition with already aquired typing", testType), () => { + const { session, verifyTypeAcquisition } = setup( + testType, + /*hostHasBarTyping*/ true, + /*enabledTypeAquisition*/ true, + ); + verifyTypeAcquisition(/*enable*/ false); + verifyTypeAcquisition(/*enable*/ true); + baselineTsserverLogs("typeAquisition", scenario("changes to typeAquisition with already aquired typing", testType), session); + }); + + it(scenario("changes to typeAquisition when typing installer installs typing", testType), () => { + const { session, verifyTypeAcquisition, verifyPendingInstalls } = setup( + testType, + /*hostHasBarTyping*/ false, + /*enabledTypeAquisition*/ true, + ); + verifyPendingInstalls(); + verifyTypeAcquisition(/*enable*/ false); + verifyTypeAcquisition(/*enable*/ true); + baselineTsserverLogs("typeAquisition", scenario("changes to typeAquisition when typing installer installs typing", testType), session); + }); + + it(scenario("midway changes to typeAquisition when typing installer installs typing", testType), () => { + const { host, session, verifyTypeAcquisition } = setup( + testType, + /*hostHasBarTyping*/ false, + /*enabledTypeAquisition*/ true, + ); + host.runPendingInstalls(); + verifyTypeAcquisition(/*enable*/ false); + verifyTypeAcquisition(/*enable*/ true); + baselineTsserverLogs("typeAquisition", scenario("midway changes to typeAquisition when typing installer installs typing", testType), session); + }); + + it(scenario("receives update of typings after project changes", testType), () => { + const { session, verifyTypeAcquisition, verifyPendingInstalls } = setup( + testType, + /*hostHasBarTyping*/ false, + /*enabledTypeAquisition*/ true, + ); + verifyTypeAcquisition(/*enable*/ false); + verifyPendingInstalls(); + verifyTypeAcquisition(/*enable*/ true); + baselineTsserverLogs("typeAquisition", scenario("receives update of typings after project changes", testType), session); + }); + + it(scenario("change after enabling typeAquisition", testType), () => { + const { session, verifyTypeAcquisition, verifyPendingInstalls } = setup( + testType, + /*hostHasBarTyping*/ true, + /*enabledTypeAquisition*/ false, + ); + verifyTypeAcquisition(/*enable*/ true); + verifyPendingInstalls(); + baselineTsserverLogs("typeAquisition", scenario("change after enabling typeAquisition", testType), session); + }); + + it(scenario("enabled typeAquisition", testType), () => { + const { session, verifyPendingInstalls } = setup( + testType, + /*hostHasBarTyping*/ false, + /*enabledTypeAquisition*/ true, + ); + verifyPendingInstalls(); + baselineTsserverLogs("typeAquisition", scenario("enabled typeAquisition", testType), session); + }); + + it(scenario("disabled typeAquisition", testType), () => { + const { session, verifyPendingInstalls } = setup( + testType, + /*hostHasBarTyping*/ false, + /*enabledTypeAquisition*/ false, + ); + verifyPendingInstalls(); + baselineTsserverLogs("typeAquisition", scenario("disabled typeAquisition", testType), session); + }); + }); + + function scenario(name: string, testType: TestType) { + return `${name}${testType}`; + } + + function setup( + testType: TestType, + hostHasBarTyping: boolean, + enabledTypeAquisition: boolean, + ) { + const host = TestServerHost.createServerHost({ + "/users/user/projects/project1/app.js": `var x = require('bar');`, + [ + testType !== TestType.ProjectWithSharedResolution ? + "/users/user/projects/project1/node_modules/bar/index.js" : + "/users/user/projects/node_modules/bar/index.js" + ]: "export const x = 1", + ...( + testType ? + { + "/users/user/projects/project2/app.js": `var x = require('bar');`, + "/users/user/projects/project2/app2.js": `var x = require('foo');`, + "/users/user/projects/project2/jsconfig.json": config(/*enabledTypeAquisition*/ true), + "/users/user/projects/project3/app.js": `var x = require('bar');`, + "/users/user/projects/project3/app2.js": `var x = require('foo');`, + "/users/user/projects/project3/jsconfig.json": config(/*enabledTypeAquisition*/ false), + [getPathForTypeScriptTypingInstallerCacheTest("/node_modules/@types/foo/index.d.ts")]: "export const foo = 1;", + } : + {} + ), + ...( + testType === TestType.MultiProject ? + { + "/users/user/projects/project2/node_modules/bar/index.js": "export const x = 1", + "/users/user/projects/project3/node_modules/bar/index.js": "export const x = 1", + } : + {} + ), + }, { typingsInstallerTypesRegistry: testType ? ["bar", "foo"] : "bar" }); + typeAcquisition(enabledTypeAquisition); + const barTyping: FileWithPackageName = { + path: getPathForTypeScriptTypingInstallerCacheTest("/node_modules/@types/bar/index.d.ts"), + content: "export const x = 1;", + package: "bar", + }; + if (hostHasBarTyping) host.ensureFileOrFolder(barTyping); + const session = new TestSession({ + host, + installAction: [barTyping], + }); + openFilesForSession([ + "/users/user/projects/project1/app.js", + ...( + testType ? + [ + "/users/user/projects/project2/app.js", + "/users/user/projects/project3/app.js", + ] : + emptyArray + ), + ], session); + return { host, session, verifyTypeAcquisition, verifyPendingInstalls }; + + function typeAcquisition(enable: boolean) { + host.writeFile("/users/user/projects/project1/jsconfig.json", config(enable)); + } + + function config(enabledTypeAquisition: boolean) { + return jsonToReadableText({ + compilerOptions: { + allowJs: true, + traceResolution: true, + }, + typeAcquisition: enabledTypeAquisition ? undefined : { enable: false }, + }); + } + + function verifyTypeAcquisition(enable: boolean) { + typeAcquisition(enable); + timeouts(); + } + + function verifyPendingInstalls() { + host.runPendingInstalls(); + timeouts(); + } + + function timeouts() { + host.runQueuedTimeoutCallbacks(); + host.runQueuedTimeoutCallbacks(); + host.runQueuedTimeoutCallbacks(); + } + } +}); diff --git a/src/testRunner/unittests/tsserver/typingsInstaller.ts b/src/testRunner/unittests/tsserver/typingsInstaller.ts index 743d5d9c071d2..5d0af0132cfca 100644 --- a/src/testRunner/unittests/tsserver/typingsInstaller.ts +++ b/src/testRunner/unittests/tsserver/typingsInstaller.ts @@ -2410,8 +2410,6 @@ describe("unittests:: tsserver:: typingsInstaller:: recomputing resolutions of u }, }); host.runQueuedTimeoutCallbacks(); // Update the graph - // Update the typing - assert.isFalse(proj.resolutionCache.isFileWithInvalidatedNonRelativeUnresolvedImports(app.path as ts.Path)); baselineTsserverLogs("typingsInstaller", scenario, session); } @@ -2515,9 +2513,7 @@ declare module "stream" { }, }); proj.updateGraph(); // Update the graph - // Update the typing session.host.baselineHost("After program update"); - assert.isFalse(proj.resolutionCache.isFileWithInvalidatedNonRelativeUnresolvedImports(file.path as ts.Path)); baselineTsserverLogs("typingsInstaller", "should handle node core modules", session); }); }); diff --git a/src/typingsInstallerCore/typingsInstaller.ts b/src/typingsInstallerCore/typingsInstaller.ts index ce9c607b83c02..f6fc608fd714f 100644 --- a/src/typingsInstallerCore/typingsInstaller.ts +++ b/src/typingsInstallerCore/typingsInstaller.ts @@ -487,7 +487,7 @@ export abstract class TypingsInstaller { const existing = this.projectWatchers.get(projectName); const newSet = new Set(files); - if (!existing || forEachKey(newSet, s => !existing.has(s)) || forEachKey(existing, s => !newSet.has(s))) { + if (!existing || newSet.size !== existing.size || forEachKey(newSet, s => !existing.has(s)) || forEachKey(existing, s => !newSet.has(s))) { this.projectWatchers.set(projectName, newSet); this.sendResponse({ kind: ActionWatchTypingLocations, projectName, files }); } diff --git a/tests/baselines/reference/api/typescript.d.ts b/tests/baselines/reference/api/typescript.d.ts index 9264a82e4b0a3..c2a6a5f1706d8 100644 --- a/tests/baselines/reference/api/typescript.d.ts +++ b/tests/baselines/reference/api/typescript.d.ts @@ -2862,6 +2862,7 @@ declare namespace ts { private externalFiles; private missingFilesMap; private generatedFilesMap; + private recordChangesToUnresolvedImports; private hasAddedorRemovedFiles; private hasAddedOrRemovedSymlinks; protected languageService: LanguageService; @@ -2982,6 +2983,7 @@ declare namespace ts { */ class InferredProject extends Project { private _isJsInferredProject; + private inferredTypeAcquisition; toggleJsInferredProject(isJsInferredProject: boolean): void; setCompilerOptions(options?: CompilerOptions): void; /** this is canonical project root path */ @@ -2990,6 +2992,7 @@ declare namespace ts { removeRoot(info: ScriptInfo): void; isProjectWithSingleRoot(): boolean; close(): void; + setTypeAcquisition(newTypeAcquisition: ts.TypeAcquisition | undefined): void; getTypeAcquisition(): TypeAcquisition; } class AutoImportProviderProject extends Project { diff --git a/tests/baselines/reference/canWatch/getDirectoryToWatchFailedLookupLocationFromTypeRootDos.baseline.md b/tests/baselines/reference/canWatch/getDirectoryToWatchFailedLookupLocationFromTypeRootDos.baseline.md deleted file mode 100644 index 446f9c9d7c008..0000000000000 --- a/tests/baselines/reference/canWatch/getDirectoryToWatchFailedLookupLocationFromTypeRootDos.baseline.md +++ /dev/null @@ -1,2215 +0,0 @@ -# getDirectoryToWatchFailedLookupLocationFromTypeRoot - -When watched typeRoot handler is invoked, this method determines the directory for which the failedLookupLocation would need to be invalidated. -Since this is invoked only when watching default typeRoot and is used to handle flaky directory watchers, this is used as a fail safe where if failed lookup starts with returned directory we will invalidate that resolution. - -## Testing for Dos root: c:/ - -## RootDirForResolution: c:/ - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1 | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1 | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1 | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1 | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1 | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2 | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2 | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2 | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2 | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3 | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3 | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3 | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4 | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4 | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/users - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/users/username - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/users/username/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/users/username/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1 | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1 | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1 | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1 | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1 | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/users/username/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2 | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2 | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2 | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2 | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/users/username/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3 | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3 | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3 | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/user - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/user/username - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/user/username/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/user/username/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1 | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1 | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1 | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1 | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1 | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/user/username/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2 | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2 | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2 | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2 | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/user/username/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3 | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3 | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3 | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/usr - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/usr/username - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/usr/username/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/usr/username/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1 | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1 | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1 | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1 | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1 | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/usr/username/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2 | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2 | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2 | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2 | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/usr/username/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3 | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3 | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3 | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/home - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/home/username - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/home/username/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/home/username/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1 | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1 | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1 | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1 | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1 | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/home/username/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2 | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2 | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2 | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2 | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/home/username/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3 | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3 | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3 | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/workspaces - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/workspaces/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot | - -## RootDirForResolution: c:/workspaces/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1 | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1 | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1 | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1 | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1 | - -## RootDirForResolution: c:/workspaces/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2 | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2 | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2 | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2 | - -## RootDirForResolution: c:/workspaces/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3 | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3 | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3 | - -## RootDirForResolution: c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4 | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4 | - -## RootDirForResolution: c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | - diff --git a/tests/baselines/reference/canWatch/getDirectoryToWatchFailedLookupLocationFromTypeRootNonRecursiveDos.baseline.md b/tests/baselines/reference/canWatch/getDirectoryToWatchFailedLookupLocationFromTypeRootNonRecursiveDos.baseline.md deleted file mode 100644 index 9eb453ae41821..0000000000000 --- a/tests/baselines/reference/canWatch/getDirectoryToWatchFailedLookupLocationFromTypeRootNonRecursiveDos.baseline.md +++ /dev/null @@ -1,2215 +0,0 @@ -# getDirectoryToWatchFailedLookupLocationFromTypeRootNonRecursive - -When watched typeRoot handler is invoked, this method determines the directory for which the failedLookupLocation would need to be invalidated. -Since this is invoked only when watching default typeRoot and is used to handle flaky directory watchers, this is used as a fail safe where if failed lookup starts with returned directory we will invalidate that resolution. - -## Testing for Dos root: c:/ - -## RootDirForResolution: c:/ - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1 | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1 | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1 | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1 | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1 | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2 | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2 | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2 | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2 | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3 | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3 | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3 | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4 | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4 | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/users - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/users/username - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/users/username/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/users/username/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1 | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1 | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1 | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1 | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1 | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/users/username/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2 | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2 | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2 | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2 | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/users/username/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3 | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3 | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3 | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/user - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/user/username - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/user/username/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/user/username/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1 | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1 | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1 | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1 | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1 | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/user/username/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2 | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2 | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2 | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2 | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/user/username/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3 | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3 | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3 | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/usr - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/usr/username - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/usr/username/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/usr/username/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1 | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1 | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1 | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1 | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1 | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/usr/username/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2 | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2 | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2 | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2 | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/usr/username/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3 | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3 | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3 | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/home - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/home/username - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/home/username/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/home/username/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1 | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1 | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1 | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1 | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1 | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/home/username/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2 | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2 | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2 | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2 | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/home/username/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3 | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3 | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3 | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/workspaces - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: c:/workspaces/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot | - -## RootDirForResolution: c:/workspaces/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1 | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1 | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1 | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1 | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1 | - -## RootDirForResolution: c:/workspaces/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2 | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2 | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2 | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2 | - -## RootDirForResolution: c:/workspaces/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3 | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3 | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3 | - -## RootDirForResolution: c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4 | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4 | - -## RootDirForResolution: c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -| c:/folderAtRoot/node_modules/@types | c:/folderAtRoot/node_modules | -| c:/folderAtRoot/folder1/node_modules/@types | c:/folderAtRoot/folder1/node_modules | -| c:/folderAtRoot/folder1/folder2/node_modules/@types | c:/folderAtRoot/folder1/folder2/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/users/username/folderAtRoot/node_modules/@types | c:/users/username/folderAtRoot/node_modules | -| c:/users/username/folderAtRoot/folder1/node_modules/@types | c:/users/username/folderAtRoot/folder1/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/user/node_modules/@types | c:/user/node_modules | -| c:/user/username/node_modules/@types | c:/user/username/node_modules | -| c:/user/username/folderAtRoot/node_modules/@types | c:/user/username/folderAtRoot/node_modules | -| c:/user/username/folderAtRoot/folder1/node_modules/@types | c:/user/username/folderAtRoot/folder1/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/usr/node_modules/@types | c:/usr/node_modules | -| c:/usr/username/node_modules/@types | c:/usr/username/node_modules | -| c:/usr/username/folderAtRoot/node_modules/@types | c:/usr/username/folderAtRoot/node_modules | -| c:/usr/username/folderAtRoot/folder1/node_modules/@types | c:/usr/username/folderAtRoot/folder1/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/home/node_modules/@types | c:/home/node_modules | -| c:/home/username/node_modules/@types | c:/home/username/node_modules | -| c:/home/username/folderAtRoot/node_modules/@types | c:/home/username/folderAtRoot/node_modules | -| c:/home/username/folderAtRoot/folder1/node_modules/@types | c:/home/username/folderAtRoot/folder1/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| c:/workspaces/node_modules/@types | c:/workspaces/node_modules | -| c:/workspaces/folderAtRoot/node_modules/@types | c:/workspaces/folderAtRoot/node_modules | -| c:/workspaces/folderAtRoot/folder1/node_modules/@types | c:/workspaces/folderAtRoot/folder1/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | c:/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | - diff --git a/tests/baselines/reference/canWatch/getDirectoryToWatchFailedLookupLocationFromTypeRootNonRecursivePosix.baseline.md b/tests/baselines/reference/canWatch/getDirectoryToWatchFailedLookupLocationFromTypeRootNonRecursivePosix.baseline.md deleted file mode 100644 index 772f2d3edc66b..0000000000000 --- a/tests/baselines/reference/canWatch/getDirectoryToWatchFailedLookupLocationFromTypeRootNonRecursivePosix.baseline.md +++ /dev/null @@ -1,1801 +0,0 @@ -# getDirectoryToWatchFailedLookupLocationFromTypeRootNonRecursive - -When watched typeRoot handler is invoked, this method determines the directory for which the failedLookupLocation would need to be invalidated. -Since this is invoked only when watching default typeRoot and is used to handle flaky directory watchers, this is used as a fail safe where if failed lookup starts with returned directory we will invalidate that resolution. - -## Testing for Posix root: / - -## RootDirForResolution: / - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3 | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3 | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3 | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4 | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4 | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5 | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /users - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /users/username - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /users/username/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /users/username/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1 | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1 | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1 | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1 | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1 | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /users/username/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2 | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2 | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2 | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2 | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /users/username/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3 | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3 | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3 | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /users/username/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /user - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /user/username - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /user/username/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /user/username/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1 | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1 | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1 | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1 | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1 | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /user/username/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2 | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2 | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2 | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2 | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /user/username/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3 | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3 | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3 | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /user/username/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /usr - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /usr/username - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /usr/username/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /usr/username/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1 | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1 | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1 | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1 | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1 | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /usr/username/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2 | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2 | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2 | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2 | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /usr/username/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3 | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3 | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3 | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /usr/username/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /home - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /home/username - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /home/username/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /home/username/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1 | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1 | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1 | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1 | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1 | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /home/username/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2 | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2 | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2 | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2 | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /home/username/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3 | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3 | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3 | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /home/username/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /workspaces - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /workspaces/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /workspaces/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1 | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1 | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1 | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1 | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1 | - -## RootDirForResolution: /workspaces/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2 | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2 | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2 | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2 | - -## RootDirForResolution: /workspaces/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3 | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3 | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3 | - -## RootDirForResolution: /workspaces/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4 | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4 | - -## RootDirForResolution: /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | - diff --git a/tests/baselines/reference/canWatch/getDirectoryToWatchFailedLookupLocationFromTypeRootNonRecursiveUnc.baseline.md b/tests/baselines/reference/canWatch/getDirectoryToWatchFailedLookupLocationFromTypeRootNonRecursiveUnc.baseline.md deleted file mode 100644 index e70dda71b80ea..0000000000000 --- a/tests/baselines/reference/canWatch/getDirectoryToWatchFailedLookupLocationFromTypeRootNonRecursiveUnc.baseline.md +++ /dev/null @@ -1,1801 +0,0 @@ -# getDirectoryToWatchFailedLookupLocationFromTypeRootNonRecursive - -When watched typeRoot handler is invoked, this method determines the directory for which the failedLookupLocation would need to be invalidated. -Since this is invoked only when watching default typeRoot and is used to handle flaky directory watchers, this is used as a fail safe where if failed lookup starts with returned directory we will invalidate that resolution. - -## Testing for Unc root: //vda1cs4850/ - -## RootDirForResolution: //vda1cs4850/ - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4 | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4 | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/users - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/users/username - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/users/username/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/users/username/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1 | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1 | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1 | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1 | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1 | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/users/username/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/user - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/user/username - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/user/username/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/user/username/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1 | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1 | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1 | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1 | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1 | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/user/username/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/usr - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/usr/username - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/usr/username/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/usr/username/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1 | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1 | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1 | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1 | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1 | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/usr/username/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/home - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/home/username - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/home/username/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/home/username/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1 | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1 | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1 | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1 | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1 | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/home/username/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/workspaces - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/workspaces/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/workspaces/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1 | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1 | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1 | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1 | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1 | - -## RootDirForResolution: //vda1cs4850/workspaces/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2 | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2 | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2 | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2 | - -## RootDirForResolution: //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3 | - -## RootDirForResolution: //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4 | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4 | - -## RootDirForResolution: //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | - diff --git a/tests/baselines/reference/canWatch/getDirectoryToWatchFailedLookupLocationFromTypeRootNonRecursiveUncDos.baseline.md b/tests/baselines/reference/canWatch/getDirectoryToWatchFailedLookupLocationFromTypeRootNonRecursiveUncDos.baseline.md deleted file mode 100644 index d193e4e95fa1c..0000000000000 --- a/tests/baselines/reference/canWatch/getDirectoryToWatchFailedLookupLocationFromTypeRootNonRecursiveUncDos.baseline.md +++ /dev/null @@ -1,2215 +0,0 @@ -# getDirectoryToWatchFailedLookupLocationFromTypeRootNonRecursive - -When watched typeRoot handler is invoked, this method determines the directory for which the failedLookupLocation would need to be invalidated. -Since this is invoked only when watching default typeRoot and is used to handle flaky directory watchers, this is used as a fail safe where if failed lookup starts with returned directory we will invalidate that resolution. - -## Testing for UncDos root: //vda1cs4850/c$ - -## RootDirForResolution: //vda1cs4850/c$ - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1 | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1 | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1 | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1 | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1 | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4 | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4 | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/users - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/users/username - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/users/username/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/users/username/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1 | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1 | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1 | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1 | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1 | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/user - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/user/username - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/user/username/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/user/username/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1 | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1 | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1 | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1 | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1 | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/usr - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/usr/username - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/usr/username/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/usr/username/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1 | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1 | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1 | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1 | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1 | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/home - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/home/username - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/home/username/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/home/username/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1 | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1 | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1 | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1 | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1 | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/workspaces - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/workspaces/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot | - -## RootDirForResolution: //vda1cs4850/c$/workspaces/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1 | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1 | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1 | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1 | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1 | - -## RootDirForResolution: //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2 | - -## RootDirForResolution: //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3 | - -## RootDirForResolution: //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4 | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4 | - -## RootDirForResolution: //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | - diff --git a/tests/baselines/reference/canWatch/getDirectoryToWatchFailedLookupLocationFromTypeRootPosix.baseline.md b/tests/baselines/reference/canWatch/getDirectoryToWatchFailedLookupLocationFromTypeRootPosix.baseline.md deleted file mode 100644 index 6a6fefa29a26c..0000000000000 --- a/tests/baselines/reference/canWatch/getDirectoryToWatchFailedLookupLocationFromTypeRootPosix.baseline.md +++ /dev/null @@ -1,1801 +0,0 @@ -# getDirectoryToWatchFailedLookupLocationFromTypeRoot - -When watched typeRoot handler is invoked, this method determines the directory for which the failedLookupLocation would need to be invalidated. -Since this is invoked only when watching default typeRoot and is used to handle flaky directory watchers, this is used as a fail safe where if failed lookup starts with returned directory we will invalidate that resolution. - -## Testing for Posix root: / - -## RootDirForResolution: / - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3 | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3 | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3 | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4 | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4 | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5 | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /users - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /users/username - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /users/username/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /users/username/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1 | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1 | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1 | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1 | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1 | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /users/username/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2 | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2 | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2 | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2 | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /users/username/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3 | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3 | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3 | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /users/username/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /user - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /user/username - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /user/username/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /user/username/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1 | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1 | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1 | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1 | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1 | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /user/username/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2 | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2 | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2 | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2 | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /user/username/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3 | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3 | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3 | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /user/username/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /usr - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /usr/username - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /usr/username/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /usr/username/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1 | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1 | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1 | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1 | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1 | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /usr/username/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2 | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2 | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2 | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2 | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /usr/username/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3 | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3 | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3 | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /usr/username/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /home - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /home/username - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /home/username/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /home/username/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1 | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1 | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1 | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1 | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1 | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /home/username/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2 | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2 | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2 | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2 | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /home/username/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3 | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3 | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3 | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /home/username/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /workspaces - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /workspaces/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: /workspaces/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1 | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1 | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1 | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1 | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1 | - -## RootDirForResolution: /workspaces/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2 | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2 | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2 | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2 | - -## RootDirForResolution: /workspaces/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3 | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3 | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3 | - -## RootDirForResolution: /workspaces/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4 | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4 | - -## RootDirForResolution: /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -| /folderAtRoot/folder1/folder2/node_modules/@types | /folderAtRoot/folder1/folder2/node_modules | -| /folderAtRoot/folder1/folder2/folder3/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /users/username/folderAtRoot/node_modules/@types | /users/username/folderAtRoot/node_modules | -| /users/username/folderAtRoot/folder1/node_modules/@types | /users/username/folderAtRoot/folder1/node_modules | -| /users/username/folderAtRoot/folder1/folder2/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /user/username/folderAtRoot/node_modules/@types | /user/username/folderAtRoot/node_modules | -| /user/username/folderAtRoot/folder1/node_modules/@types | /user/username/folderAtRoot/folder1/node_modules | -| /user/username/folderAtRoot/folder1/folder2/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /usr/username/folderAtRoot/node_modules/@types | /usr/username/folderAtRoot/node_modules | -| /usr/username/folderAtRoot/folder1/node_modules/@types | /usr/username/folderAtRoot/folder1/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /home/username/folderAtRoot/node_modules/@types | /home/username/folderAtRoot/node_modules | -| /home/username/folderAtRoot/folder1/node_modules/@types | /home/username/folderAtRoot/folder1/node_modules | -| /home/username/folderAtRoot/folder1/folder2/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| /workspaces/folderAtRoot/node_modules/@types | /workspaces/folderAtRoot/node_modules | -| /workspaces/folderAtRoot/folder1/node_modules/@types | /workspaces/folderAtRoot/folder1/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | /workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | - diff --git a/tests/baselines/reference/canWatch/getDirectoryToWatchFailedLookupLocationFromTypeRootUnc.baseline.md b/tests/baselines/reference/canWatch/getDirectoryToWatchFailedLookupLocationFromTypeRootUnc.baseline.md deleted file mode 100644 index 2f8a6ec28b162..0000000000000 --- a/tests/baselines/reference/canWatch/getDirectoryToWatchFailedLookupLocationFromTypeRootUnc.baseline.md +++ /dev/null @@ -1,1801 +0,0 @@ -# getDirectoryToWatchFailedLookupLocationFromTypeRoot - -When watched typeRoot handler is invoked, this method determines the directory for which the failedLookupLocation would need to be invalidated. -Since this is invoked only when watching default typeRoot and is used to handle flaky directory watchers, this is used as a fail safe where if failed lookup starts with returned directory we will invalidate that resolution. - -## Testing for Unc root: //vda1cs4850/ - -## RootDirForResolution: //vda1cs4850/ - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4 | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4 | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/users - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/users/username - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/users/username/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/users/username/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1 | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1 | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1 | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1 | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1 | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/users/username/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/user - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/user/username - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/user/username/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/user/username/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1 | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1 | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1 | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1 | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1 | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/user/username/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/usr - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/usr/username - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/usr/username/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/usr/username/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1 | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1 | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1 | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1 | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1 | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/usr/username/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/home - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/home/username - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/home/username/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/home/username/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1 | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1 | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1 | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1 | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1 | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/home/username/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/workspaces - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/workspaces/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/workspaces/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1 | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1 | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1 | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1 | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1 | - -## RootDirForResolution: //vda1cs4850/workspaces/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2 | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2 | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2 | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2 | - -## RootDirForResolution: //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3 | - -## RootDirForResolution: //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4 | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4 | - -## RootDirForResolution: //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | -| //vda1cs4850/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | - diff --git a/tests/baselines/reference/canWatch/getDirectoryToWatchFailedLookupLocationFromTypeRootUncDos.baseline.md b/tests/baselines/reference/canWatch/getDirectoryToWatchFailedLookupLocationFromTypeRootUncDos.baseline.md deleted file mode 100644 index d915cdd698e04..0000000000000 --- a/tests/baselines/reference/canWatch/getDirectoryToWatchFailedLookupLocationFromTypeRootUncDos.baseline.md +++ /dev/null @@ -1,2215 +0,0 @@ -# getDirectoryToWatchFailedLookupLocationFromTypeRoot - -When watched typeRoot handler is invoked, this method determines the directory for which the failedLookupLocation would need to be invalidated. -Since this is invoked only when watching default typeRoot and is used to handle flaky directory watchers, this is used as a fail safe where if failed lookup starts with returned directory we will invalidate that resolution. - -## Testing for UncDos root: //vda1cs4850/c$ - -## RootDirForResolution: //vda1cs4850/c$ - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1 | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1 | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1 | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1 | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1 | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4 | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4 | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/users - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/users/username - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/users/username/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/users/username/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1 | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1 | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1 | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1 | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1 | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/user - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/user/username - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/user/username/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/user/username/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1 | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1 | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1 | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1 | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1 | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/usr - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/usr/username - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/usr/username/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/usr/username/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1 | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1 | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1 | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1 | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1 | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/home - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/home/username - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/home/username/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/home/username/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1 | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1 | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1 | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1 | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1 | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4 | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/workspaces - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | - -## RootDirForResolution: //vda1cs4850/c$/workspaces/folderAtRoot - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot | - -## RootDirForResolution: //vda1cs4850/c$/workspaces/folderAtRoot/folder1 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1 | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1 | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1 | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1 | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1 | - -## RootDirForResolution: //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2 | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2 | - -## RootDirForResolution: //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3 | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3 | - -## RootDirForResolution: //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4 | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4 | - -## RootDirForResolution: //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5 - -| Directory | getDirectoryToWatchFailedLookupLocationFromTypeRoot | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -| //vda1cs4850/c$/folderAtRoot/node_modules/@types | //vda1cs4850/c$/folderAtRoot/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/users/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/user/node_modules/@types | //vda1cs4850/c$/user/node_modules | -| //vda1cs4850/c$/user/username/node_modules/@types | //vda1cs4850/c$/user/username/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/user/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/usr/node_modules/@types | //vda1cs4850/c$/usr/node_modules | -| //vda1cs4850/c$/usr/username/node_modules/@types | //vda1cs4850/c$/usr/username/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/usr/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/home/node_modules/@types | //vda1cs4850/c$/home/node_modules | -| //vda1cs4850/c$/home/username/node_modules/@types | //vda1cs4850/c$/home/username/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/home/username/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules | -| //vda1cs4850/c$/workspaces/node_modules/@types | //vda1cs4850/c$/workspaces/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/node_modules | -| //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5/node_modules/@types | //vda1cs4850/c$/workspaces/folderAtRoot/folder1/folder2/folder3/folder4/folder5 | - diff --git a/tests/baselines/reference/tsc/moduleResolution/project-with-package-json-scope.js b/tests/baselines/reference/tsc/moduleResolution/project-with-package-json-scope.js new file mode 100644 index 0000000000000..e2af3405309bf --- /dev/null +++ b/tests/baselines/reference/tsc/moduleResolution/project-with-package-json-scope.js @@ -0,0 +1,4255 @@ +currentDirectory:: /home/src/workspaces/project useCaseSensitiveFileNames:: false +Input:: +//// [/home/src/workspaces/project/src/tsconfig.json] +{ + "compilerOptions": { + "target": "es2016", + "composite": true, + "module": "node16", + "outDir": "../out", + "traceResolution": true + }, + "files": [ + "main.ts", + "fileA.ts", + "fileB.mts", + "randomFile.ts", + "a/randomFile.ts", + "b/ba/randomFile.ts", + "b/randomFile.ts", + "c/ca/randomFile.ts", + "c/ca/caa/randomFile.ts", + "c/ca/caa/caaa/randomFile.ts", + "c/cb/randomFile.ts", + "d/da/daa/daaa/x/y/z/randomFile.ts", + "d/da/daa/daaa/randomFile.ts", + "d/da/daa/randomFile.ts", + "d/da/randomFile.ts", + "e/ea/randomFile.ts", + "e/ea/eaa/randomFile.ts", + "e/ea/eaa/eaaa/randomFile.ts", + "e/ea/eaa/eaaa/x/y/z/randomFile.ts", + "f/fa/faa/x/y/z/randomFile.ts", + "f/fa/faa/faaa/randomFile.ts" + ] +} + +//// [/home/src/workspaces/project/src/main.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/fileA.ts] +import { foo } from "./fileB.mjs"; +foo(); + + +//// [/home/src/workspaces/project/src/fileB.mts] +export function foo() {} + +//// [/home/src/workspaces/project/src/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/a/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/b/ba/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/b/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/c/ca/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/c/ca/caa/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/c/cb/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/d/da/daa/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/d/da/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/e/ea/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/e/ea/eaa/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/package.json] +{ + "name": "app", + "version": "1.0.0" +} + +//// [/home/src/tslibs/TS/Lib/lib.d.ts] +/// +interface Boolean {} +interface Function {} +interface CallableFunction {} +interface NewableFunction {} +interface IArguments {} +interface Number { toExponential: any; } +interface Object {} +interface RegExp {} +interface String { charAt: any; } +interface Array { length: number; [n: number]: T; } +interface ReadonlyArray {} +declare const console: { log(msg: any): void; }; + + +/home/src/tslibs/TS/Lib/tsc.js -p /home/src/workspaces/project/src/tsconfig.json --explainFiles --extendedDiagnostics +Output:: +File '/home/src/workspaces/project/src/package.json' does not exist. +Found 'package.json' at '/home/src/workspaces/project/package.json'. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +======== Resolving module './fileB.mjs' from '/home/src/workspaces/project/src/fileA.ts'. ======== +Module resolution kind is not specified, using 'Node16'. +Resolving in CJS mode with conditions 'require', 'types', 'node'. +Loading module as file / folder, candidate module location '/home/src/workspaces/project/src/fileB.mjs', target file types: TypeScript, JavaScript, Declaration. +File name '/home/src/workspaces/project/src/fileB.mjs' has a '.mjs' extension - stripping it. +File '/home/src/workspaces/project/src/fileB.mts' exists - use it as a name resolution result. +======== Module name './fileB.mjs' was successfully resolved to '/home/src/workspaces/project/src/fileB.mts'. ======== +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/a/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/ba/package.json' does not exist. +File '/home/src/workspaces/project/src/b/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist. +File '/home/src/workspaces/project/src/c/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/caaa/package.json' does not exist. +File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/cb/package.json' does not exist. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/package.json' does not exist. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/package.json' does not exist. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/package.json' does not exist. +File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist. +File '/home/src/workspaces/project/src/d/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist. +File '/home/src/workspaces/project/src/e/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/package.json' does not exist. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/package.json' does not exist. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/package.json' does not exist. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/x/y/z/package.json' does not exist. +File '/home/src/workspaces/project/src/f/fa/faa/x/y/package.json' does not exist. +File '/home/src/workspaces/project/src/f/fa/faa/x/package.json' does not exist. +File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist. +File '/home/src/workspaces/project/src/f/fa/package.json' does not exist. +File '/home/src/workspaces/project/src/f/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/faaa/package.json' does not exist. +File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/tslibs/TS/Lib/package.json' does not exist. +File '/home/src/tslibs/TS/package.json' does not exist. +File '/home/src/tslibs/package.json' does not exist. +File '/home/src/package.json' does not exist. +File '/home/package.json' does not exist. +File '/package.json' does not exist. +src/fileA.ts:1:21 - error TS1479: The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import("./fileB.mjs")' call instead. + To convert this file to an ECMAScript module, change its file extension to '.mts', or add the field `"type": "module"` to '/home/src/workspaces/project/package.json'. + +1 import { foo } from "./fileB.mjs"; +   ~~~~~~~~~~~~~ + +../../tslibs/TS/Lib/lib.es2016.full.d.ts + Default library for target 'es2016' +src/main.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/fileB.mts + Imported via "./fileB.mjs" from file 'src/fileA.ts' + Part of 'files' list in tsconfig.json +src/fileA.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/a/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/b/ba/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/b/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/c/ca/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/c/ca/caa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/c/ca/caa/caaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/c/cb/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/d/da/daa/daaa/x/y/z/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/d/da/daa/daaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/d/da/daa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/d/da/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/e/ea/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/e/ea/eaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/e/ea/eaa/eaaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/e/ea/eaa/eaaa/x/y/z/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/f/fa/faa/x/y/z/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/f/fa/faa/faaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" + +Found 1 error in src/fileA.ts:1 + + + +//// [/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts] *Lib* + +//// [/home/src/workspaces/project/out/main.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/main.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/out/fileB.mjs] +export function foo() { } + + +//// [/home/src/workspaces/project/out/fileB.d.mts] +export declare function foo(): void; + + +//// [/home/src/workspaces/project/out/fileA.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +const fileB_mjs_1 = require("./fileB.mjs"); +(0, fileB_mjs_1.foo)(); + + +//// [/home/src/workspaces/project/out/fileA.d.ts] +export {}; + + +//// [/home/src/workspaces/project/out/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/randomFile.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/out/a/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/a/randomFile.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/out/b/ba/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/b/ba/randomFile.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/out/b/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/b/randomFile.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/out/c/ca/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/c/ca/randomFile.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/out/c/ca/caa/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/c/ca/caa/randomFile.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/out/c/ca/caa/caaa/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/c/ca/caa/caaa/randomFile.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/out/c/cb/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/c/cb/randomFile.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/out/d/da/daa/daaa/x/y/z/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/d/da/daa/daaa/x/y/z/randomFile.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/out/d/da/daa/daaa/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/d/da/daa/daaa/randomFile.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/out/d/da/daa/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/d/da/daa/randomFile.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/out/d/da/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/d/da/randomFile.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/randomFile.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/eaa/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/eaa/randomFile.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/eaa/eaaa/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/eaa/eaaa/randomFile.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/eaa/eaaa/x/y/z/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/eaa/eaaa/x/y/z/randomFile.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/out/f/fa/faa/x/y/z/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/f/fa/faa/x/y/z/randomFile.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/out/f/fa/faa/faaa/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/f/fa/faa/faaa/randomFile.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/out/tsconfig.tsbuildinfo] +{"fileNames":["../../../tslibs/ts/lib/lib.es2016.full.d.ts","../src/main.ts","../src/fileb.mts","../src/filea.ts","../src/randomfile.ts","../src/a/randomfile.ts","../src/b/ba/randomfile.ts","../src/b/randomfile.ts","../src/c/ca/randomfile.ts","../src/c/ca/caa/randomfile.ts","../src/c/ca/caa/caaa/randomfile.ts","../src/c/cb/randomfile.ts","../src/d/da/daa/daaa/x/y/z/randomfile.ts","../src/d/da/daa/daaa/randomfile.ts","../src/d/da/daa/randomfile.ts","../src/d/da/randomfile.ts","../src/e/ea/randomfile.ts","../src/e/ea/eaa/randomfile.ts","../src/e/ea/eaa/eaaa/randomfile.ts","../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts","../src/f/fa/faa/x/y/z/randomfile.ts","../src/f/fa/faa/faaa/randomfile.ts"],"fileIdsList":[[3]],"fileInfos":[{"version":"3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"3524703962-export function foo() {}","signature":"-5677608893-export declare function foo(): void;\n","impliedFormat":99},{"version":"-5325347830-import { foo } from \"./fileB.mjs\";\nfoo();\n","signature":"-3531856636-export {};\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1}],"root":[[2,22]],"options":{"composite":true,"module":100,"outDir":"./","target":3},"referencedMap":[[4,1]],"semanticDiagnosticsPerFile":[[4,[{"start":20,"length":13,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"./fileB.mjs\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}}]]],"latestChangedDtsFile":"./f/fa/faa/faaa/randomFile.d.ts","version":"FakeTSVersion"} + +//// [/home/src/workspaces/project/out/tsconfig.tsbuildinfo.readable.baseline.txt] +{ + "fileNames": [ + "../../../tslibs/ts/lib/lib.es2016.full.d.ts", + "../src/main.ts", + "../src/fileb.mts", + "../src/filea.ts", + "../src/randomfile.ts", + "../src/a/randomfile.ts", + "../src/b/ba/randomfile.ts", + "../src/b/randomfile.ts", + "../src/c/ca/randomfile.ts", + "../src/c/ca/caa/randomfile.ts", + "../src/c/ca/caa/caaa/randomfile.ts", + "../src/c/cb/randomfile.ts", + "../src/d/da/daa/daaa/x/y/z/randomfile.ts", + "../src/d/da/daa/daaa/randomfile.ts", + "../src/d/da/daa/randomfile.ts", + "../src/d/da/randomfile.ts", + "../src/e/ea/randomfile.ts", + "../src/e/ea/eaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts", + "../src/f/fa/faa/x/y/z/randomfile.ts", + "../src/f/fa/faa/faaa/randomfile.ts" + ], + "fileIdsList": [ + [ + "../src/fileb.mts" + ] + ], + "fileInfos": { + "../../../tslibs/ts/lib/lib.es2016.full.d.ts": { + "original": { + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true, + "impliedFormat": 1 + }, + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "signature": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true, + "impliedFormat": "commonjs" + }, + "../src/main.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/fileb.mts": { + "original": { + "version": "3524703962-export function foo() {}", + "signature": "-5677608893-export declare function foo(): void;\n", + "impliedFormat": 99 + }, + "version": "3524703962-export function foo() {}", + "signature": "-5677608893-export declare function foo(): void;\n", + "impliedFormat": "esnext" + }, + "../src/filea.ts": { + "original": { + "version": "-5325347830-import { foo } from \"./fileB.mjs\";\nfoo();\n", + "signature": "-3531856636-export {};\n", + "impliedFormat": 1 + }, + "version": "-5325347830-import { foo } from \"./fileB.mjs\";\nfoo();\n", + "signature": "-3531856636-export {};\n", + "impliedFormat": "commonjs" + }, + "../src/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/a/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/b/ba/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/b/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/c/ca/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/c/ca/caa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/c/ca/caa/caaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/c/cb/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/d/da/daa/daaa/x/y/z/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/d/da/daa/daaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/d/da/daa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/d/da/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/e/ea/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/e/ea/eaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/e/ea/eaa/eaaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/f/fa/faa/x/y/z/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/f/fa/faa/faaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + } + }, + "root": [ + [ + [ + 2, + 22 + ], + [ + "../src/main.ts", + "../src/fileb.mts", + "../src/filea.ts", + "../src/randomfile.ts", + "../src/a/randomfile.ts", + "../src/b/ba/randomfile.ts", + "../src/b/randomfile.ts", + "../src/c/ca/randomfile.ts", + "../src/c/ca/caa/randomfile.ts", + "../src/c/ca/caa/caaa/randomfile.ts", + "../src/c/cb/randomfile.ts", + "../src/d/da/daa/daaa/x/y/z/randomfile.ts", + "../src/d/da/daa/daaa/randomfile.ts", + "../src/d/da/daa/randomfile.ts", + "../src/d/da/randomfile.ts", + "../src/e/ea/randomfile.ts", + "../src/e/ea/eaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts", + "../src/f/fa/faa/x/y/z/randomfile.ts", + "../src/f/fa/faa/faaa/randomfile.ts" + ] + ] + ], + "options": { + "composite": true, + "module": 100, + "outDir": "./", + "target": 3 + }, + "referencedMap": { + "../src/filea.ts": [ + "../src/fileb.mts" + ] + }, + "semanticDiagnosticsPerFile": [ + [ + "../src/filea.ts", + [ + { + "start": 20, + "length": 13, + "code": 1479, + "category": 1, + "messageText": { + "messageText": "The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"./fileB.mjs\")' call instead.", + "category": 1, + "code": 1479, + "next": [ + { + "info": true + } + ] + } + } + ] + ] + ], + "latestChangedDtsFile": "./f/fa/faa/faaa/randomFile.d.ts", + "version": "FakeTSVersion", + "size": 4426 +} + + +exitCode:: ExitStatus.DiagnosticsPresent_OutputsGenerated + +Change:: random edit + +Input:: +//// [/home/src/workspaces/project/src/randomFile.ts] +export const x = 10;export const y = 10; + + +/home/src/tslibs/TS/Lib/tsc.js -p /home/src/workspaces/project/src/tsconfig.json --explainFiles --extendedDiagnostics +Output:: +File '/home/src/workspaces/project/src/package.json' does not exist. +Found 'package.json' at '/home/src/workspaces/project/package.json'. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +======== Resolving module './fileB.mjs' from '/home/src/workspaces/project/src/fileA.ts'. ======== +Module resolution kind is not specified, using 'Node16'. +Resolving in CJS mode with conditions 'require', 'types', 'node'. +Loading module as file / folder, candidate module location '/home/src/workspaces/project/src/fileB.mjs', target file types: TypeScript, JavaScript, Declaration. +File name '/home/src/workspaces/project/src/fileB.mjs' has a '.mjs' extension - stripping it. +File '/home/src/workspaces/project/src/fileB.mts' exists - use it as a name resolution result. +======== Module name './fileB.mjs' was successfully resolved to '/home/src/workspaces/project/src/fileB.mts'. ======== +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/a/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/ba/package.json' does not exist. +File '/home/src/workspaces/project/src/b/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist. +File '/home/src/workspaces/project/src/c/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/caaa/package.json' does not exist. +File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/cb/package.json' does not exist. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/package.json' does not exist. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/package.json' does not exist. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/package.json' does not exist. +File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist. +File '/home/src/workspaces/project/src/d/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist. +File '/home/src/workspaces/project/src/e/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/package.json' does not exist. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/package.json' does not exist. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/package.json' does not exist. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/x/y/z/package.json' does not exist. +File '/home/src/workspaces/project/src/f/fa/faa/x/y/package.json' does not exist. +File '/home/src/workspaces/project/src/f/fa/faa/x/package.json' does not exist. +File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist. +File '/home/src/workspaces/project/src/f/fa/package.json' does not exist. +File '/home/src/workspaces/project/src/f/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/faaa/package.json' does not exist. +File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/tslibs/TS/Lib/package.json' does not exist. +File '/home/src/tslibs/TS/package.json' does not exist. +File '/home/src/tslibs/package.json' does not exist. +File '/home/src/package.json' does not exist. +File '/home/package.json' does not exist. +File '/package.json' does not exist. +src/fileA.ts:1:21 - error TS1479: The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import("./fileB.mjs")' call instead. + To convert this file to an ECMAScript module, change its file extension to '.mts', or add the field `"type": "module"` to '/home/src/workspaces/project/package.json'. + +1 import { foo } from "./fileB.mjs"; +   ~~~~~~~~~~~~~ + +../../tslibs/TS/Lib/lib.es2016.full.d.ts + Default library for target 'es2016' +src/main.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/fileB.mts + Imported via "./fileB.mjs" from file 'src/fileA.ts' + Part of 'files' list in tsconfig.json +src/fileA.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/a/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/b/ba/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/b/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/c/ca/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/c/ca/caa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/c/ca/caa/caaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/c/cb/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/d/da/daa/daaa/x/y/z/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/d/da/daa/daaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/d/da/daa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/d/da/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/e/ea/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/e/ea/eaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/e/ea/eaa/eaaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/e/ea/eaa/eaaa/x/y/z/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/f/fa/faa/x/y/z/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/f/fa/faa/faaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" + +Found 1 error in src/fileA.ts:1 + + + +//// [/home/src/workspaces/project/out/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.y = exports.x = void 0; +exports.x = 10; +exports.y = 10; + + +//// [/home/src/workspaces/project/out/randomFile.d.ts] +export declare const x = 10; +export declare const y = 10; + + +//// [/home/src/workspaces/project/out/tsconfig.tsbuildinfo] +{"fileNames":["../../../tslibs/ts/lib/lib.es2016.full.d.ts","../src/main.ts","../src/fileb.mts","../src/filea.ts","../src/randomfile.ts","../src/a/randomfile.ts","../src/b/ba/randomfile.ts","../src/b/randomfile.ts","../src/c/ca/randomfile.ts","../src/c/ca/caa/randomfile.ts","../src/c/ca/caa/caaa/randomfile.ts","../src/c/cb/randomfile.ts","../src/d/da/daa/daaa/x/y/z/randomfile.ts","../src/d/da/daa/daaa/randomfile.ts","../src/d/da/daa/randomfile.ts","../src/d/da/randomfile.ts","../src/e/ea/randomfile.ts","../src/e/ea/eaa/randomfile.ts","../src/e/ea/eaa/eaaa/randomfile.ts","../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts","../src/f/fa/faa/x/y/z/randomfile.ts","../src/f/fa/faa/faaa/randomfile.ts"],"fileIdsList":[[3]],"fileInfos":[{"version":"3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"3524703962-export function foo() {}","signature":"-5677608893-export declare function foo(): void;\n","impliedFormat":99},{"version":"-5325347830-import { foo } from \"./fileB.mjs\";\nfoo();\n","signature":"-3531856636-export {};\n","impliedFormat":1},{"version":"-9547279430-export const x = 10;export const y = 10;","signature":"-18799098802-export declare const x = 10;\nexport declare const y = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1}],"root":[[2,22]],"options":{"composite":true,"module":100,"outDir":"./","target":3},"referencedMap":[[4,1]],"semanticDiagnosticsPerFile":[[4,[{"start":20,"length":13,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"./fileB.mjs\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}}]]],"latestChangedDtsFile":"./randomFile.d.ts","version":"FakeTSVersion"} + +//// [/home/src/workspaces/project/out/tsconfig.tsbuildinfo.readable.baseline.txt] +{ + "fileNames": [ + "../../../tslibs/ts/lib/lib.es2016.full.d.ts", + "../src/main.ts", + "../src/fileb.mts", + "../src/filea.ts", + "../src/randomfile.ts", + "../src/a/randomfile.ts", + "../src/b/ba/randomfile.ts", + "../src/b/randomfile.ts", + "../src/c/ca/randomfile.ts", + "../src/c/ca/caa/randomfile.ts", + "../src/c/ca/caa/caaa/randomfile.ts", + "../src/c/cb/randomfile.ts", + "../src/d/da/daa/daaa/x/y/z/randomfile.ts", + "../src/d/da/daa/daaa/randomfile.ts", + "../src/d/da/daa/randomfile.ts", + "../src/d/da/randomfile.ts", + "../src/e/ea/randomfile.ts", + "../src/e/ea/eaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts", + "../src/f/fa/faa/x/y/z/randomfile.ts", + "../src/f/fa/faa/faaa/randomfile.ts" + ], + "fileIdsList": [ + [ + "../src/fileb.mts" + ] + ], + "fileInfos": { + "../../../tslibs/ts/lib/lib.es2016.full.d.ts": { + "original": { + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true, + "impliedFormat": 1 + }, + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "signature": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true, + "impliedFormat": "commonjs" + }, + "../src/main.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/fileb.mts": { + "original": { + "version": "3524703962-export function foo() {}", + "signature": "-5677608893-export declare function foo(): void;\n", + "impliedFormat": 99 + }, + "version": "3524703962-export function foo() {}", + "signature": "-5677608893-export declare function foo(): void;\n", + "impliedFormat": "esnext" + }, + "../src/filea.ts": { + "original": { + "version": "-5325347830-import { foo } from \"./fileB.mjs\";\nfoo();\n", + "signature": "-3531856636-export {};\n", + "impliedFormat": 1 + }, + "version": "-5325347830-import { foo } from \"./fileB.mjs\";\nfoo();\n", + "signature": "-3531856636-export {};\n", + "impliedFormat": "commonjs" + }, + "../src/randomfile.ts": { + "original": { + "version": "-9547279430-export const x = 10;export const y = 10;", + "signature": "-18799098802-export declare const x = 10;\nexport declare const y = 10;\n", + "impliedFormat": 1 + }, + "version": "-9547279430-export const x = 10;export const y = 10;", + "signature": "-18799098802-export declare const x = 10;\nexport declare const y = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/a/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/b/ba/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/b/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/c/ca/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/c/ca/caa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/c/ca/caa/caaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/c/cb/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/d/da/daa/daaa/x/y/z/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/d/da/daa/daaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/d/da/daa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/d/da/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/e/ea/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/e/ea/eaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/e/ea/eaa/eaaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/f/fa/faa/x/y/z/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/f/fa/faa/faaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + } + }, + "root": [ + [ + [ + 2, + 22 + ], + [ + "../src/main.ts", + "../src/fileb.mts", + "../src/filea.ts", + "../src/randomfile.ts", + "../src/a/randomfile.ts", + "../src/b/ba/randomfile.ts", + "../src/b/randomfile.ts", + "../src/c/ca/randomfile.ts", + "../src/c/ca/caa/randomfile.ts", + "../src/c/ca/caa/caaa/randomfile.ts", + "../src/c/cb/randomfile.ts", + "../src/d/da/daa/daaa/x/y/z/randomfile.ts", + "../src/d/da/daa/daaa/randomfile.ts", + "../src/d/da/daa/randomfile.ts", + "../src/d/da/randomfile.ts", + "../src/e/ea/randomfile.ts", + "../src/e/ea/eaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts", + "../src/f/fa/faa/x/y/z/randomfile.ts", + "../src/f/fa/faa/faaa/randomfile.ts" + ] + ] + ], + "options": { + "composite": true, + "module": 100, + "outDir": "./", + "target": 3 + }, + "referencedMap": { + "../src/filea.ts": [ + "../src/fileb.mts" + ] + }, + "semanticDiagnosticsPerFile": [ + [ + "../src/filea.ts", + [ + { + "start": 20, + "length": 13, + "code": 1479, + "category": 1, + "messageText": { + "messageText": "The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"./fileB.mjs\")' call instead.", + "category": 1, + "code": 1479, + "next": [ + { + "info": true + } + ] + } + } + ] + ] + ], + "latestChangedDtsFile": "./randomFile.d.ts", + "version": "FakeTSVersion", + "size": 4462 +} + + +exitCode:: ExitStatus.DiagnosticsPresent_OutputsGenerated + +Change:: Modify package json file to add type module + +Input:: +//// [/home/src/workspaces/project/package.json] +{ + "name": "app", + "version": "1.0.0", + "type": "module" +} + + +/home/src/tslibs/TS/Lib/tsc.js -p /home/src/workspaces/project/src/tsconfig.json --explainFiles --extendedDiagnostics +Output:: +File '/home/src/workspaces/project/src/package.json' does not exist. +Found 'package.json' at '/home/src/workspaces/project/package.json'. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +======== Resolving module './fileB.mjs' from '/home/src/workspaces/project/src/fileA.ts'. ======== +Module resolution kind is not specified, using 'Node16'. +Resolving in ESM mode with conditions 'import', 'types', 'node'. +Loading module as file / folder, candidate module location '/home/src/workspaces/project/src/fileB.mjs', target file types: TypeScript, JavaScript, Declaration. +File name '/home/src/workspaces/project/src/fileB.mjs' has a '.mjs' extension - stripping it. +File '/home/src/workspaces/project/src/fileB.mts' exists - use it as a name resolution result. +======== Module name './fileB.mjs' was successfully resolved to '/home/src/workspaces/project/src/fileB.mts'. ======== +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/a/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/ba/package.json' does not exist. +File '/home/src/workspaces/project/src/b/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist. +File '/home/src/workspaces/project/src/c/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/caaa/package.json' does not exist. +File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/cb/package.json' does not exist. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/package.json' does not exist. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/package.json' does not exist. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/package.json' does not exist. +File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist. +File '/home/src/workspaces/project/src/d/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist. +File '/home/src/workspaces/project/src/e/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/package.json' does not exist. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/package.json' does not exist. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/package.json' does not exist. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/x/y/z/package.json' does not exist. +File '/home/src/workspaces/project/src/f/fa/faa/x/y/package.json' does not exist. +File '/home/src/workspaces/project/src/f/fa/faa/x/package.json' does not exist. +File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist. +File '/home/src/workspaces/project/src/f/fa/package.json' does not exist. +File '/home/src/workspaces/project/src/f/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/faaa/package.json' does not exist. +File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/tslibs/TS/Lib/package.json' does not exist. +File '/home/src/tslibs/TS/package.json' does not exist. +File '/home/src/tslibs/package.json' does not exist. +File '/home/src/package.json' does not exist. +File '/home/package.json' does not exist. +File '/package.json' does not exist. +../../tslibs/TS/Lib/lib.es2016.full.d.ts + Default library for target 'es2016' +src/main.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/fileB.mts + Imported via "./fileB.mjs" from file 'src/fileA.ts' + Part of 'files' list in tsconfig.json +src/fileA.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/a/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/b/ba/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/b/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/c/ca/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/c/ca/caa/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/c/ca/caa/caaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/c/cb/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/d/da/daa/daaa/x/y/z/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/d/da/daa/daaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/d/da/daa/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/d/da/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/e/ea/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/e/ea/eaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/e/ea/eaa/eaaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/e/ea/eaa/eaaa/x/y/z/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/f/fa/faa/x/y/z/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/f/fa/faa/faaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" + + +//// [/home/src/workspaces/project/out/main.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/fileA.js] +import { foo } from "./fileB.mjs"; +foo(); + + +//// [/home/src/workspaces/project/out/randomFile.js] +export const x = 10; +export const y = 10; + + +//// [/home/src/workspaces/project/out/a/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/b/ba/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/b/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/c/ca/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/c/ca/caa/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/c/ca/caa/caaa/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/c/cb/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/d/da/daa/daaa/x/y/z/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/d/da/daa/daaa/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/d/da/daa/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/d/da/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/eaa/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/eaa/eaaa/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/eaa/eaaa/x/y/z/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/f/fa/faa/x/y/z/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/f/fa/faa/faaa/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/tsconfig.tsbuildinfo] +{"fileNames":["../../../tslibs/ts/lib/lib.es2016.full.d.ts","../src/main.ts","../src/fileb.mts","../src/filea.ts","../src/randomfile.ts","../src/a/randomfile.ts","../src/b/ba/randomfile.ts","../src/b/randomfile.ts","../src/c/ca/randomfile.ts","../src/c/ca/caa/randomfile.ts","../src/c/ca/caa/caaa/randomfile.ts","../src/c/cb/randomfile.ts","../src/d/da/daa/daaa/x/y/z/randomfile.ts","../src/d/da/daa/daaa/randomfile.ts","../src/d/da/daa/randomfile.ts","../src/d/da/randomfile.ts","../src/e/ea/randomfile.ts","../src/e/ea/eaa/randomfile.ts","../src/e/ea/eaa/eaaa/randomfile.ts","../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts","../src/f/fa/faa/x/y/z/randomfile.ts","../src/f/fa/faa/faaa/randomfile.ts"],"fileIdsList":[[3]],"fileInfos":[{"version":"3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"3524703962-export function foo() {}","signature":"-5677608893-export declare function foo(): void;\n","impliedFormat":99},{"version":"-5325347830-import { foo } from \"./fileB.mjs\";\nfoo();\n","signature":"-3531856636-export {};\n","impliedFormat":99},{"version":"-9547279430-export const x = 10;export const y = 10;","signature":"-18799098802-export declare const x = 10;\nexport declare const y = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99}],"root":[[2,22]],"options":{"composite":true,"module":100,"outDir":"./","target":3},"referencedMap":[[4,1]],"latestChangedDtsFile":"./randomFile.d.ts","version":"FakeTSVersion"} + +//// [/home/src/workspaces/project/out/tsconfig.tsbuildinfo.readable.baseline.txt] +{ + "fileNames": [ + "../../../tslibs/ts/lib/lib.es2016.full.d.ts", + "../src/main.ts", + "../src/fileb.mts", + "../src/filea.ts", + "../src/randomfile.ts", + "../src/a/randomfile.ts", + "../src/b/ba/randomfile.ts", + "../src/b/randomfile.ts", + "../src/c/ca/randomfile.ts", + "../src/c/ca/caa/randomfile.ts", + "../src/c/ca/caa/caaa/randomfile.ts", + "../src/c/cb/randomfile.ts", + "../src/d/da/daa/daaa/x/y/z/randomfile.ts", + "../src/d/da/daa/daaa/randomfile.ts", + "../src/d/da/daa/randomfile.ts", + "../src/d/da/randomfile.ts", + "../src/e/ea/randomfile.ts", + "../src/e/ea/eaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts", + "../src/f/fa/faa/x/y/z/randomfile.ts", + "../src/f/fa/faa/faaa/randomfile.ts" + ], + "fileIdsList": [ + [ + "../src/fileb.mts" + ] + ], + "fileInfos": { + "../../../tslibs/ts/lib/lib.es2016.full.d.ts": { + "original": { + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true, + "impliedFormat": 1 + }, + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "signature": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true, + "impliedFormat": "commonjs" + }, + "../src/main.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/fileb.mts": { + "original": { + "version": "3524703962-export function foo() {}", + "signature": "-5677608893-export declare function foo(): void;\n", + "impliedFormat": 99 + }, + "version": "3524703962-export function foo() {}", + "signature": "-5677608893-export declare function foo(): void;\n", + "impliedFormat": "esnext" + }, + "../src/filea.ts": { + "original": { + "version": "-5325347830-import { foo } from \"./fileB.mjs\";\nfoo();\n", + "signature": "-3531856636-export {};\n", + "impliedFormat": 99 + }, + "version": "-5325347830-import { foo } from \"./fileB.mjs\";\nfoo();\n", + "signature": "-3531856636-export {};\n", + "impliedFormat": "esnext" + }, + "../src/randomfile.ts": { + "original": { + "version": "-9547279430-export const x = 10;export const y = 10;", + "signature": "-18799098802-export declare const x = 10;\nexport declare const y = 10;\n", + "impliedFormat": 99 + }, + "version": "-9547279430-export const x = 10;export const y = 10;", + "signature": "-18799098802-export declare const x = 10;\nexport declare const y = 10;\n", + "impliedFormat": "esnext" + }, + "../src/a/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/b/ba/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/b/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/c/ca/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/c/ca/caa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/c/ca/caa/caaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/c/cb/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/d/da/daa/daaa/x/y/z/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/d/da/daa/daaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/d/da/daa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/d/da/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/e/ea/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/e/ea/eaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/e/ea/eaa/eaaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/f/fa/faa/x/y/z/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/f/fa/faa/faaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + } + }, + "root": [ + [ + [ + 2, + 22 + ], + [ + "../src/main.ts", + "../src/fileb.mts", + "../src/filea.ts", + "../src/randomfile.ts", + "../src/a/randomfile.ts", + "../src/b/ba/randomfile.ts", + "../src/b/randomfile.ts", + "../src/c/ca/randomfile.ts", + "../src/c/ca/caa/randomfile.ts", + "../src/c/ca/caa/caaa/randomfile.ts", + "../src/c/cb/randomfile.ts", + "../src/d/da/daa/daaa/x/y/z/randomfile.ts", + "../src/d/da/daa/daaa/randomfile.ts", + "../src/d/da/daa/randomfile.ts", + "../src/d/da/randomfile.ts", + "../src/e/ea/randomfile.ts", + "../src/e/ea/eaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts", + "../src/f/fa/faa/x/y/z/randomfile.ts", + "../src/f/fa/faa/faaa/randomfile.ts" + ] + ] + ], + "options": { + "composite": true, + "module": 100, + "outDir": "./", + "target": 3 + }, + "referencedMap": { + "../src/filea.ts": [ + "../src/fileb.mts" + ] + }, + "latestChangedDtsFile": "./randomFile.d.ts", + "version": "FakeTSVersion", + "size": 4074 +} + + +exitCode:: ExitStatus.Success + +Change:: Modify package.json file to remove type module + +Input:: +//// [/home/src/workspaces/project/package.json] +{ + "name": "app", + "version": "1.0.0" +} + + +/home/src/tslibs/TS/Lib/tsc.js -p /home/src/workspaces/project/src/tsconfig.json --explainFiles --extendedDiagnostics +Output:: +File '/home/src/workspaces/project/src/package.json' does not exist. +Found 'package.json' at '/home/src/workspaces/project/package.json'. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +======== Resolving module './fileB.mjs' from '/home/src/workspaces/project/src/fileA.ts'. ======== +Module resolution kind is not specified, using 'Node16'. +Resolving in CJS mode with conditions 'require', 'types', 'node'. +Loading module as file / folder, candidate module location '/home/src/workspaces/project/src/fileB.mjs', target file types: TypeScript, JavaScript, Declaration. +File name '/home/src/workspaces/project/src/fileB.mjs' has a '.mjs' extension - stripping it. +File '/home/src/workspaces/project/src/fileB.mts' exists - use it as a name resolution result. +======== Module name './fileB.mjs' was successfully resolved to '/home/src/workspaces/project/src/fileB.mts'. ======== +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/a/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/ba/package.json' does not exist. +File '/home/src/workspaces/project/src/b/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist. +File '/home/src/workspaces/project/src/c/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/caaa/package.json' does not exist. +File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/cb/package.json' does not exist. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/package.json' does not exist. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/package.json' does not exist. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/package.json' does not exist. +File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist. +File '/home/src/workspaces/project/src/d/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist. +File '/home/src/workspaces/project/src/e/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/package.json' does not exist. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/package.json' does not exist. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/package.json' does not exist. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/x/y/z/package.json' does not exist. +File '/home/src/workspaces/project/src/f/fa/faa/x/y/package.json' does not exist. +File '/home/src/workspaces/project/src/f/fa/faa/x/package.json' does not exist. +File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist. +File '/home/src/workspaces/project/src/f/fa/package.json' does not exist. +File '/home/src/workspaces/project/src/f/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/faaa/package.json' does not exist. +File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/tslibs/TS/Lib/package.json' does not exist. +File '/home/src/tslibs/TS/package.json' does not exist. +File '/home/src/tslibs/package.json' does not exist. +File '/home/src/package.json' does not exist. +File '/home/package.json' does not exist. +File '/package.json' does not exist. +src/fileA.ts:1:21 - error TS1479: The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import("./fileB.mjs")' call instead. + To convert this file to an ECMAScript module, change its file extension to '.mts', or add the field `"type": "module"` to '/home/src/workspaces/project/package.json'. + +1 import { foo } from "./fileB.mjs"; +   ~~~~~~~~~~~~~ + +../../tslibs/TS/Lib/lib.es2016.full.d.ts + Default library for target 'es2016' +src/main.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/fileB.mts + Imported via "./fileB.mjs" from file 'src/fileA.ts' + Part of 'files' list in tsconfig.json +src/fileA.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/a/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/b/ba/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/b/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/c/ca/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/c/ca/caa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/c/ca/caa/caaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/c/cb/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/d/da/daa/daaa/x/y/z/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/d/da/daa/daaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/d/da/daa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/d/da/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/e/ea/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/e/ea/eaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/e/ea/eaa/eaaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/e/ea/eaa/eaaa/x/y/z/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/f/fa/faa/x/y/z/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/f/fa/faa/faaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" + +Found 1 error in src/fileA.ts:1 + + + +//// [/home/src/workspaces/project/out/main.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/fileA.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +const fileB_mjs_1 = require("./fileB.mjs"); +(0, fileB_mjs_1.foo)(); + + +//// [/home/src/workspaces/project/out/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.y = exports.x = void 0; +exports.x = 10; +exports.y = 10; + + +//// [/home/src/workspaces/project/out/a/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/b/ba/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/b/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/c/ca/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/c/ca/caa/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/c/ca/caa/caaa/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/c/cb/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/d/da/daa/daaa/x/y/z/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/d/da/daa/daaa/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/d/da/daa/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/d/da/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/eaa/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/eaa/eaaa/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/eaa/eaaa/x/y/z/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/f/fa/faa/x/y/z/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/f/fa/faa/faaa/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/tsconfig.tsbuildinfo] +{"fileNames":["../../../tslibs/ts/lib/lib.es2016.full.d.ts","../src/main.ts","../src/fileb.mts","../src/filea.ts","../src/randomfile.ts","../src/a/randomfile.ts","../src/b/ba/randomfile.ts","../src/b/randomfile.ts","../src/c/ca/randomfile.ts","../src/c/ca/caa/randomfile.ts","../src/c/ca/caa/caaa/randomfile.ts","../src/c/cb/randomfile.ts","../src/d/da/daa/daaa/x/y/z/randomfile.ts","../src/d/da/daa/daaa/randomfile.ts","../src/d/da/daa/randomfile.ts","../src/d/da/randomfile.ts","../src/e/ea/randomfile.ts","../src/e/ea/eaa/randomfile.ts","../src/e/ea/eaa/eaaa/randomfile.ts","../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts","../src/f/fa/faa/x/y/z/randomfile.ts","../src/f/fa/faa/faaa/randomfile.ts"],"fileIdsList":[[3]],"fileInfos":[{"version":"3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"3524703962-export function foo() {}","signature":"-5677608893-export declare function foo(): void;\n","impliedFormat":99},{"version":"-5325347830-import { foo } from \"./fileB.mjs\";\nfoo();\n","signature":"-3531856636-export {};\n","impliedFormat":1},{"version":"-9547279430-export const x = 10;export const y = 10;","signature":"-18799098802-export declare const x = 10;\nexport declare const y = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1}],"root":[[2,22]],"options":{"composite":true,"module":100,"outDir":"./","target":3},"referencedMap":[[4,1]],"semanticDiagnosticsPerFile":[[4,[{"start":20,"length":13,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"./fileB.mjs\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}}]]],"latestChangedDtsFile":"./randomFile.d.ts","version":"FakeTSVersion"} + +//// [/home/src/workspaces/project/out/tsconfig.tsbuildinfo.readable.baseline.txt] +{ + "fileNames": [ + "../../../tslibs/ts/lib/lib.es2016.full.d.ts", + "../src/main.ts", + "../src/fileb.mts", + "../src/filea.ts", + "../src/randomfile.ts", + "../src/a/randomfile.ts", + "../src/b/ba/randomfile.ts", + "../src/b/randomfile.ts", + "../src/c/ca/randomfile.ts", + "../src/c/ca/caa/randomfile.ts", + "../src/c/ca/caa/caaa/randomfile.ts", + "../src/c/cb/randomfile.ts", + "../src/d/da/daa/daaa/x/y/z/randomfile.ts", + "../src/d/da/daa/daaa/randomfile.ts", + "../src/d/da/daa/randomfile.ts", + "../src/d/da/randomfile.ts", + "../src/e/ea/randomfile.ts", + "../src/e/ea/eaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts", + "../src/f/fa/faa/x/y/z/randomfile.ts", + "../src/f/fa/faa/faaa/randomfile.ts" + ], + "fileIdsList": [ + [ + "../src/fileb.mts" + ] + ], + "fileInfos": { + "../../../tslibs/ts/lib/lib.es2016.full.d.ts": { + "original": { + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true, + "impliedFormat": 1 + }, + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "signature": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true, + "impliedFormat": "commonjs" + }, + "../src/main.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/fileb.mts": { + "original": { + "version": "3524703962-export function foo() {}", + "signature": "-5677608893-export declare function foo(): void;\n", + "impliedFormat": 99 + }, + "version": "3524703962-export function foo() {}", + "signature": "-5677608893-export declare function foo(): void;\n", + "impliedFormat": "esnext" + }, + "../src/filea.ts": { + "original": { + "version": "-5325347830-import { foo } from \"./fileB.mjs\";\nfoo();\n", + "signature": "-3531856636-export {};\n", + "impliedFormat": 1 + }, + "version": "-5325347830-import { foo } from \"./fileB.mjs\";\nfoo();\n", + "signature": "-3531856636-export {};\n", + "impliedFormat": "commonjs" + }, + "../src/randomfile.ts": { + "original": { + "version": "-9547279430-export const x = 10;export const y = 10;", + "signature": "-18799098802-export declare const x = 10;\nexport declare const y = 10;\n", + "impliedFormat": 1 + }, + "version": "-9547279430-export const x = 10;export const y = 10;", + "signature": "-18799098802-export declare const x = 10;\nexport declare const y = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/a/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/b/ba/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/b/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/c/ca/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/c/ca/caa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/c/ca/caa/caaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/c/cb/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/d/da/daa/daaa/x/y/z/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/d/da/daa/daaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/d/da/daa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/d/da/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/e/ea/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/e/ea/eaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/e/ea/eaa/eaaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/f/fa/faa/x/y/z/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/f/fa/faa/faaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + } + }, + "root": [ + [ + [ + 2, + 22 + ], + [ + "../src/main.ts", + "../src/fileb.mts", + "../src/filea.ts", + "../src/randomfile.ts", + "../src/a/randomfile.ts", + "../src/b/ba/randomfile.ts", + "../src/b/randomfile.ts", + "../src/c/ca/randomfile.ts", + "../src/c/ca/caa/randomfile.ts", + "../src/c/ca/caa/caaa/randomfile.ts", + "../src/c/cb/randomfile.ts", + "../src/d/da/daa/daaa/x/y/z/randomfile.ts", + "../src/d/da/daa/daaa/randomfile.ts", + "../src/d/da/daa/randomfile.ts", + "../src/d/da/randomfile.ts", + "../src/e/ea/randomfile.ts", + "../src/e/ea/eaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts", + "../src/f/fa/faa/x/y/z/randomfile.ts", + "../src/f/fa/faa/faaa/randomfile.ts" + ] + ] + ], + "options": { + "composite": true, + "module": 100, + "outDir": "./", + "target": 3 + }, + "referencedMap": { + "../src/filea.ts": [ + "../src/fileb.mts" + ] + }, + "semanticDiagnosticsPerFile": [ + [ + "../src/filea.ts", + [ + { + "start": 20, + "length": 13, + "code": 1479, + "category": 1, + "messageText": { + "messageText": "The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"./fileB.mjs\")' call instead.", + "category": 1, + "code": 1479, + "next": [ + { + "info": true + } + ] + } + } + ] + ] + ], + "latestChangedDtsFile": "./randomFile.d.ts", + "version": "FakeTSVersion", + "size": 4462 +} + + +exitCode:: ExitStatus.DiagnosticsPresent_OutputsGenerated + +Change:: Delete package.json + +Input:: +//// [/home/src/workspaces/project/package.json] deleted + +/home/src/tslibs/TS/Lib/tsc.js -p /home/src/workspaces/project/src/tsconfig.json --explainFiles --extendedDiagnostics +Output:: +File '/home/src/workspaces/project/src/package.json' does not exist. +File '/home/src/workspaces/project/package.json' does not exist. +File '/home/src/workspaces/package.json' does not exist. +File '/home/src/package.json' does not exist. +File '/home/package.json' does not exist. +File '/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +======== Resolving module './fileB.mjs' from '/home/src/workspaces/project/src/fileA.ts'. ======== +Module resolution kind is not specified, using 'Node16'. +Resolving in CJS mode with conditions 'require', 'types', 'node'. +Loading module as file / folder, candidate module location '/home/src/workspaces/project/src/fileB.mjs', target file types: TypeScript, JavaScript, Declaration. +File name '/home/src/workspaces/project/src/fileB.mjs' has a '.mjs' extension - stripping it. +File '/home/src/workspaces/project/src/fileB.mts' exists - use it as a name resolution result. +======== Module name './fileB.mjs' was successfully resolved to '/home/src/workspaces/project/src/fileB.mts'. ======== +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/a/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/ba/package.json' does not exist. +File '/home/src/workspaces/project/src/b/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist. +File '/home/src/workspaces/project/src/c/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/caaa/package.json' does not exist. +File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/cb/package.json' does not exist. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/package.json' does not exist. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/package.json' does not exist. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/package.json' does not exist. +File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist. +File '/home/src/workspaces/project/src/d/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist. +File '/home/src/workspaces/project/src/e/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/package.json' does not exist. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/package.json' does not exist. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/package.json' does not exist. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/x/y/z/package.json' does not exist. +File '/home/src/workspaces/project/src/f/fa/faa/x/y/package.json' does not exist. +File '/home/src/workspaces/project/src/f/fa/faa/x/package.json' does not exist. +File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist. +File '/home/src/workspaces/project/src/f/fa/package.json' does not exist. +File '/home/src/workspaces/project/src/f/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/faaa/package.json' does not exist. +File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/tslibs/TS/Lib/package.json' does not exist. +File '/home/src/tslibs/TS/package.json' does not exist. +File '/home/src/tslibs/package.json' does not exist. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +src/fileA.ts:1:21 - error TS1479: The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import("./fileB.mjs")' call instead. + To convert this file to an ECMAScript module, change its file extension to '.mts' or create a local package.json file with `{ "type": "module" }`. + +1 import { foo } from "./fileB.mjs"; +   ~~~~~~~~~~~~~ + +../../tslibs/TS/Lib/lib.es2016.full.d.ts + Default library for target 'es2016' +src/main.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/fileB.mts + Imported via "./fileB.mjs" from file 'src/fileA.ts' + Part of 'files' list in tsconfig.json +src/fileA.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/a/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/b/ba/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/b/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/c/ca/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/c/ca/caa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/c/ca/caa/caaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/c/cb/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/d/da/daa/daaa/x/y/z/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/d/da/daa/daaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/d/da/daa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/d/da/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/e/ea/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/e/ea/eaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/e/ea/eaa/eaaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/e/ea/eaa/eaaa/x/y/z/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/f/fa/faa/x/y/z/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/f/fa/faa/faaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found + +Found 1 error in src/fileA.ts:1 + + + + +exitCode:: ExitStatus.DiagnosticsPresent_OutputsGenerated + +Change:: Add package json file with type module + +Input:: +//// [/home/src/workspaces/project/package.json] +{ + "name": "app", + "version": "1.0.0", + "type": "module" +} + + +/home/src/tslibs/TS/Lib/tsc.js -p /home/src/workspaces/project/src/tsconfig.json --explainFiles --extendedDiagnostics +Output:: +File '/home/src/workspaces/project/src/package.json' does not exist. +Found 'package.json' at '/home/src/workspaces/project/package.json'. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +======== Resolving module './fileB.mjs' from '/home/src/workspaces/project/src/fileA.ts'. ======== +Module resolution kind is not specified, using 'Node16'. +Resolving in ESM mode with conditions 'import', 'types', 'node'. +Loading module as file / folder, candidate module location '/home/src/workspaces/project/src/fileB.mjs', target file types: TypeScript, JavaScript, Declaration. +File name '/home/src/workspaces/project/src/fileB.mjs' has a '.mjs' extension - stripping it. +File '/home/src/workspaces/project/src/fileB.mts' exists - use it as a name resolution result. +======== Module name './fileB.mjs' was successfully resolved to '/home/src/workspaces/project/src/fileB.mts'. ======== +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/a/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/ba/package.json' does not exist. +File '/home/src/workspaces/project/src/b/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist. +File '/home/src/workspaces/project/src/c/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/caaa/package.json' does not exist. +File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/cb/package.json' does not exist. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/package.json' does not exist. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/package.json' does not exist. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/package.json' does not exist. +File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist. +File '/home/src/workspaces/project/src/d/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist. +File '/home/src/workspaces/project/src/e/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/package.json' does not exist. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/package.json' does not exist. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/package.json' does not exist. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/x/y/z/package.json' does not exist. +File '/home/src/workspaces/project/src/f/fa/faa/x/y/package.json' does not exist. +File '/home/src/workspaces/project/src/f/fa/faa/x/package.json' does not exist. +File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist. +File '/home/src/workspaces/project/src/f/fa/package.json' does not exist. +File '/home/src/workspaces/project/src/f/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/faaa/package.json' does not exist. +File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/tslibs/TS/Lib/package.json' does not exist. +File '/home/src/tslibs/TS/package.json' does not exist. +File '/home/src/tslibs/package.json' does not exist. +File '/home/src/package.json' does not exist. +File '/home/package.json' does not exist. +File '/package.json' does not exist. +../../tslibs/TS/Lib/lib.es2016.full.d.ts + Default library for target 'es2016' +src/main.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/fileB.mts + Imported via "./fileB.mjs" from file 'src/fileA.ts' + Part of 'files' list in tsconfig.json +src/fileA.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/a/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/b/ba/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/b/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/c/ca/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/c/ca/caa/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/c/ca/caa/caaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/c/cb/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/d/da/daa/daaa/x/y/z/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/d/da/daa/daaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/d/da/daa/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/d/da/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/e/ea/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/e/ea/eaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/e/ea/eaa/eaaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/e/ea/eaa/eaaa/x/y/z/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/f/fa/faa/x/y/z/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/f/fa/faa/faaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" + + +//// [/home/src/workspaces/project/out/main.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/fileA.js] +import { foo } from "./fileB.mjs"; +foo(); + + +//// [/home/src/workspaces/project/out/randomFile.js] +export const x = 10; +export const y = 10; + + +//// [/home/src/workspaces/project/out/a/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/b/ba/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/b/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/c/ca/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/c/ca/caa/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/c/ca/caa/caaa/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/c/cb/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/d/da/daa/daaa/x/y/z/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/d/da/daa/daaa/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/d/da/daa/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/d/da/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/eaa/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/eaa/eaaa/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/eaa/eaaa/x/y/z/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/f/fa/faa/x/y/z/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/f/fa/faa/faaa/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/tsconfig.tsbuildinfo] +{"fileNames":["../../../tslibs/ts/lib/lib.es2016.full.d.ts","../src/main.ts","../src/fileb.mts","../src/filea.ts","../src/randomfile.ts","../src/a/randomfile.ts","../src/b/ba/randomfile.ts","../src/b/randomfile.ts","../src/c/ca/randomfile.ts","../src/c/ca/caa/randomfile.ts","../src/c/ca/caa/caaa/randomfile.ts","../src/c/cb/randomfile.ts","../src/d/da/daa/daaa/x/y/z/randomfile.ts","../src/d/da/daa/daaa/randomfile.ts","../src/d/da/daa/randomfile.ts","../src/d/da/randomfile.ts","../src/e/ea/randomfile.ts","../src/e/ea/eaa/randomfile.ts","../src/e/ea/eaa/eaaa/randomfile.ts","../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts","../src/f/fa/faa/x/y/z/randomfile.ts","../src/f/fa/faa/faaa/randomfile.ts"],"fileIdsList":[[3]],"fileInfos":[{"version":"3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"3524703962-export function foo() {}","signature":"-5677608893-export declare function foo(): void;\n","impliedFormat":99},{"version":"-5325347830-import { foo } from \"./fileB.mjs\";\nfoo();\n","signature":"-3531856636-export {};\n","impliedFormat":99},{"version":"-9547279430-export const x = 10;export const y = 10;","signature":"-18799098802-export declare const x = 10;\nexport declare const y = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99}],"root":[[2,22]],"options":{"composite":true,"module":100,"outDir":"./","target":3},"referencedMap":[[4,1]],"latestChangedDtsFile":"./randomFile.d.ts","version":"FakeTSVersion"} + +//// [/home/src/workspaces/project/out/tsconfig.tsbuildinfo.readable.baseline.txt] +{ + "fileNames": [ + "../../../tslibs/ts/lib/lib.es2016.full.d.ts", + "../src/main.ts", + "../src/fileb.mts", + "../src/filea.ts", + "../src/randomfile.ts", + "../src/a/randomfile.ts", + "../src/b/ba/randomfile.ts", + "../src/b/randomfile.ts", + "../src/c/ca/randomfile.ts", + "../src/c/ca/caa/randomfile.ts", + "../src/c/ca/caa/caaa/randomfile.ts", + "../src/c/cb/randomfile.ts", + "../src/d/da/daa/daaa/x/y/z/randomfile.ts", + "../src/d/da/daa/daaa/randomfile.ts", + "../src/d/da/daa/randomfile.ts", + "../src/d/da/randomfile.ts", + "../src/e/ea/randomfile.ts", + "../src/e/ea/eaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts", + "../src/f/fa/faa/x/y/z/randomfile.ts", + "../src/f/fa/faa/faaa/randomfile.ts" + ], + "fileIdsList": [ + [ + "../src/fileb.mts" + ] + ], + "fileInfos": { + "../../../tslibs/ts/lib/lib.es2016.full.d.ts": { + "original": { + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true, + "impliedFormat": 1 + }, + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "signature": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true, + "impliedFormat": "commonjs" + }, + "../src/main.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/fileb.mts": { + "original": { + "version": "3524703962-export function foo() {}", + "signature": "-5677608893-export declare function foo(): void;\n", + "impliedFormat": 99 + }, + "version": "3524703962-export function foo() {}", + "signature": "-5677608893-export declare function foo(): void;\n", + "impliedFormat": "esnext" + }, + "../src/filea.ts": { + "original": { + "version": "-5325347830-import { foo } from \"./fileB.mjs\";\nfoo();\n", + "signature": "-3531856636-export {};\n", + "impliedFormat": 99 + }, + "version": "-5325347830-import { foo } from \"./fileB.mjs\";\nfoo();\n", + "signature": "-3531856636-export {};\n", + "impliedFormat": "esnext" + }, + "../src/randomfile.ts": { + "original": { + "version": "-9547279430-export const x = 10;export const y = 10;", + "signature": "-18799098802-export declare const x = 10;\nexport declare const y = 10;\n", + "impliedFormat": 99 + }, + "version": "-9547279430-export const x = 10;export const y = 10;", + "signature": "-18799098802-export declare const x = 10;\nexport declare const y = 10;\n", + "impliedFormat": "esnext" + }, + "../src/a/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/b/ba/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/b/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/c/ca/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/c/ca/caa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/c/ca/caa/caaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/c/cb/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/d/da/daa/daaa/x/y/z/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/d/da/daa/daaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/d/da/daa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/d/da/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/e/ea/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/e/ea/eaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/e/ea/eaa/eaaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/f/fa/faa/x/y/z/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/f/fa/faa/faaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + } + }, + "root": [ + [ + [ + 2, + 22 + ], + [ + "../src/main.ts", + "../src/fileb.mts", + "../src/filea.ts", + "../src/randomfile.ts", + "../src/a/randomfile.ts", + "../src/b/ba/randomfile.ts", + "../src/b/randomfile.ts", + "../src/c/ca/randomfile.ts", + "../src/c/ca/caa/randomfile.ts", + "../src/c/ca/caa/caaa/randomfile.ts", + "../src/c/cb/randomfile.ts", + "../src/d/da/daa/daaa/x/y/z/randomfile.ts", + "../src/d/da/daa/daaa/randomfile.ts", + "../src/d/da/daa/randomfile.ts", + "../src/d/da/randomfile.ts", + "../src/e/ea/randomfile.ts", + "../src/e/ea/eaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts", + "../src/f/fa/faa/x/y/z/randomfile.ts", + "../src/f/fa/faa/faaa/randomfile.ts" + ] + ] + ], + "options": { + "composite": true, + "module": 100, + "outDir": "./", + "target": 3 + }, + "referencedMap": { + "../src/filea.ts": [ + "../src/fileb.mts" + ] + }, + "latestChangedDtsFile": "./randomFile.d.ts", + "version": "FakeTSVersion", + "size": 4074 +} + + +exitCode:: ExitStatus.Success + +Change:: Delete package.json + +Input:: +//// [/home/src/workspaces/project/package.json] deleted + +/home/src/tslibs/TS/Lib/tsc.js -p /home/src/workspaces/project/src/tsconfig.json --explainFiles --extendedDiagnostics +Output:: +File '/home/src/workspaces/project/src/package.json' does not exist. +File '/home/src/workspaces/project/package.json' does not exist. +File '/home/src/workspaces/package.json' does not exist. +File '/home/src/package.json' does not exist. +File '/home/package.json' does not exist. +File '/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +======== Resolving module './fileB.mjs' from '/home/src/workspaces/project/src/fileA.ts'. ======== +Module resolution kind is not specified, using 'Node16'. +Resolving in CJS mode with conditions 'require', 'types', 'node'. +Loading module as file / folder, candidate module location '/home/src/workspaces/project/src/fileB.mjs', target file types: TypeScript, JavaScript, Declaration. +File name '/home/src/workspaces/project/src/fileB.mjs' has a '.mjs' extension - stripping it. +File '/home/src/workspaces/project/src/fileB.mts' exists - use it as a name resolution result. +======== Module name './fileB.mjs' was successfully resolved to '/home/src/workspaces/project/src/fileB.mts'. ======== +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/a/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/ba/package.json' does not exist. +File '/home/src/workspaces/project/src/b/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist. +File '/home/src/workspaces/project/src/c/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/caaa/package.json' does not exist. +File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/cb/package.json' does not exist. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/package.json' does not exist. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/package.json' does not exist. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/package.json' does not exist. +File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist. +File '/home/src/workspaces/project/src/d/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist. +File '/home/src/workspaces/project/src/e/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/package.json' does not exist. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/package.json' does not exist. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/package.json' does not exist. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/x/y/z/package.json' does not exist. +File '/home/src/workspaces/project/src/f/fa/faa/x/y/package.json' does not exist. +File '/home/src/workspaces/project/src/f/fa/faa/x/package.json' does not exist. +File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist. +File '/home/src/workspaces/project/src/f/fa/package.json' does not exist. +File '/home/src/workspaces/project/src/f/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/faaa/package.json' does not exist. +File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/tslibs/TS/Lib/package.json' does not exist. +File '/home/src/tslibs/TS/package.json' does not exist. +File '/home/src/tslibs/package.json' does not exist. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +src/fileA.ts:1:21 - error TS1479: The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import("./fileB.mjs")' call instead. + To convert this file to an ECMAScript module, change its file extension to '.mts' or create a local package.json file with `{ "type": "module" }`. + +1 import { foo } from "./fileB.mjs"; +   ~~~~~~~~~~~~~ + +../../tslibs/TS/Lib/lib.es2016.full.d.ts + Default library for target 'es2016' +src/main.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/fileB.mts + Imported via "./fileB.mjs" from file 'src/fileA.ts' + Part of 'files' list in tsconfig.json +src/fileA.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/a/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/b/ba/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/b/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/c/ca/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/c/ca/caa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/c/ca/caa/caaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/c/cb/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/d/da/daa/daaa/x/y/z/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/d/da/daa/daaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/d/da/daa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/d/da/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/e/ea/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/e/ea/eaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/e/ea/eaa/eaaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/e/ea/eaa/eaaa/x/y/z/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/f/fa/faa/x/y/z/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/f/fa/faa/faaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found + +Found 1 error in src/fileA.ts:1 + + + +//// [/home/src/workspaces/project/out/main.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/fileA.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +const fileB_mjs_1 = require("./fileB.mjs"); +(0, fileB_mjs_1.foo)(); + + +//// [/home/src/workspaces/project/out/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.y = exports.x = void 0; +exports.x = 10; +exports.y = 10; + + +//// [/home/src/workspaces/project/out/a/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/b/ba/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/b/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/c/ca/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/c/ca/caa/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/c/ca/caa/caaa/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/c/cb/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/d/da/daa/daaa/x/y/z/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/d/da/daa/daaa/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/d/da/daa/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/d/da/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/eaa/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/eaa/eaaa/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/eaa/eaaa/x/y/z/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/f/fa/faa/x/y/z/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/f/fa/faa/faaa/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/tsconfig.tsbuildinfo] +{"fileNames":["../../../tslibs/ts/lib/lib.es2016.full.d.ts","../src/main.ts","../src/fileb.mts","../src/filea.ts","../src/randomfile.ts","../src/a/randomfile.ts","../src/b/ba/randomfile.ts","../src/b/randomfile.ts","../src/c/ca/randomfile.ts","../src/c/ca/caa/randomfile.ts","../src/c/ca/caa/caaa/randomfile.ts","../src/c/cb/randomfile.ts","../src/d/da/daa/daaa/x/y/z/randomfile.ts","../src/d/da/daa/daaa/randomfile.ts","../src/d/da/daa/randomfile.ts","../src/d/da/randomfile.ts","../src/e/ea/randomfile.ts","../src/e/ea/eaa/randomfile.ts","../src/e/ea/eaa/eaaa/randomfile.ts","../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts","../src/f/fa/faa/x/y/z/randomfile.ts","../src/f/fa/faa/faaa/randomfile.ts"],"fileIdsList":[[3]],"fileInfos":[{"version":"3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"3524703962-export function foo() {}","signature":"-5677608893-export declare function foo(): void;\n","impliedFormat":99},{"version":"-5325347830-import { foo } from \"./fileB.mjs\";\nfoo();\n","signature":"-3531856636-export {};\n","impliedFormat":1},{"version":"-9547279430-export const x = 10;export const y = 10;","signature":"-18799098802-export declare const x = 10;\nexport declare const y = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1}],"root":[[2,22]],"options":{"composite":true,"module":100,"outDir":"./","target":3},"referencedMap":[[4,1]],"semanticDiagnosticsPerFile":[[4,[{"start":20,"length":13,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"./fileB.mjs\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}}]]],"latestChangedDtsFile":"./randomFile.d.ts","version":"FakeTSVersion"} + +//// [/home/src/workspaces/project/out/tsconfig.tsbuildinfo.readable.baseline.txt] +{ + "fileNames": [ + "../../../tslibs/ts/lib/lib.es2016.full.d.ts", + "../src/main.ts", + "../src/fileb.mts", + "../src/filea.ts", + "../src/randomfile.ts", + "../src/a/randomfile.ts", + "../src/b/ba/randomfile.ts", + "../src/b/randomfile.ts", + "../src/c/ca/randomfile.ts", + "../src/c/ca/caa/randomfile.ts", + "../src/c/ca/caa/caaa/randomfile.ts", + "../src/c/cb/randomfile.ts", + "../src/d/da/daa/daaa/x/y/z/randomfile.ts", + "../src/d/da/daa/daaa/randomfile.ts", + "../src/d/da/daa/randomfile.ts", + "../src/d/da/randomfile.ts", + "../src/e/ea/randomfile.ts", + "../src/e/ea/eaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts", + "../src/f/fa/faa/x/y/z/randomfile.ts", + "../src/f/fa/faa/faaa/randomfile.ts" + ], + "fileIdsList": [ + [ + "../src/fileb.mts" + ] + ], + "fileInfos": { + "../../../tslibs/ts/lib/lib.es2016.full.d.ts": { + "original": { + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true, + "impliedFormat": 1 + }, + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "signature": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true, + "impliedFormat": "commonjs" + }, + "../src/main.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/fileb.mts": { + "original": { + "version": "3524703962-export function foo() {}", + "signature": "-5677608893-export declare function foo(): void;\n", + "impliedFormat": 99 + }, + "version": "3524703962-export function foo() {}", + "signature": "-5677608893-export declare function foo(): void;\n", + "impliedFormat": "esnext" + }, + "../src/filea.ts": { + "original": { + "version": "-5325347830-import { foo } from \"./fileB.mjs\";\nfoo();\n", + "signature": "-3531856636-export {};\n", + "impliedFormat": 1 + }, + "version": "-5325347830-import { foo } from \"./fileB.mjs\";\nfoo();\n", + "signature": "-3531856636-export {};\n", + "impliedFormat": "commonjs" + }, + "../src/randomfile.ts": { + "original": { + "version": "-9547279430-export const x = 10;export const y = 10;", + "signature": "-18799098802-export declare const x = 10;\nexport declare const y = 10;\n", + "impliedFormat": 1 + }, + "version": "-9547279430-export const x = 10;export const y = 10;", + "signature": "-18799098802-export declare const x = 10;\nexport declare const y = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/a/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/b/ba/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/b/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/c/ca/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/c/ca/caa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/c/ca/caa/caaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/c/cb/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/d/da/daa/daaa/x/y/z/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/d/da/daa/daaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/d/da/daa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/d/da/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/e/ea/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/e/ea/eaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/e/ea/eaa/eaaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/f/fa/faa/x/y/z/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/f/fa/faa/faaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + } + }, + "root": [ + [ + [ + 2, + 22 + ], + [ + "../src/main.ts", + "../src/fileb.mts", + "../src/filea.ts", + "../src/randomfile.ts", + "../src/a/randomfile.ts", + "../src/b/ba/randomfile.ts", + "../src/b/randomfile.ts", + "../src/c/ca/randomfile.ts", + "../src/c/ca/caa/randomfile.ts", + "../src/c/ca/caa/caaa/randomfile.ts", + "../src/c/cb/randomfile.ts", + "../src/d/da/daa/daaa/x/y/z/randomfile.ts", + "../src/d/da/daa/daaa/randomfile.ts", + "../src/d/da/daa/randomfile.ts", + "../src/d/da/randomfile.ts", + "../src/e/ea/randomfile.ts", + "../src/e/ea/eaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts", + "../src/f/fa/faa/x/y/z/randomfile.ts", + "../src/f/fa/faa/faaa/randomfile.ts" + ] + ] + ], + "options": { + "composite": true, + "module": 100, + "outDir": "./", + "target": 3 + }, + "referencedMap": { + "../src/filea.ts": [ + "../src/fileb.mts" + ] + }, + "semanticDiagnosticsPerFile": [ + [ + "../src/filea.ts", + [ + { + "start": 20, + "length": 13, + "code": 1479, + "category": 1, + "messageText": { + "messageText": "The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"./fileB.mjs\")' call instead.", + "category": 1, + "code": 1479, + "next": [ + { + "info": true + } + ] + } + } + ] + ] + ], + "latestChangedDtsFile": "./randomFile.d.ts", + "version": "FakeTSVersion", + "size": 4462 +} + + +exitCode:: ExitStatus.DiagnosticsPresent_OutputsGenerated diff --git a/tests/baselines/reference/tscWatch/extends/configDir-template.js b/tests/baselines/reference/tscWatch/extends/configDir-template.js index 468f9a17371f0..236a37cdc2f67 100644 --- a/tests/baselines/reference/tscWatch/extends/configDir-template.js +++ b/tests/baselines/reference/tscWatch/extends/configDir-template.js @@ -129,8 +129,6 @@ File '/home/src/projects/myproject/root2/other/sometype2/package.json' does not File '/home/src/projects/myproject/root2/other/sometype2/index.d.ts' exists - use it as a name resolution result. Resolving real path for '/home/src/projects/myproject/root2/other/sometype2/index.d.ts', result '/home/src/projects/myproject/root2/other/sometype2/index.d.ts'. ======== Module name 'other/sometype2' was successfully resolved to '/home/src/projects/myproject/root2/other/sometype2/index.d.ts'. ======== -FileWatcher:: Added:: WatchInfo: /home/src/projects/myproject/root2/other/sometype2/index.d.ts 250 {"excludeFiles":["/home/src/projects/myproject/main.ts"]} Source file -FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 250 {"excludeFiles":["/home/src/projects/myproject/main.ts"]} Source file DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/myproject/other 1 {"excludeFiles":["/home/src/projects/myproject/main.ts"]} Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/myproject/other 1 {"excludeFiles":["/home/src/projects/myproject/main.ts"]} Failed Lookup Locations DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/myproject/src 1 {"excludeFiles":["/home/src/projects/myproject/main.ts"]} Failed Lookup Locations @@ -143,6 +141,8 @@ DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/configs 1 {"excludeFile Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/configs 1 {"excludeFiles":["/home/src/projects/myproject/main.ts"]} Failed Lookup Locations DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/myproject/root2 1 {"excludeFiles":["/home/src/projects/myproject/main.ts"]} Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/myproject/root2 1 {"excludeFiles":["/home/src/projects/myproject/main.ts"]} Failed Lookup Locations +FileWatcher:: Added:: WatchInfo: /home/src/projects/myproject/root2/other/sometype2/index.d.ts 250 {"excludeFiles":["/home/src/projects/myproject/main.ts"]} Source file +FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 250 {"excludeFiles":["/home/src/projects/myproject/main.ts"]} Source file ../../tslibs/TS/Lib/lib.d.ts Default library for target 'es5' types/sometype.ts diff --git a/tests/baselines/reference/tscWatch/libraryResolution/with-config.js b/tests/baselines/reference/tscWatch/libraryResolution/with-config.js index a8bf5ba493885..326ca190eb5c7 100644 --- a/tests/baselines/reference/tscWatch/libraryResolution/with-config.js +++ b/tests/baselines/reference/tscWatch/libraryResolution/with-config.js @@ -1984,13 +1984,13 @@ File '/home/src/workspace/projects/node_modules/@typescript/lib-dom/index.d.ts' Resolving real path for '/home/src/workspace/projects/node_modules/@typescript/lib-dom/index.d.ts', result '/home/src/workspace/projects/node_modules/@typescript/lib-dom/index.d.ts'. ======== Module name '@typescript/lib-dom' was successfully resolved to '/home/src/workspace/projects/node_modules/@typescript/lib-dom/index.d.ts'. ======== File '/home/src/workspace/projects/node_modules/@typescript/lib-dom/package.json' does not exist according to earlier cached lookups. -File '/home/src/workspace/projects/node_modules/@typescript/package.json' does not exist according to earlier cached lookups. -File '/home/src/workspace/projects/node_modules/package.json' does not exist according to earlier cached lookups. -File '/home/src/workspace/projects/package.json' does not exist according to earlier cached lookups. -File '/home/src/workspace/package.json' does not exist according to earlier cached lookups. -File '/home/src/package.json' does not exist according to earlier cached lookups. -File '/home/package.json' does not exist according to earlier cached lookups. -File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspace/projects/node_modules/@typescript/package.json' does not exist. +File '/home/src/workspace/projects/node_modules/package.json' does not exist. +File '/home/src/workspace/projects/package.json' does not exist. +File '/home/src/workspace/package.json' does not exist. +File '/home/src/package.json' does not exist. +File '/home/package.json' does not exist. +File '/package.json' does not exist. FileWatcher:: Added:: WatchInfo: /home/src/workspace/projects/node_modules/@typescript/lib-dom/index.d.ts 250 undefined Source file FileWatcher:: Close:: WatchInfo: /home/src/tslibs/TS/Lib/lib.dom.d.ts 250 undefined Source file FileWatcher:: Added:: WatchInfo: /home/src/workspace/projects/node_modules/@typescript/lib-dom/package.json 2000 undefined File location affecting resolution diff --git a/tests/baselines/reference/tscWatch/libraryResolution/without-config.js b/tests/baselines/reference/tscWatch/libraryResolution/without-config.js index 9979946d8fcef..a219cc5805281 100644 --- a/tests/baselines/reference/tscWatch/libraryResolution/without-config.js +++ b/tests/baselines/reference/tscWatch/libraryResolution/without-config.js @@ -1108,13 +1108,13 @@ File '/home/src/workspace/projects/node_modules/@typescript/lib-webworker/index. Resolving real path for '/home/src/workspace/projects/node_modules/@typescript/lib-webworker/index.d.ts', result '/home/src/workspace/projects/node_modules/@typescript/lib-webworker/index.d.ts'. ======== Module name '@typescript/lib-webworker' was successfully resolved to '/home/src/workspace/projects/node_modules/@typescript/lib-webworker/index.d.ts'. ======== File '/home/src/workspace/projects/node_modules/@typescript/lib-webworker/package.json' does not exist according to earlier cached lookups. -File '/home/src/workspace/projects/node_modules/@typescript/package.json' does not exist according to earlier cached lookups. -File '/home/src/workspace/projects/node_modules/package.json' does not exist according to earlier cached lookups. -File '/home/src/workspace/projects/package.json' does not exist according to earlier cached lookups. -File '/home/src/workspace/package.json' does not exist according to earlier cached lookups. -File '/home/src/package.json' does not exist according to earlier cached lookups. -File '/home/package.json' does not exist according to earlier cached lookups. -File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspace/projects/node_modules/@typescript/package.json' does not exist. +File '/home/src/workspace/projects/node_modules/package.json' does not exist. +File '/home/src/workspace/projects/package.json' does not exist. +File '/home/src/workspace/package.json' does not exist. +File '/home/src/package.json' does not exist. +File '/home/package.json' does not exist. +File '/package.json' does not exist. FileWatcher:: Added:: WatchInfo: /home/src/workspace/projects/node_modules/@typescript/lib-webworker/index.d.ts 250 undefined Source file Reusing resolution of module '@typescript/lib-scripthost' from '/home/src/workspace/projects/__lib_node_modules_lookup_lib.scripthost.d.ts__.ts' of old program, it was not resolved. Reusing resolution of module '@typescript/lib-es5' from '/home/src/workspace/projects/__lib_node_modules_lookup_lib.es5.d.ts__.ts' of old program, it was not resolved. diff --git a/tests/baselines/reference/tscWatch/moduleResolution/alternateResult.js b/tests/baselines/reference/tscWatch/moduleResolution/alternateResult.js index c1bcb7c0d1d14..b88f1b59e6423 100644 --- a/tests/baselines/reference/tscWatch/moduleResolution/alternateResult.js +++ b/tests/baselines/reference/tscWatch/moduleResolution/alternateResult.js @@ -213,6 +213,15 @@ File '/home/src/projects/project/node_modules/foo/package.json' exists according File '/home/src/projects/project/node_modules/foo/index.d.ts' exists - use it as a name resolution result. Resolving real path for '/home/src/projects/project/node_modules/foo/index.mjs', result '/home/src/projects/project/node_modules/foo/index.mjs'. ======== Module name 'foo' was successfully resolved to '/home/src/projects/project/node_modules/foo/index.mjs' with Package ID 'foo/index.mjs@1.0.0'. ======== +DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project 0 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project 0 undefined Failed Lookup Locations +DirectoryWatcher:: Added:: WatchInfo: /home/src/projects 0 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects 0 undefined Failed Lookup Locations +DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Failed Lookup Locations +DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Failed Lookup Locations +FileWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/foo/package.json 2000 undefined File location affecting resolution ======== Resolving module 'bar' from '/home/src/projects/project/index.mts'. ======== Explicitly specified module resolution kind: 'Node16'. Resolving in ESM mode with conditions 'import', 'types', 'node'. @@ -285,6 +294,8 @@ File '/home/src/projects/project/node_modules/@types/bar/index.d.ts' exists - us 'package.json' does not have a 'peerDependencies' field. Resolving real path for '/home/src/projects/project/node_modules/bar/index.mjs', result '/home/src/projects/project/node_modules/bar/index.mjs'. ======== Module name 'bar' was successfully resolved to '/home/src/projects/project/node_modules/bar/index.mjs' with Package ID 'bar/index.mjs@1.0.0'. ======== +FileWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/bar/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types/bar/package.json 2000 undefined File location affecting resolution ======== Resolving module 'foo2' from '/home/src/projects/project/index.mts'. ======== Explicitly specified module resolution kind: 'Node16'. Resolving in ESM mode with conditions 'import', 'types', 'node'. @@ -305,6 +316,7 @@ Resolved under condition 'types'. Exiting conditional exports. Resolving real path for '/home/src/projects/project/node_modules/foo2/index.d.ts', result '/home/src/projects/project/node_modules/foo2/index.d.ts'. ======== Module name 'foo2' was successfully resolved to '/home/src/projects/project/node_modules/foo2/index.d.ts' with Package ID 'foo2/index.d.ts@1.0.0'. ======== +FileWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/foo2/package.json 2000 undefined File location affecting resolution ======== Resolving module 'bar2' from '/home/src/projects/project/index.mts'. ======== Explicitly specified module resolution kind: 'Node16'. Resolving in ESM mode with conditions 'import', 'types', 'node'. @@ -335,6 +347,8 @@ Resolved under condition 'types'. Exiting conditional exports. Resolving real path for '/home/src/projects/project/node_modules/@types/bar2/index.d.ts', result '/home/src/projects/project/node_modules/@types/bar2/index.d.ts'. ======== Module name 'bar2' was successfully resolved to '/home/src/projects/project/node_modules/@types/bar2/index.d.ts' with Package ID '@types/bar2/index.d.ts@1.0.0'. ======== +FileWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/bar2/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types/bar2/package.json 2000 undefined File location affecting resolution File '/home/src/projects/project/node_modules/foo2/package.json' exists according to earlier cached lookups. FileWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/foo2/index.d.ts 250 undefined Source file File '/home/src/projects/project/node_modules/@types/bar2/package.json' exists according to earlier cached lookups. @@ -346,20 +360,6 @@ File '/home/src/package.json' does not exist according to earlier cached lookups File '/home/package.json' does not exist according to earlier cached lookups. File '/package.json' does not exist according to earlier cached lookups. FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 250 undefined Source file -DirectoryWatcher:: Added:: WatchInfo: /home/src/projects 0 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects 0 undefined Failed Lookup Locations -DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Failed Lookup Locations -DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Failed Lookup Locations -DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project 0 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project 0 undefined Failed Lookup Locations -FileWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/foo/package.json 2000 undefined File location affecting resolution -FileWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/bar/package.json 2000 undefined File location affecting resolution -FileWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types/bar/package.json 2000 undefined File location affecting resolution -FileWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/foo2/package.json 2000 undefined File location affecting resolution -FileWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/bar2/package.json 2000 undefined File location affecting resolution -FileWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types/bar2/package.json 2000 undefined File location affecting resolution FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/package.json 2000 undefined File location affecting resolution FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/package.json 2000 undefined File location affecting resolution FileWatcher:: Added:: WatchInfo: /home/src/tslibs/package.json 2000 undefined File location affecting resolution @@ -1952,6 +1952,8 @@ File '/home/src/projects/project/node_modules/@types/bar2/index.d.ts' exists - u 'package.json' does not have a 'peerDependencies' field. Resolving real path for '/home/src/projects/project/node_modules/bar2/index.mjs', result '/home/src/projects/project/node_modules/bar2/index.mjs'. ======== Module name 'bar2' was successfully resolved to '/home/src/projects/project/node_modules/bar2/index.mjs' with Package ID 'bar2/index.mjs@1.0.0'. ======== +DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Failed Lookup Locations File '/home/src/projects/project/node_modules/foo/package.json' exists according to earlier cached lookups. File '/home/src/projects/project/node_modules/@types/bar/package.json' exists according to earlier cached lookups. File '/home/src/projects/project/node_modules/foo2/package.json' exists according to earlier cached lookups. @@ -1962,8 +1964,6 @@ File '/home/src/package.json' does not exist according to earlier cached lookups File '/home/package.json' does not exist according to earlier cached lookups. File '/package.json' does not exist according to earlier cached lookups. FileWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types/bar2/index.d.ts 250 undefined Source file -DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Failed Lookup Locations tsconfig.json:2:3 - error TS5110: Option 'module' must be set to 'Node16' when option 'moduleResolution' is set to 'Node16'. 2 "compilerOptions": { diff --git a/tests/baselines/reference/tscWatch/moduleResolution/ambient-module-names-are-resolved-correctly.js b/tests/baselines/reference/tscWatch/moduleResolution/ambient-module-names-are-resolved-correctly.js index 5aa81082f4e71..b2572e1b2e806 100644 --- a/tests/baselines/reference/tscWatch/moduleResolution/ambient-module-names-are-resolved-correctly.js +++ b/tests/baselines/reference/tscWatch/moduleResolution/ambient-module-names-are-resolved-correctly.js @@ -85,6 +85,8 @@ File '/home/src/workspaces/project/witha/node_modules/mymodule/index.tsx' does n File '/home/src/workspaces/project/witha/node_modules/mymodule/index.d.ts' exists - use it as a name resolution result. Resolving real path for '/home/src/workspaces/project/witha/node_modules/mymodule/index.d.ts', result '/home/src/workspaces/project/witha/node_modules/mymodule/index.d.ts'. ======== Module name 'mymodule' was successfully resolved to '/home/src/workspaces/project/witha/node_modules/mymodule/index.d.ts'. ======== +DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/witha 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/witha 1 undefined Failed Lookup Locations ======== Resolving module 'mymoduleutils' from '/home/src/workspaces/project/witha/a.ts'. ======== Module resolution kind is not specified, using 'Node10'. Loading module 'mymoduleutils' from 'node_modules' folder, target file types: TypeScript, Declaration. @@ -108,6 +110,10 @@ Directory '/home/src/node_modules' does not exist, skipping all lookups in it. Directory '/home/node_modules' does not exist, skipping all lookups in it. Directory '/node_modules' does not exist, skipping all lookups in it. ======== Module name 'mymoduleutils' was not resolved. ======== +DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Failed Lookup Locations +DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Failed Lookup Locations File '/home/src/workspaces/project/witha/node_modules/mymodule/package.json' does not exist according to earlier cached lookups. File '/home/src/workspaces/project/witha/node_modules/package.json' does not exist. File '/home/src/workspaces/project/witha/package.json' does not exist. @@ -131,6 +137,8 @@ File '/home/src/workspaces/project/withb/node_modules/mymodule/index.tsx' does n File '/home/src/workspaces/project/withb/node_modules/mymodule/index.d.ts' exists - use it as a name resolution result. Resolving real path for '/home/src/workspaces/project/withb/node_modules/mymodule/index.d.ts', result '/home/src/workspaces/project/withb/node_modules/mymodule/index.d.ts'. ======== Module name 'mymodule' was successfully resolved to '/home/src/workspaces/project/withb/node_modules/mymodule/index.d.ts'. ======== +DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/withb 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/withb 1 undefined Failed Lookup Locations ======== Resolving module 'mymoduleutils' from '/home/src/workspaces/project/withb/b.ts'. ======== Module resolution kind is not specified, using 'Node10'. Loading module 'mymoduleutils' from 'node_modules' folder, target file types: TypeScript, Declaration. @@ -151,14 +159,6 @@ File '/home/package.json' does not exist according to earlier cached lookups. File '/package.json' does not exist according to earlier cached lookups. FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/withb/node_modules/mymodule/index.d.ts 250 undefined Source file FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 250 undefined Source file -DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/witha 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/witha 1 undefined Failed Lookup Locations -DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Failed Lookup Locations -DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Failed Lookup Locations -DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/withb 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/withb 1 undefined Failed Lookup Locations FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/witha/node_modules/mymodule/package.json 2000 undefined File location affecting resolution FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/witha/node_modules/package.json 2000 undefined File location affecting resolution FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/witha/package.json 2000 undefined File location affecting resolution diff --git a/tests/baselines/reference/tscWatch/moduleResolution/late-discovered-dependency-symlink.js b/tests/baselines/reference/tscWatch/moduleResolution/late-discovered-dependency-symlink.js index 158541fa486f7..c6ce8c644c860 100644 --- a/tests/baselines/reference/tscWatch/moduleResolution/late-discovered-dependency-symlink.js +++ b/tests/baselines/reference/tscWatch/moduleResolution/late-discovered-dependency-symlink.js @@ -225,20 +225,7 @@ Output:: Reusing resolution of module 'package-b' from '/home/src/workspace/packageC/index.ts' of old program, it was successfully resolved to '/home/src/workspace/packageB/index.d.ts'. ======== Resolving module 'package-b' from '/home/src/workspace/packageC/package.json'. ======== -Module resolution kind is not specified, using 'Node10'. -Loading module 'package-b' from 'node_modules' folder, target file types: TypeScript, Declaration. -Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. -File '/home/src/workspace/packageC/node_modules/package-b/package.json' exists according to earlier cached lookups. -File '/home/src/workspace/packageC/node_modules/package-b.ts' does not exist. -File '/home/src/workspace/packageC/node_modules/package-b.tsx' does not exist. -File '/home/src/workspace/packageC/node_modules/package-b.d.ts' does not exist. -'package.json' does not have a 'typings' field. -'package.json' does not have a 'types' field. -'package.json' does not have a 'main' field. -File '/home/src/workspace/packageC/node_modules/package-b/index.ts' does not exist. -File '/home/src/workspace/packageC/node_modules/package-b/index.tsx' does not exist. -File '/home/src/workspace/packageC/node_modules/package-b/index.d.ts' exists - use it as a name resolution result. -Resolving real path for '/home/src/workspace/packageC/node_modules/package-b/index.d.ts', result '/home/src/workspace/packageB/index.d.ts'. +Resolution for module 'package-b' was found in cache from location '/home/src/workspace/packageC'. ======== Module name 'package-b' was successfully resolved to '/home/src/workspace/packageB/index.d.ts'. ======== ======== Resolving module 'package-a' from '/home/src/workspace/packageC/package.json'. ======== Module resolution kind is not specified, using 'Node10'. diff --git a/tests/baselines/reference/tscWatch/moduleResolution/module-resolutions-from-file-are-partially-used.js b/tests/baselines/reference/tscWatch/moduleResolution/module-resolutions-from-file-are-partially-used.js index f813048150870..212751295880d 100644 --- a/tests/baselines/reference/tscWatch/moduleResolution/module-resolutions-from-file-are-partially-used.js +++ b/tests/baselines/reference/tscWatch/moduleResolution/module-resolutions-from-file-are-partially-used.js @@ -291,26 +291,7 @@ File '/user/username/package.json' does not exist according to earlier cached lo File '/user/package.json' does not exist according to earlier cached lookups. File '/package.json' does not exist according to earlier cached lookups. ======== Resolving module 'pkg' from '/user/username/projects/myproject/a.ts'. ======== -Explicitly specified module resolution kind: 'Node16'. -Resolving in ESM mode with conditions 'import', 'types', 'node'. -File '/user/username/projects/myproject/package.json' does not exist according to earlier cached lookups. -File '/user/username/projects/package.json' does not exist according to earlier cached lookups. -File '/user/username/package.json' does not exist according to earlier cached lookups. -File '/user/package.json' does not exist according to earlier cached lookups. -File '/package.json' does not exist according to earlier cached lookups. -Loading module 'pkg' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration. -Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. -File '/user/username/projects/myproject/node_modules/pkg/package.json' exists according to earlier cached lookups. -Entering conditional exports. -Matched 'exports' condition 'import'. -Using 'exports' subpath '.' with target './import.js'. -File name '/user/username/projects/myproject/node_modules/pkg/import.js' has a '.js' extension - stripping it. -File '/user/username/projects/myproject/node_modules/pkg/import.ts' does not exist. -File '/user/username/projects/myproject/node_modules/pkg/import.tsx' does not exist. -File '/user/username/projects/myproject/node_modules/pkg/import.d.ts' exists - use it as a name resolution result. -Resolved under condition 'import'. -Exiting conditional exports. -Resolving real path for '/user/username/projects/myproject/node_modules/pkg/import.d.ts', result '/user/username/projects/myproject/node_modules/pkg/import.d.ts'. +Resolution for module 'pkg' was found in cache from location '/user/username/projects/myproject'. ======== Module name 'pkg' was successfully resolved to '/user/username/projects/myproject/node_modules/pkg/import.d.ts' with Package ID 'pkg/import.d.ts@0.0.1'. ======== File '/user/username/projects/myproject/node_modules/pkg/package.json' exists according to earlier cached lookups. File '/user/username/projects/myproject/package.json' does not exist according to earlier cached lookups. diff --git a/tests/baselines/reference/tscWatch/moduleResolution/module-resolutions-from-files-with-partially-used-import-attributes.js b/tests/baselines/reference/tscWatch/moduleResolution/module-resolutions-from-files-with-partially-used-import-attributes.js index 22039b213ce15..3c07741bffda9 100644 --- a/tests/baselines/reference/tscWatch/moduleResolution/module-resolutions-from-files-with-partially-used-import-attributes.js +++ b/tests/baselines/reference/tscWatch/moduleResolution/module-resolutions-from-files-with-partially-used-import-attributes.js @@ -291,26 +291,7 @@ File '/user/username/package.json' does not exist according to earlier cached lo File '/user/package.json' does not exist according to earlier cached lookups. File '/package.json' does not exist according to earlier cached lookups. ======== Resolving module 'pkg' from '/user/username/projects/myproject/a.ts'. ======== -Explicitly specified module resolution kind: 'Node16'. -Resolving in ESM mode with conditions 'import', 'types', 'node'. -File '/user/username/projects/myproject/package.json' does not exist according to earlier cached lookups. -File '/user/username/projects/package.json' does not exist according to earlier cached lookups. -File '/user/username/package.json' does not exist according to earlier cached lookups. -File '/user/package.json' does not exist according to earlier cached lookups. -File '/package.json' does not exist according to earlier cached lookups. -Loading module 'pkg' from 'node_modules' folder, target file types: TypeScript, JavaScript, Declaration. -Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. -File '/user/username/projects/myproject/node_modules/pkg/package.json' exists according to earlier cached lookups. -Entering conditional exports. -Matched 'exports' condition 'import'. -Using 'exports' subpath '.' with target './import.js'. -File name '/user/username/projects/myproject/node_modules/pkg/import.js' has a '.js' extension - stripping it. -File '/user/username/projects/myproject/node_modules/pkg/import.ts' does not exist. -File '/user/username/projects/myproject/node_modules/pkg/import.tsx' does not exist. -File '/user/username/projects/myproject/node_modules/pkg/import.d.ts' exists - use it as a name resolution result. -Resolved under condition 'import'. -Exiting conditional exports. -Resolving real path for '/user/username/projects/myproject/node_modules/pkg/import.d.ts', result '/user/username/projects/myproject/node_modules/pkg/import.d.ts'. +Resolution for module 'pkg' was found in cache from location '/user/username/projects/myproject'. ======== Module name 'pkg' was successfully resolved to '/user/username/projects/myproject/node_modules/pkg/import.d.ts' with Package ID 'pkg/import.d.ts@0.0.1'. ======== File '/user/username/projects/myproject/node_modules/pkg/package.json' exists according to earlier cached lookups. File '/user/username/projects/myproject/package.json' does not exist according to earlier cached lookups. diff --git a/tests/baselines/reference/tscWatch/moduleResolution/package-json-file-is-edited-when-package-json-with-type-module-exists.js b/tests/baselines/reference/tscWatch/moduleResolution/package-json-file-is-edited-when-package-json-with-type-module-exists.js index 7c2b35aa3385e..892ddf75c797d 100644 --- a/tests/baselines/reference/tscWatch/moduleResolution/package-json-file-is-edited-when-package-json-with-type-module-exists.js +++ b/tests/baselines/reference/tscWatch/moduleResolution/package-json-file-is-edited-when-package-json-with-type-module-exists.js @@ -843,9 +843,9 @@ File '/home/package.json' does not exist according to earlier cached lookups. File '/package.json' does not exist according to earlier cached lookups. File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. File '/user/username/projects/myproject/package.json' does not exist. -File '/user/username/projects/package.json' does not exist according to earlier cached lookups. -File '/user/username/package.json' does not exist according to earlier cached lookups. -File '/user/package.json' does not exist according to earlier cached lookups. +File '/user/username/projects/package.json' does not exist. +File '/user/username/package.json' does not exist. +File '/user/package.json' does not exist. File '/package.json' does not exist according to earlier cached lookups. File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. File '/user/username/projects/myproject/package.json' does not exist according to earlier cached lookups. diff --git a/tests/baselines/reference/tscWatch/moduleResolution/package-json-file-is-edited.js b/tests/baselines/reference/tscWatch/moduleResolution/package-json-file-is-edited.js index 9d0e8f493e06a..6a04c0bd7049d 100644 --- a/tests/baselines/reference/tscWatch/moduleResolution/package-json-file-is-edited.js +++ b/tests/baselines/reference/tscWatch/moduleResolution/package-json-file-is-edited.js @@ -69,10 +69,10 @@ File '/user/username/projects/myproject/src/fileB.mjs.js' does not exist. File '/user/username/projects/myproject/src/fileB.mjs.jsx' does not exist. Directory '/user/username/projects/myproject/src/fileB.mjs' does not exist, skipping all lookups in it. ======== Module name './fileB.mjs' was not resolved. ======== -DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/fileB.mjs 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/fileB.mjs 1 undefined Failed Lookup Locations DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Failed Lookup Locations +DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/fileB.mjs 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/fileB.mjs 1 undefined Failed Lookup Locations File '/home/src/tslibs/TS/Lib/package.json' does not exist. File '/home/src/tslibs/TS/package.json' does not exist. File '/home/src/tslibs/package.json' does not exist. @@ -711,9 +711,9 @@ File '/home/src/tslibs/package.json' does not exist according to earlier cached File '/home/src/package.json' does not exist according to earlier cached lookups. File '/home/package.json' does not exist according to earlier cached lookups. File '/package.json' does not exist according to earlier cached lookups. +FileWatcher:: Close:: WatchInfo: /user/username/projects/package.json 2000 undefined File location affecting resolution DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/fileB.mjs 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/fileB.mjs 1 undefined Failed Lookup Locations -FileWatcher:: Close:: WatchInfo: /user/username/projects/package.json 2000 undefined File location affecting resolution src/fileA.ts:1:21 - error TS2307: Cannot find module './fileB.mjs' or its corresponding type declarations. 1 import { foo } from "./fileB.mjs"; @@ -847,9 +847,9 @@ File '/home/package.json' does not exist according to earlier cached lookups. File '/package.json' does not exist according to earlier cached lookups. File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. File '/user/username/projects/myproject/package.json' does not exist. -File '/user/username/projects/package.json' does not exist according to earlier cached lookups. -File '/user/username/package.json' does not exist according to earlier cached lookups. -File '/user/package.json' does not exist according to earlier cached lookups. +File '/user/username/projects/package.json' does not exist. +File '/user/username/package.json' does not exist. +File '/user/package.json' does not exist. File '/package.json' does not exist according to earlier cached lookups. File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. File '/user/username/projects/myproject/package.json' does not exist according to earlier cached lookups. diff --git a/tests/baselines/reference/tscWatch/moduleResolution/type-reference-resolutions-reuse.js b/tests/baselines/reference/tscWatch/moduleResolution/type-reference-resolutions-reuse.js index a87e21c0161ad..3f51269ef7ffc 100644 --- a/tests/baselines/reference/tscWatch/moduleResolution/type-reference-resolutions-reuse.js +++ b/tests/baselines/reference/tscWatch/moduleResolution/type-reference-resolutions-reuse.js @@ -307,23 +307,8 @@ File '/user/username/projects/package.json' does not exist according to earlier File '/user/username/package.json' does not exist according to earlier cached lookups. File '/user/package.json' does not exist according to earlier cached lookups. File '/package.json' does not exist according to earlier cached lookups. -======== Resolving type reference directive 'pkg', containing file '/user/username/projects/myproject/a.ts', root directory '/user/username/projects/myproject/node_modules/@types,/user/username/projects/node_modules/@types,/user/username/node_modules/@types,/user/node_modules/@types,/node_modules/@types'. ======== -Resolving with primary search path '/user/username/projects/myproject/node_modules/@types, /user/username/projects/node_modules/@types, /user/username/node_modules/@types, /user/node_modules/@types, /node_modules/@types'. -Directory '/user/username/projects/node_modules/@types' does not exist, skipping all lookups in it. -Directory '/user/username/node_modules/@types' does not exist, skipping all lookups in it. -Directory '/user/node_modules/@types' does not exist, skipping all lookups in it. -Directory '/node_modules/@types' does not exist, skipping all lookups in it. -Looking up in 'node_modules' folder, initial location '/user/username/projects/myproject'. -Searching all ancestor node_modules directories for preferred extensions: Declaration. -File '/user/username/projects/myproject/node_modules/pkg/package.json' exists according to earlier cached lookups. -Entering conditional exports. -Matched 'exports' condition 'import'. -Using 'exports' subpath '.' with target './import.js'. -File name '/user/username/projects/myproject/node_modules/pkg/import.js' has a '.js' extension - stripping it. -File '/user/username/projects/myproject/node_modules/pkg/import.d.ts' exists - use it as a name resolution result. -Resolved under condition 'import'. -Exiting conditional exports. -Resolving real path for '/user/username/projects/myproject/node_modules/pkg/import.d.ts', result '/user/username/projects/myproject/node_modules/pkg/import.d.ts'. +======== Resolving type reference directive 'pkg', containing file '/user/username/projects/myproject/a.ts'. ======== +Resolution for type reference directive 'pkg' was found in cache from location '/user/username/projects/myproject'. ======== Type reference directive 'pkg' was successfully resolved to '/user/username/projects/myproject/node_modules/pkg/import.d.ts' with Package ID 'pkg/import.d.ts@0.0.1', primary: false. ======== File '/user/username/projects/myproject/node_modules/pkg/package.json' exists according to earlier cached lookups. File '/user/username/projects/myproject/package.json' does not exist according to earlier cached lookups. diff --git a/tests/baselines/reference/tscWatch/programUpdates/when-changing-checkJs-of-config-file.js b/tests/baselines/reference/tscWatch/programUpdates/when-changing-checkJs-of-config-file.js index 8acfac30d9445..9d3111fbc9466 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/when-changing-checkJs-of-config-file.js +++ b/tests/baselines/reference/tscWatch/programUpdates/when-changing-checkJs-of-config-file.js @@ -40,10 +40,10 @@ CreatingProgramWith:: roots: ["/user/username/projects/myproject/b.ts"] options: {"checkJs":false,"watch":true,"project":"/user/username/projects/myproject","extendedDiagnostics":true,"configFilePath":"/user/username/projects/myproject/tsconfig.json"} FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b.ts 250 undefined Source file -DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a.js 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a.js 1 undefined Failed Lookup Locations DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Failed Lookup Locations +DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a.js 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a.js 1 undefined Failed Lookup Locations FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 250 undefined Source file DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Type roots Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Type roots diff --git a/tests/baselines/reference/tscWatch/programUpdates/when-changing-noUncheckedSideEffectImports-of-config-file.js b/tests/baselines/reference/tscWatch/programUpdates/when-changing-noUncheckedSideEffectImports-of-config-file.js index 5deb4e8abe2a9..a3865fd998075 100644 --- a/tests/baselines/reference/tscWatch/programUpdates/when-changing-noUncheckedSideEffectImports-of-config-file.js +++ b/tests/baselines/reference/tscWatch/programUpdates/when-changing-noUncheckedSideEffectImports-of-config-file.js @@ -37,11 +37,11 @@ CreatingProgramWith:: roots: ["/user/username/projects/myproject/a.ts"] options: {"noUncheckedSideEffectImports":false,"watch":true,"project":"/user/username/projects/myproject","extendedDiagnostics":true,"configFilePath":"/user/username/projects/myproject/tsconfig.json"} FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a.ts 250 undefined Source file -FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 250 undefined Source file DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Failed Lookup Locations DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined Failed Lookup Locations +FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 250 undefined Source file DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Type roots Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Type roots DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Type roots diff --git a/tests/baselines/reference/tscWatch/projectsWithReferences/on-transitive-references-in-different-folders-with-no-files-clause.js b/tests/baselines/reference/tscWatch/projectsWithReferences/on-transitive-references-in-different-folders-with-no-files-clause.js index 9fd4fb8862ce1..1d61a9e305c99 100644 --- a/tests/baselines/reference/tscWatch/projectsWithReferences/on-transitive-references-in-different-folders-with-no-files-clause.js +++ b/tests/baselines/reference/tscWatch/projectsWithReferences/on-transitive-references-in-different-folders-with-no-files-clause.js @@ -601,7 +601,7 @@ File '/user/username/projects/transitiveReferences/nrefs/a.d.ts' exists - use it ======== Module name '@ref/a' was successfully resolved to '/user/username/projects/transitiveReferences/nrefs/a.d.ts'. ======== ======== Resolving module '@ref/a' from '/user/username/projects/transitiveReferences/b/index.ts'. ======== Using compiler options of project reference redirect '/user/username/projects/transitiveReferences/b/tsconfig.json'. -Module resolution kind is not specified, using 'Node10'. +Resolution for module '@ref/a' was found in cache from location '/user/username/projects/transitiveReferences/b'. ======== Module name '@ref/a' was successfully resolved to '/user/username/projects/transitiveReferences/a/index.ts'. ======== ../../../../home/src/tslibs/TS/Lib/lib.d.ts Default library for target 'es5' @@ -778,7 +778,7 @@ File '/user/username/projects/transitiveReferences/refs/a.d.ts' exists - use it ======== Module name '@ref/a' was successfully resolved to '/user/username/projects/transitiveReferences/refs/a.d.ts'. ======== ======== Resolving module '@ref/a' from '/user/username/projects/transitiveReferences/b/index.ts'. ======== Using compiler options of project reference redirect '/user/username/projects/transitiveReferences/b/tsconfig.json'. -Module resolution kind is not specified, using 'Node10'. +Resolution for module '@ref/a' was found in cache from location '/user/username/projects/transitiveReferences/b'. ======== Module name '@ref/a' was successfully resolved to '/user/username/projects/transitiveReferences/a/index.ts'. ======== ../../../../home/src/tslibs/TS/Lib/lib.d.ts Default library for target 'es5' diff --git a/tests/baselines/reference/tscWatch/projectsWithReferences/on-transitive-references-in-different-folders.js b/tests/baselines/reference/tscWatch/projectsWithReferences/on-transitive-references-in-different-folders.js index 3c9d2854b6ba2..8829b8a8adc3f 100644 --- a/tests/baselines/reference/tscWatch/projectsWithReferences/on-transitive-references-in-different-folders.js +++ b/tests/baselines/reference/tscWatch/projectsWithReferences/on-transitive-references-in-different-folders.js @@ -611,7 +611,7 @@ File '/user/username/projects/transitiveReferences/nrefs/a.d.ts' exists - use it ======== Module name '@ref/a' was successfully resolved to '/user/username/projects/transitiveReferences/nrefs/a.d.ts'. ======== ======== Resolving module '@ref/a' from '/user/username/projects/transitiveReferences/b/index.ts'. ======== Using compiler options of project reference redirect '/user/username/projects/transitiveReferences/b/tsconfig.json'. -Module resolution kind is not specified, using 'Node10'. +Resolution for module '@ref/a' was found in cache from location '/user/username/projects/transitiveReferences/b'. ======== Module name '@ref/a' was successfully resolved to '/user/username/projects/transitiveReferences/a/index.ts'. ======== ../../../../home/src/tslibs/TS/Lib/lib.d.ts Default library for target 'es5' @@ -789,7 +789,7 @@ File '/user/username/projects/transitiveReferences/refs/a.d.ts' exists - use it ======== Module name '@ref/a' was successfully resolved to '/user/username/projects/transitiveReferences/refs/a.d.ts'. ======== ======== Resolving module '@ref/a' from '/user/username/projects/transitiveReferences/b/index.ts'. ======== Using compiler options of project reference redirect '/user/username/projects/transitiveReferences/b/tsconfig.json'. -Module resolution kind is not specified, using 'Node10'. +Resolution for module '@ref/a' was found in cache from location '/user/username/projects/transitiveReferences/b'. ======== Module name '@ref/a' was successfully resolved to '/user/username/projects/transitiveReferences/a/index.ts'. ======== ../../../../home/src/tslibs/TS/Lib/lib.d.ts Default library for target 'es5' diff --git a/tests/baselines/reference/tscWatch/projectsWithReferences/on-transitive-references-with-nodenext.js b/tests/baselines/reference/tscWatch/projectsWithReferences/on-transitive-references-with-nodenext.js index 97426995537cc..ef76add072694 100644 --- a/tests/baselines/reference/tscWatch/projectsWithReferences/on-transitive-references-with-nodenext.js +++ b/tests/baselines/reference/tscWatch/projectsWithReferences/on-transitive-references-with-nodenext.js @@ -725,7 +725,7 @@ File '/user/package.json' does not exist according to earlier cached lookups. File '/package.json' does not exist according to earlier cached lookups. ======== Resolving module '@ref/a' from '/user/username/projects/transitiveReferences/b.ts'. ======== Using compiler options of project reference redirect '/user/username/projects/transitiveReferences/tsconfig.b.json'. -Module resolution kind is not specified, using 'NodeNext'. +Resolution for module '@ref/a' was found in cache from location '/user/username/projects/transitiveReferences'. ======== Module name '@ref/a' was successfully resolved to '/user/username/projects/transitiveReferences/a.ts'. ======== File '/user/username/projects/transitiveReferences/package.json' does not exist according to earlier cached lookups. File '/user/username/projects/package.json' does not exist according to earlier cached lookups. @@ -944,14 +944,14 @@ File '/user/package.json' does not exist according to earlier cached lookups. File '/package.json' does not exist according to earlier cached lookups. ======== Resolving module '@ref/a' from '/user/username/projects/transitiveReferences/b.ts'. ======== Using compiler options of project reference redirect '/user/username/projects/transitiveReferences/tsconfig.b.json'. -Module resolution kind is not specified, using 'NodeNext'. +Resolution for module '@ref/a' was found in cache from location '/user/username/projects/transitiveReferences'. ======== Module name '@ref/a' was successfully resolved to '/user/username/projects/transitiveReferences/a.ts'. ======== File '/user/username/projects/transitiveReferences/package.json' does not exist according to earlier cached lookups. File '/user/username/projects/package.json' does not exist according to earlier cached lookups. File '/user/username/package.json' does not exist according to earlier cached lookups. File '/user/package.json' does not exist according to earlier cached lookups. File '/package.json' does not exist according to earlier cached lookups. -File '/user/username/projects/transitiveReferences/refs/package.json' does not exist according to earlier cached lookups. +File '/user/username/projects/transitiveReferences/refs/package.json' does not exist. File '/user/username/projects/transitiveReferences/package.json' does not exist according to earlier cached lookups. File '/user/username/projects/package.json' does not exist according to earlier cached lookups. File '/user/username/package.json' does not exist according to earlier cached lookups. @@ -1150,7 +1150,7 @@ File '/package.json' does not exist according to earlier cached lookups. Using compiler options of project reference redirect '/user/username/projects/transitiveReferences/tsconfig.b.json'. Module resolution kind is not specified, using 'NodeNext'. ======== Module name '@ref/a' was successfully resolved to '/user/username/projects/transitiveReferences/nrefs/a.d.ts'. ======== -File '/user/username/projects/transitiveReferences/nrefs/package.json' does not exist according to earlier cached lookups. +File '/user/username/projects/transitiveReferences/nrefs/package.json' does not exist. File '/user/username/projects/transitiveReferences/package.json' does not exist according to earlier cached lookups. File '/user/username/projects/package.json' does not exist according to earlier cached lookups. File '/user/username/package.json' does not exist according to earlier cached lookups. @@ -1349,7 +1349,7 @@ File '/user/package.json' does not exist according to earlier cached lookups. File '/package.json' does not exist according to earlier cached lookups. ======== Resolving module '@ref/a' from '/user/username/projects/transitiveReferences/b.ts'. ======== Using compiler options of project reference redirect '/user/username/projects/transitiveReferences/tsconfig.b.json'. -Module resolution kind is not specified, using 'NodeNext'. +Resolution for module '@ref/a' was found in cache from location '/user/username/projects/transitiveReferences'. ======== Module name '@ref/a' was successfully resolved to '/user/username/projects/transitiveReferences/refs/a.d.ts'. ======== File '/user/username/projects/transitiveReferences/refs/package.json' does not exist according to earlier cached lookups. File '/user/username/projects/transitiveReferences/package.json' does not exist according to earlier cached lookups. @@ -1512,16 +1512,7 @@ File '/user/username/package.json' does not exist according to earlier cached lo File '/user/package.json' does not exist according to earlier cached lookups. File '/package.json' does not exist according to earlier cached lookups. ======== Resolving module '@ref/a' from '/user/username/projects/transitiveReferences/b.ts'. ======== -Module resolution kind is not specified, using 'NodeNext'. -Resolving in CJS mode with conditions 'require', 'types', 'node'. -'baseUrl' option is set to '/user/username/projects/transitiveReferences', using this value to resolve non-relative module name '@ref/a'. -'paths' option is specified, looking for a pattern to match module name '@ref/a'. -Module name '@ref/a', matched pattern '@ref/*'. -Trying substitution './refs/*', candidate module location: './refs/a'. -Loading module as file / folder, candidate module location '/user/username/projects/transitiveReferences/refs/a', target file types: TypeScript, JavaScript, Declaration. -File '/user/username/projects/transitiveReferences/refs/a.ts' does not exist. -File '/user/username/projects/transitiveReferences/refs/a.tsx' does not exist. -File '/user/username/projects/transitiveReferences/refs/a.d.ts' exists - use it as a name resolution result. +Resolution for module '@ref/a' was found in cache from location '/user/username/projects/transitiveReferences'. ======== Module name '@ref/a' was successfully resolved to '/user/username/projects/transitiveReferences/refs/a.d.ts'. ======== File '/user/username/projects/transitiveReferences/refs/package.json' does not exist according to earlier cached lookups. File '/user/username/projects/transitiveReferences/package.json' does not exist according to earlier cached lookups. diff --git a/tests/baselines/reference/tscWatch/projectsWithReferences/on-transitive-references.js b/tests/baselines/reference/tscWatch/projectsWithReferences/on-transitive-references.js index 4b5f125a98818..498690c29d1ec 100644 --- a/tests/baselines/reference/tscWatch/projectsWithReferences/on-transitive-references.js +++ b/tests/baselines/reference/tscWatch/projectsWithReferences/on-transitive-references.js @@ -597,7 +597,7 @@ File '/user/username/projects/transitiveReferences/nrefs/a.d.ts' exists - use it ======== Module name '@ref/a' was successfully resolved to '/user/username/projects/transitiveReferences/nrefs/a.d.ts'. ======== ======== Resolving module '@ref/a' from '/user/username/projects/transitiveReferences/b.ts'. ======== Using compiler options of project reference redirect '/user/username/projects/transitiveReferences/tsconfig.b.json'. -Module resolution kind is not specified, using 'Node10'. +Resolution for module '@ref/a' was found in cache from location '/user/username/projects/transitiveReferences'. ======== Module name '@ref/a' was successfully resolved to '/user/username/projects/transitiveReferences/a.ts'. ======== ../../../../home/src/tslibs/TS/Lib/lib.d.ts Default library for target 'es5' @@ -763,7 +763,7 @@ File '/user/username/projects/transitiveReferences/refs/a.d.ts' exists - use it ======== Module name '@ref/a' was successfully resolved to '/user/username/projects/transitiveReferences/refs/a.d.ts'. ======== ======== Resolving module '@ref/a' from '/user/username/projects/transitiveReferences/b.ts'. ======== Using compiler options of project reference redirect '/user/username/projects/transitiveReferences/tsconfig.b.json'. -Module resolution kind is not specified, using 'Node10'. +Resolution for module '@ref/a' was found in cache from location '/user/username/projects/transitiveReferences'. ======== Module name '@ref/a' was successfully resolved to '/user/username/projects/transitiveReferences/a.ts'. ======== ../../../../home/src/tslibs/TS/Lib/lib.d.ts Default library for target 'es5' @@ -1067,7 +1067,7 @@ Reusing resolution of module './b' from '/user/username/projects/transitiveRefer Reusing resolution of module '@ref/a' from '/user/username/projects/transitiveReferences/c.ts' of old program, it was successfully resolved to '/user/username/projects/transitiveReferences/refs/a.d.ts'. ======== Resolving module '@ref/a' from '/user/username/projects/transitiveReferences/b.ts'. ======== Using compiler options of project reference redirect '/user/username/projects/transitiveReferences/tsconfig.b.json'. -Module resolution kind is not specified, using 'Node10'. +Resolution for module '@ref/a' was found in cache from location '/user/username/projects/transitiveReferences'. ======== Module name '@ref/a' was successfully resolved to '/user/username/projects/transitiveReferences/refs/a.d.ts'. ======== ../../../../home/src/tslibs/TS/Lib/lib.d.ts Default library for target 'es5' @@ -1187,15 +1187,7 @@ Output:: Reusing resolution of module './b' from '/user/username/projects/transitiveReferences/c.ts' of old program, it was successfully resolved to '/user/username/projects/transitiveReferences/b.ts'. Reusing resolution of module '@ref/a' from '/user/username/projects/transitiveReferences/c.ts' of old program, it was successfully resolved to '/user/username/projects/transitiveReferences/refs/a.d.ts'. ======== Resolving module '@ref/a' from '/user/username/projects/transitiveReferences/b.ts'. ======== -Module resolution kind is not specified, using 'Node10'. -'baseUrl' option is set to '/user/username/projects/transitiveReferences', using this value to resolve non-relative module name '@ref/a'. -'paths' option is specified, looking for a pattern to match module name '@ref/a'. -Module name '@ref/a', matched pattern '@ref/*'. -Trying substitution './refs/*', candidate module location: './refs/a'. -Loading module as file / folder, candidate module location '/user/username/projects/transitiveReferences/refs/a', target file types: TypeScript, Declaration. -File '/user/username/projects/transitiveReferences/refs/a.ts' does not exist. -File '/user/username/projects/transitiveReferences/refs/a.tsx' does not exist. -File '/user/username/projects/transitiveReferences/refs/a.d.ts' exists - use it as a name resolution result. +Resolution for module '@ref/a' was found in cache from location '/user/username/projects/transitiveReferences'. ======== Module name '@ref/a' was successfully resolved to '/user/username/projects/transitiveReferences/refs/a.d.ts'. ======== tsconfig.c.json:14:5 - error TS6053: File '/user/username/projects/transitiveReferences/tsconfig.b.json' not found. diff --git a/tests/baselines/reference/tscWatch/resolutionCache/multiple-projects-with-redirect-options.js b/tests/baselines/reference/tscWatch/resolutionCache/multiple-projects-with-redirect-options.js new file mode 100644 index 0000000000000..2475e86b86800 --- /dev/null +++ b/tests/baselines/reference/tscWatch/resolutionCache/multiple-projects-with-redirect-options.js @@ -0,0 +1,1077 @@ +currentDirectory:: /home/src/workspaces/project useCaseSensitiveFileNames:: false +Input:: +//// [/home/src/workspaces/project/tsconfig.a.json] +{ + "compilerOptions": { + "composite": true, + "traceResolution": true + }, + "files": [ + "aMain.ts", + "aFileWithImports.ts", + "aRandomFileForImport.ts", + "aRandomFileForImport2.ts" + ] +} + +//// [/home/src/workspaces/project/aMain.ts] +export const x = 10; + +//// [/home/src/workspaces/project/aFileWithImports.ts] +import type { ImportInterface0 } from "pkg0"; +export { x } from "./aRandomFileForImport"; +export { x as x2 } from "./aRandomFileForImport2"; +export const y = 10; + + +//// [/home/src/workspaces/project/aRandomFileForImport.ts] +export const x = 10; + +//// [/home/src/workspaces/project/aRandomFileForImport2.ts] +export const x = 10; + +//// [/home/src/workspaces/project/node_modules/pkg0/index.d.ts] +export interface ImportInterface0 {} + +//// [/home/src/workspaces/project/tsconfig.b.json] +{ + "compilerOptions": { + "composite": true, + "traceResolution": true + }, + "files": [ + "bMain.ts", + "bFileWithImports.ts", + "bRandomFileForImport.ts", + "bRandomFileForImport2.ts" + ], + "references": [ + { + "path": "./tsconfig.a.json" + } + ] +} + +//// [/home/src/workspaces/project/bMain.ts] +export const x = 10; + +//// [/home/src/workspaces/project/bFileWithImports.ts] +export { y } from "./aFileWithImports"; +export { x } from "./bRandomFileForImport"; +import type { ImportInterface0 } from "pkg0"; + + +//// [/home/src/workspaces/project/bRandomFileForImport.ts] +export const x = 10; + +//// [/home/src/workspaces/project/bRandomFileForImport2.ts] +export const x = 10; + +//// [/home/src/workspaces/project/tsconfig.json] +{ + "compilerOptions": { + "composite": true, + "traceResolution": true, + "module": "amd" + }, + "files": [ + "cMain.ts", + "cFileWithImports.ts", + "cRandomFileForImport.ts", + "cRandomFileForImport2.ts" + ], + "references": [ + { + "path": "./tsconfig.a.json" + }, + { + "path": "./tsconfig.b.json" + } + ] +} + +//// [/home/src/workspaces/project/cMain.ts] +export const x = 10; + +//// [/home/src/workspaces/project/cFileWithImports.ts] +import { y } from "./bFileWithImports"; +import type { ImportInterface0 } from "pkg0"; + + +//// [/home/src/workspaces/project/cRandomFileForImport.ts] +export const x = 10; + +//// [/home/src/workspaces/project/cRandomFileForImport2.ts] +export const x = 10; + +//// [/home/src/workspaces/project/pkg0.d.ts] +export interface ImportInterface0 {} + +//// [/home/src/tslibs/TS/Lib/lib.d.ts] +/// +interface Boolean {} +interface Function {} +interface CallableFunction {} +interface NewableFunction {} +interface IArguments {} +interface Number { toExponential: any; } +interface Object {} +interface RegExp {} +interface String { charAt: any; } +interface Array { length: number; [n: number]: T; } +interface ReadonlyArray {} +declare const console: { log(msg: any): void; }; + +//// [/home/src/workspaces/project/aMain.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/aMain.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/aRandomFileForImport.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/aRandomFileForImport.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/aRandomFileForImport2.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/aRandomFileForImport2.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/aFileWithImports.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.y = exports.x2 = exports.x = void 0; +var aRandomFileForImport_1 = require("./aRandomFileForImport"); +Object.defineProperty(exports, "x", { enumerable: true, get: function () { return aRandomFileForImport_1.x; } }); +var aRandomFileForImport2_1 = require("./aRandomFileForImport2"); +Object.defineProperty(exports, "x2", { enumerable: true, get: function () { return aRandomFileForImport2_1.x; } }); +exports.y = 10; + + +//// [/home/src/workspaces/project/aFileWithImports.d.ts] +export { x } from "./aRandomFileForImport"; +export { x as x2 } from "./aRandomFileForImport2"; +export declare const y = 10; + + +//// [/home/src/workspaces/project/tsconfig.a.tsbuildinfo] +{"fileNames":["../../tslibs/ts/lib/lib.d.ts","./amain.ts","./node_modules/pkg0/index.d.ts","./arandomfileforimport.ts","./arandomfileforimport2.ts","./afilewithimports.ts"],"fileIdsList":[[3,4,5]],"fileInfos":[{"version":"3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n"},{"version":"769951468-export interface ImportInterface0 {}","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n"},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n"},{"version":"25172849050-import type { ImportInterface0 } from \"pkg0\";\nexport { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport const y = 10;\n","signature":"-19407286966-export { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport declare const y = 10;\n"}],"root":[2,[4,6]],"options":{"composite":true},"referencedMap":[[6,1]],"latestChangedDtsFile":"./aFileWithImports.d.ts","version":"FakeTSVersion"} + +//// [/home/src/workspaces/project/tsconfig.a.tsbuildinfo.readable.baseline.txt] +{ + "fileNames": [ + "../../tslibs/ts/lib/lib.d.ts", + "./amain.ts", + "./node_modules/pkg0/index.d.ts", + "./arandomfileforimport.ts", + "./arandomfileforimport2.ts", + "./afilewithimports.ts" + ], + "fileIdsList": [ + [ + "./node_modules/pkg0/index.d.ts", + "./arandomfileforimport.ts", + "./arandomfileforimport2.ts" + ] + ], + "fileInfos": { + "../../tslibs/ts/lib/lib.d.ts": { + "original": { + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true + }, + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "signature": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true + }, + "./amain.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./node_modules/pkg0/index.d.ts": { + "original": { + "version": "769951468-export interface ImportInterface0 {}", + "impliedFormat": 1 + }, + "version": "769951468-export interface ImportInterface0 {}", + "signature": "769951468-export interface ImportInterface0 {}", + "impliedFormat": "commonjs" + }, + "./arandomfileforimport.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./arandomfileforimport2.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./afilewithimports.ts": { + "original": { + "version": "25172849050-import type { ImportInterface0 } from \"pkg0\";\nexport { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport const y = 10;\n", + "signature": "-19407286966-export { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport declare const y = 10;\n" + }, + "version": "25172849050-import type { ImportInterface0 } from \"pkg0\";\nexport { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport const y = 10;\n", + "signature": "-19407286966-export { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport declare const y = 10;\n" + } + }, + "root": [ + [ + 2, + "./amain.ts" + ], + [ + [ + 4, + 6 + ], + [ + "./arandomfileforimport.ts", + "./arandomfileforimport2.ts", + "./afilewithimports.ts" + ] + ] + ], + "options": { + "composite": true + }, + "referencedMap": { + "./afilewithimports.ts": [ + "./node_modules/pkg0/index.d.ts", + "./arandomfileforimport.ts", + "./arandomfileforimport2.ts" + ] + }, + "latestChangedDtsFile": "./aFileWithImports.d.ts", + "version": "FakeTSVersion", + "size": 1587 +} + +//// [/home/src/workspaces/project/bMain.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/bMain.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/bRandomFileForImport.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/bRandomFileForImport.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/bFileWithImports.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = exports.y = void 0; +var aFileWithImports_1 = require("./aFileWithImports"); +Object.defineProperty(exports, "y", { enumerable: true, get: function () { return aFileWithImports_1.y; } }); +var bRandomFileForImport_1 = require("./bRandomFileForImport"); +Object.defineProperty(exports, "x", { enumerable: true, get: function () { return bRandomFileForImport_1.x; } }); + + +//// [/home/src/workspaces/project/bFileWithImports.d.ts] +export { y } from "./aFileWithImports"; +export { x } from "./bRandomFileForImport"; + + +//// [/home/src/workspaces/project/bRandomFileForImport2.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/bRandomFileForImport2.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/tsconfig.b.tsbuildinfo] +{"fileNames":["../../tslibs/ts/lib/lib.d.ts","./bmain.ts","./arandomfileforimport.d.ts","./arandomfileforimport2.d.ts","./afilewithimports.d.ts","./brandomfileforimport.ts","./node_modules/pkg0/index.d.ts","./bfilewithimports.ts","./brandomfileforimport2.ts"],"fileIdsList":[[3,4],[5,6,7]],"fileInfos":[{"version":"3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n"},"-6821242887-export declare const x = 10;\n","-6821242887-export declare const x = 10;\n","-19407286966-export { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport declare const y = 10;\n",{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n"},{"version":"769951468-export interface ImportInterface0 {}","impliedFormat":1},{"version":"-16966571634-export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\nimport type { ImportInterface0 } from \"pkg0\";\n","signature":"-7362913554-export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\n"},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n"}],"root":[2,6,8,9],"options":{"composite":true},"referencedMap":[[5,1],[8,2]],"latestChangedDtsFile":"./bRandomFileForImport2.d.ts","version":"FakeTSVersion"} + +//// [/home/src/workspaces/project/tsconfig.b.tsbuildinfo.readable.baseline.txt] +{ + "fileNames": [ + "../../tslibs/ts/lib/lib.d.ts", + "./bmain.ts", + "./arandomfileforimport.d.ts", + "./arandomfileforimport2.d.ts", + "./afilewithimports.d.ts", + "./brandomfileforimport.ts", + "./node_modules/pkg0/index.d.ts", + "./bfilewithimports.ts", + "./brandomfileforimport2.ts" + ], + "fileIdsList": [ + [ + "./arandomfileforimport.d.ts", + "./arandomfileforimport2.d.ts" + ], + [ + "./afilewithimports.d.ts", + "./brandomfileforimport.ts", + "./node_modules/pkg0/index.d.ts" + ] + ], + "fileInfos": { + "../../tslibs/ts/lib/lib.d.ts": { + "original": { + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true + }, + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "signature": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true + }, + "./bmain.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./arandomfileforimport.d.ts": { + "version": "-6821242887-export declare const x = 10;\n", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./arandomfileforimport2.d.ts": { + "version": "-6821242887-export declare const x = 10;\n", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./afilewithimports.d.ts": { + "version": "-19407286966-export { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport declare const y = 10;\n", + "signature": "-19407286966-export { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport declare const y = 10;\n" + }, + "./brandomfileforimport.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./node_modules/pkg0/index.d.ts": { + "original": { + "version": "769951468-export interface ImportInterface0 {}", + "impliedFormat": 1 + }, + "version": "769951468-export interface ImportInterface0 {}", + "signature": "769951468-export interface ImportInterface0 {}", + "impliedFormat": "commonjs" + }, + "./bfilewithimports.ts": { + "original": { + "version": "-16966571634-export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\nimport type { ImportInterface0 } from \"pkg0\";\n", + "signature": "-7362913554-export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\n" + }, + "version": "-16966571634-export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\nimport type { ImportInterface0 } from \"pkg0\";\n", + "signature": "-7362913554-export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\n" + }, + "./brandomfileforimport2.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + } + }, + "root": [ + [ + 2, + "./bmain.ts" + ], + [ + 6, + "./brandomfileforimport.ts" + ], + [ + 8, + "./bfilewithimports.ts" + ], + [ + 9, + "./brandomfileforimport2.ts" + ] + ], + "options": { + "composite": true + }, + "referencedMap": { + "./afilewithimports.d.ts": [ + "./arandomfileforimport.d.ts", + "./arandomfileforimport2.d.ts" + ], + "./bfilewithimports.ts": [ + "./afilewithimports.d.ts", + "./brandomfileforimport.ts", + "./node_modules/pkg0/index.d.ts" + ] + }, + "latestChangedDtsFile": "./bRandomFileForImport2.d.ts", + "version": "FakeTSVersion", + "size": 1854 +} + +//// [/home/src/workspaces/project/cMain.js] +define(["require", "exports"], function (require, exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { value: true }); + exports.x = void 0; + exports.x = 10; +}); + + +//// [/home/src/workspaces/project/cMain.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/cFileWithImports.js] +define(["require", "exports"], function (require, exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { value: true }); +}); + + +//// [/home/src/workspaces/project/cFileWithImports.d.ts] +export {}; + + +//// [/home/src/workspaces/project/cRandomFileForImport.js] +define(["require", "exports"], function (require, exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { value: true }); + exports.x = void 0; + exports.x = 10; +}); + + +//// [/home/src/workspaces/project/cRandomFileForImport.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/cRandomFileForImport2.js] +define(["require", "exports"], function (require, exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { value: true }); + exports.x = void 0; + exports.x = 10; +}); + + +//// [/home/src/workspaces/project/cRandomFileForImport2.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/tsconfig.tsbuildinfo] +{"fileNames":["../../tslibs/ts/lib/lib.d.ts","./cmain.ts","./arandomfileforimport.d.ts","./arandomfileforimport2.d.ts","./afilewithimports.d.ts","./brandomfileforimport.d.ts","./bfilewithimports.d.ts","./pkg0.d.ts","./cfilewithimports.ts","./crandomfileforimport.ts","./crandomfileforimport2.ts"],"fileIdsList":[[3,4],[5,6],[7,8]],"fileInfos":[{"version":"3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n"},"-6821242887-export declare const x = 10;\n","-6821242887-export declare const x = 10;\n","-19407286966-export { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport declare const y = 10;\n","-6821242887-export declare const x = 10;\n","-7362913554-export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\n","769951468-export interface ImportInterface0 {}",{"version":"-1053334089-import { y } from \"./bFileWithImports\";\nimport type { ImportInterface0 } from \"pkg0\";\n","signature":"-3531856636-export {};\n"},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n"},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n"}],"root":[2,[9,11]],"options":{"composite":true,"module":2},"referencedMap":[[5,1],[7,2],[9,3]],"latestChangedDtsFile":"./cRandomFileForImport2.d.ts","version":"FakeTSVersion"} + +//// [/home/src/workspaces/project/tsconfig.tsbuildinfo.readable.baseline.txt] +{ + "fileNames": [ + "../../tslibs/ts/lib/lib.d.ts", + "./cmain.ts", + "./arandomfileforimport.d.ts", + "./arandomfileforimport2.d.ts", + "./afilewithimports.d.ts", + "./brandomfileforimport.d.ts", + "./bfilewithimports.d.ts", + "./pkg0.d.ts", + "./cfilewithimports.ts", + "./crandomfileforimport.ts", + "./crandomfileforimport2.ts" + ], + "fileIdsList": [ + [ + "./arandomfileforimport.d.ts", + "./arandomfileforimport2.d.ts" + ], + [ + "./afilewithimports.d.ts", + "./brandomfileforimport.d.ts" + ], + [ + "./bfilewithimports.d.ts", + "./pkg0.d.ts" + ] + ], + "fileInfos": { + "../../tslibs/ts/lib/lib.d.ts": { + "original": { + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true + }, + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "signature": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true + }, + "./cmain.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./arandomfileforimport.d.ts": { + "version": "-6821242887-export declare const x = 10;\n", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./arandomfileforimport2.d.ts": { + "version": "-6821242887-export declare const x = 10;\n", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./afilewithimports.d.ts": { + "version": "-19407286966-export { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport declare const y = 10;\n", + "signature": "-19407286966-export { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport declare const y = 10;\n" + }, + "./brandomfileforimport.d.ts": { + "version": "-6821242887-export declare const x = 10;\n", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./bfilewithimports.d.ts": { + "version": "-7362913554-export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\n", + "signature": "-7362913554-export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\n" + }, + "./pkg0.d.ts": { + "version": "769951468-export interface ImportInterface0 {}", + "signature": "769951468-export interface ImportInterface0 {}" + }, + "./cfilewithimports.ts": { + "original": { + "version": "-1053334089-import { y } from \"./bFileWithImports\";\nimport type { ImportInterface0 } from \"pkg0\";\n", + "signature": "-3531856636-export {};\n" + }, + "version": "-1053334089-import { y } from \"./bFileWithImports\";\nimport type { ImportInterface0 } from \"pkg0\";\n", + "signature": "-3531856636-export {};\n" + }, + "./crandomfileforimport.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./crandomfileforimport2.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + } + }, + "root": [ + [ + 2, + "./cmain.ts" + ], + [ + [ + 9, + 11 + ], + [ + "./cfilewithimports.ts", + "./crandomfileforimport.ts", + "./crandomfileforimport2.ts" + ] + ] + ], + "options": { + "composite": true, + "module": 2 + }, + "referencedMap": { + "./afilewithimports.d.ts": [ + "./arandomfileforimport.d.ts", + "./arandomfileforimport2.d.ts" + ], + "./bfilewithimports.d.ts": [ + "./afilewithimports.d.ts", + "./brandomfileforimport.d.ts" + ], + "./cfilewithimports.ts": [ + "./bfilewithimports.d.ts", + "./pkg0.d.ts" + ] + }, + "latestChangedDtsFile": "./cRandomFileForImport2.d.ts", + "version": "FakeTSVersion", + "size": 1907 +} + + +/home/src/tslibs/TS/Lib/tsc.js -w -p /home/src/workspaces/project/tsconfig.json --explainFiles --extendedDiagnostics +Output:: +[HH:MM:SS AM] Starting compilation in watch mode... + +Current directory: /home/src/workspaces/project CaseSensitiveFileNames: false +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/tsconfig.json 2000 undefined Config file +Synchronizing program +CreatingProgramWith:: + roots: ["/home/src/workspaces/project/cMain.ts","/home/src/workspaces/project/cFileWithImports.ts","/home/src/workspaces/project/cRandomFileForImport.ts","/home/src/workspaces/project/cRandomFileForImport2.ts"] + options: {"composite":true,"traceResolution":true,"module":2,"watch":true,"project":"/home/src/workspaces/project/tsconfig.json","explainFiles":true,"extendedDiagnostics":true,"configFilePath":"/home/src/workspaces/project/tsconfig.json"} + projectReferences: [{"path":"/home/src/workspaces/project/tsconfig.a.json","originalPath":"./tsconfig.a.json"},{"path":"/home/src/workspaces/project/tsconfig.b.json","originalPath":"./tsconfig.b.json"}] +Loading config file: /home/src/workspaces/project/tsconfig.a.json +Loading config file: /home/src/workspaces/project/tsconfig.b.json +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/cMain.ts 250 undefined Source file +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/cFileWithImports.ts 250 undefined Source file +======== Resolving module './bFileWithImports' from '/home/src/workspaces/project/cFileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Classic'. +File '/home/src/workspaces/project/bFileWithImports.ts' exists - use it as a name resolution result. +======== Module name './bFileWithImports' was successfully resolved to '/home/src/workspaces/project/bFileWithImports.ts'. ======== +======== Resolving module 'pkg0' from '/home/src/workspaces/project/cFileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Classic'. +File '/home/src/workspaces/project/pkg0.ts' does not exist. +File '/home/src/workspaces/project/pkg0.tsx' does not exist. +File '/home/src/workspaces/project/pkg0.d.ts' exists - use it as a name resolution result. +======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/pkg0.d.ts'. ======== +DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Failed Lookup Locations +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/bFileWithImports.d.ts 250 undefined Source file +======== Resolving module './aFileWithImports' from '/home/src/workspaces/project/bFileWithImports.ts'. ======== +Using compiler options of project reference redirect '/home/src/workspaces/project/tsconfig.b.json'. +Module resolution kind is not specified, using 'Node10'. +Loading module as file / folder, candidate module location '/home/src/workspaces/project/aFileWithImports', target file types: TypeScript, Declaration. +File '/home/src/workspaces/project/aFileWithImports.ts' exists - use it as a name resolution result. +======== Module name './aFileWithImports' was successfully resolved to '/home/src/workspaces/project/aFileWithImports.ts'. ======== +======== Resolving module './bRandomFileForImport' from '/home/src/workspaces/project/bFileWithImports.ts'. ======== +Using compiler options of project reference redirect '/home/src/workspaces/project/tsconfig.b.json'. +Module resolution kind is not specified, using 'Node10'. +Loading module as file / folder, candidate module location '/home/src/workspaces/project/bRandomFileForImport', target file types: TypeScript, Declaration. +File '/home/src/workspaces/project/bRandomFileForImport.ts' exists - use it as a name resolution result. +======== Module name './bRandomFileForImport' was successfully resolved to '/home/src/workspaces/project/bRandomFileForImport.ts'. ======== +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/aFileWithImports.d.ts 250 undefined Source file +======== Resolving module './aRandomFileForImport' from '/home/src/workspaces/project/aFileWithImports.ts'. ======== +Using compiler options of project reference redirect '/home/src/workspaces/project/tsconfig.a.json'. +Module resolution kind is not specified, using 'Node10'. +Loading module as file / folder, candidate module location '/home/src/workspaces/project/aRandomFileForImport', target file types: TypeScript, Declaration. +File '/home/src/workspaces/project/aRandomFileForImport.ts' exists - use it as a name resolution result. +======== Module name './aRandomFileForImport' was successfully resolved to '/home/src/workspaces/project/aRandomFileForImport.ts'. ======== +======== Resolving module './aRandomFileForImport2' from '/home/src/workspaces/project/aFileWithImports.ts'. ======== +Using compiler options of project reference redirect '/home/src/workspaces/project/tsconfig.a.json'. +Module resolution kind is not specified, using 'Node10'. +Loading module as file / folder, candidate module location '/home/src/workspaces/project/aRandomFileForImport2', target file types: TypeScript, Declaration. +File '/home/src/workspaces/project/aRandomFileForImport2.ts' exists - use it as a name resolution result. +======== Module name './aRandomFileForImport2' was successfully resolved to '/home/src/workspaces/project/aRandomFileForImport2.ts'. ======== +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/aRandomFileForImport.d.ts 250 undefined Source file +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/aRandomFileForImport2.d.ts 250 undefined Source file +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/bRandomFileForImport.d.ts 250 undefined Source file +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/pkg0.d.ts 250 undefined Source file +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/cRandomFileForImport.ts 250 undefined Source file +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/cRandomFileForImport2.ts 250 undefined Source file +FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 250 undefined Source file +DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Type roots +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Type roots +DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Type roots +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Type roots +../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' +cMain.ts + Part of 'files' list in tsconfig.json +aRandomFileForImport.d.ts + Imported via "./aRandomFileForImport" from file 'aFileWithImports.d.ts' + File is output of project reference source 'aRandomFileForImport.ts' +aRandomFileForImport2.d.ts + Imported via "./aRandomFileForImport2" from file 'aFileWithImports.d.ts' + File is output of project reference source 'aRandomFileForImport2.ts' +aFileWithImports.d.ts + Imported via "./aFileWithImports" from file 'bFileWithImports.d.ts' + File is output of project reference source 'aFileWithImports.ts' +bRandomFileForImport.d.ts + Imported via "./bRandomFileForImport" from file 'bFileWithImports.d.ts' + File is output of project reference source 'bRandomFileForImport.ts' +bFileWithImports.d.ts + Imported via "./bFileWithImports" from file 'cFileWithImports.ts' + File is output of project reference source 'bFileWithImports.ts' +pkg0.d.ts + Imported via "pkg0" from file 'cFileWithImports.ts' +cFileWithImports.ts + Part of 'files' list in tsconfig.json +cRandomFileForImport.ts + Part of 'files' list in tsconfig.json +cRandomFileForImport2.ts + Part of 'files' list in tsconfig.json +[HH:MM:SS AM] Found 0 errors. Watching for file changes. + +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/tsconfig.a.json 2000 undefined Config file of referened project +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/tsconfig.b.json 2000 undefined Config file of referened project + + + +PolledWatches:: +/home/src/workspaces/node_modules/@types: *new* + {"pollingInterval":500} +/home/src/workspaces/project/node_modules/@types: *new* + {"pollingInterval":500} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: *new* + {} +/home/src/workspaces/project: *new* + {} +/home/src/workspaces/project/aFileWithImports.d.ts: *new* + {} +/home/src/workspaces/project/aRandomFileForImport.d.ts: *new* + {} +/home/src/workspaces/project/aRandomFileForImport2.d.ts: *new* + {} +/home/src/workspaces/project/bFileWithImports.d.ts: *new* + {} +/home/src/workspaces/project/bRandomFileForImport.d.ts: *new* + {} +/home/src/workspaces/project/cFileWithImports.ts: *new* + {} +/home/src/workspaces/project/cMain.ts: *new* + {} +/home/src/workspaces/project/cRandomFileForImport.ts: *new* + {} +/home/src/workspaces/project/cRandomFileForImport2.ts: *new* + {} +/home/src/workspaces/project/pkg0.d.ts: *new* + {} +/home/src/workspaces/project/tsconfig.a.json: *new* + {} +/home/src/workspaces/project/tsconfig.b.json: *new* + {} +/home/src/workspaces/project/tsconfig.json: *new* + {} + +Program root files: [ + "/home/src/workspaces/project/cMain.ts", + "/home/src/workspaces/project/cFileWithImports.ts", + "/home/src/workspaces/project/cRandomFileForImport.ts", + "/home/src/workspaces/project/cRandomFileForImport2.ts" +] +Program options: { + "composite": true, + "traceResolution": true, + "module": 2, + "watch": true, + "project": "/home/src/workspaces/project/tsconfig.json", + "explainFiles": true, + "extendedDiagnostics": true, + "configFilePath": "/home/src/workspaces/project/tsconfig.json" +} +Program structureReused: Not +Program files:: +/home/src/tslibs/TS/Lib/lib.d.ts +/home/src/workspaces/project/cMain.ts +/home/src/workspaces/project/aRandomFileForImport.d.ts +/home/src/workspaces/project/aRandomFileForImport2.d.ts +/home/src/workspaces/project/aFileWithImports.d.ts +/home/src/workspaces/project/bRandomFileForImport.d.ts +/home/src/workspaces/project/bFileWithImports.d.ts +/home/src/workspaces/project/pkg0.d.ts +/home/src/workspaces/project/cFileWithImports.ts +/home/src/workspaces/project/cRandomFileForImport.ts +/home/src/workspaces/project/cRandomFileForImport2.ts + +Semantic diagnostics in builder refreshed for:: + +No shapes updated in the builder:: + +exitCode:: ExitStatus.undefined + +Change:: modify cRandomFileForImport by adding import + +Input:: +//// [/home/src/workspaces/project/cRandomFileForImport.ts] +export type { ImportInterface0 } from "pkg0"; +export const x = 10; + + +Output:: +FileWatcher:: Triggered with /home/src/workspaces/project/cRandomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/cRandomFileForImport.ts 250 undefined Source file +Scheduling update +Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/cRandomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/cRandomFileForImport.ts 250 undefined Source file + + +Timeout callback:: count: 1 +1: timerToUpdateProgram *new* + +Before running Timeout callback:: count: 1 +1: timerToUpdateProgram + +Host is moving to new time +After running Timeout callback:: count: 0 +Output:: +Synchronizing program +[HH:MM:SS AM] File change detected. Starting incremental compilation... + +CreatingProgramWith:: + roots: ["/home/src/workspaces/project/cMain.ts","/home/src/workspaces/project/cFileWithImports.ts","/home/src/workspaces/project/cRandomFileForImport.ts","/home/src/workspaces/project/cRandomFileForImport2.ts"] + options: {"composite":true,"traceResolution":true,"module":2,"watch":true,"project":"/home/src/workspaces/project/tsconfig.json","explainFiles":true,"extendedDiagnostics":true,"configFilePath":"/home/src/workspaces/project/tsconfig.json"} + projectReferences: [{"path":"/home/src/workspaces/project/tsconfig.a.json","originalPath":"./tsconfig.a.json"},{"path":"/home/src/workspaces/project/tsconfig.b.json","originalPath":"./tsconfig.b.json"}] +Reusing resolution of module './bFileWithImports' from '/home/src/workspaces/project/cFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/bFileWithImports.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/cFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/pkg0.d.ts'. +Reusing resolution of module './aFileWithImports' from '/home/src/workspaces/project/bFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/aFileWithImports.ts'. +Reusing resolution of module './bRandomFileForImport' from '/home/src/workspaces/project/bFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/bRandomFileForImport.ts'. +Reusing resolution of module './aRandomFileForImport' from '/home/src/workspaces/project/aFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/aRandomFileForImport.ts'. +Reusing resolution of module './aRandomFileForImport2' from '/home/src/workspaces/project/aFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/aRandomFileForImport2.ts'. +======== Resolving module 'pkg0' from '/home/src/workspaces/project/cRandomFileForImport.ts'. ======== +Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project'. +======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/pkg0.d.ts'. ======== +../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' +cMain.ts + Part of 'files' list in tsconfig.json +aRandomFileForImport.d.ts + Imported via "./aRandomFileForImport" from file 'aFileWithImports.d.ts' + File is output of project reference source 'aRandomFileForImport.ts' +aRandomFileForImport2.d.ts + Imported via "./aRandomFileForImport2" from file 'aFileWithImports.d.ts' + File is output of project reference source 'aRandomFileForImport2.ts' +aFileWithImports.d.ts + Imported via "./aFileWithImports" from file 'bFileWithImports.d.ts' + File is output of project reference source 'aFileWithImports.ts' +bRandomFileForImport.d.ts + Imported via "./bRandomFileForImport" from file 'bFileWithImports.d.ts' + File is output of project reference source 'bRandomFileForImport.ts' +bFileWithImports.d.ts + Imported via "./bFileWithImports" from file 'cFileWithImports.ts' + File is output of project reference source 'bFileWithImports.ts' +pkg0.d.ts + Imported via "pkg0" from file 'cFileWithImports.ts' + Imported via "pkg0" from file 'cRandomFileForImport.ts' +cFileWithImports.ts + Part of 'files' list in tsconfig.json +cRandomFileForImport.ts + Part of 'files' list in tsconfig.json +cRandomFileForImport2.ts + Part of 'files' list in tsconfig.json +[HH:MM:SS AM] Found 0 errors. Watching for file changes. + + + +//// [/home/src/workspaces/project/cRandomFileForImport.js] file written with same contents +//// [/home/src/workspaces/project/cRandomFileForImport.d.ts] +export type { ImportInterface0 } from "pkg0"; +export declare const x = 10; + + +//// [/home/src/workspaces/project/tsconfig.tsbuildinfo] +{"fileNames":["../../tslibs/ts/lib/lib.d.ts","./cmain.ts","./arandomfileforimport.d.ts","./arandomfileforimport2.d.ts","./afilewithimports.d.ts","./brandomfileforimport.d.ts","./bfilewithimports.d.ts","./pkg0.d.ts","./cfilewithimports.ts","./crandomfileforimport.ts","./crandomfileforimport2.ts"],"fileIdsList":[[3,4],[5,6],[7,8],[8]],"fileInfos":[{"version":"3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n"},"-6821242887-export declare const x = 10;\n","-6821242887-export declare const x = 10;\n","-19407286966-export { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport declare const y = 10;\n","-6821242887-export declare const x = 10;\n","-7362913554-export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\n","769951468-export interface ImportInterface0 {}",{"version":"-1053334089-import { y } from \"./bFileWithImports\";\nimport type { ImportInterface0 } from \"pkg0\";\n","signature":"-3531856636-export {};\n"},{"version":"-26669354010-export type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;","signature":"-21151159744-export type { ImportInterface0 } from \"pkg0\";\nexport declare const x = 10;\n"},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n"}],"root":[2,[9,11]],"options":{"composite":true,"module":2},"referencedMap":[[5,1],[7,2],[9,3],[10,4]],"latestChangedDtsFile":"./cRandomFileForImport.d.ts","version":"FakeTSVersion"} + +//// [/home/src/workspaces/project/tsconfig.tsbuildinfo.readable.baseline.txt] +{ + "fileNames": [ + "../../tslibs/ts/lib/lib.d.ts", + "./cmain.ts", + "./arandomfileforimport.d.ts", + "./arandomfileforimport2.d.ts", + "./afilewithimports.d.ts", + "./brandomfileforimport.d.ts", + "./bfilewithimports.d.ts", + "./pkg0.d.ts", + "./cfilewithimports.ts", + "./crandomfileforimport.ts", + "./crandomfileforimport2.ts" + ], + "fileIdsList": [ + [ + "./arandomfileforimport.d.ts", + "./arandomfileforimport2.d.ts" + ], + [ + "./afilewithimports.d.ts", + "./brandomfileforimport.d.ts" + ], + [ + "./bfilewithimports.d.ts", + "./pkg0.d.ts" + ], + [ + "./pkg0.d.ts" + ] + ], + "fileInfos": { + "../../tslibs/ts/lib/lib.d.ts": { + "original": { + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true + }, + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "signature": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true + }, + "./cmain.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./arandomfileforimport.d.ts": { + "version": "-6821242887-export declare const x = 10;\n", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./arandomfileforimport2.d.ts": { + "version": "-6821242887-export declare const x = 10;\n", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./afilewithimports.d.ts": { + "version": "-19407286966-export { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport declare const y = 10;\n", + "signature": "-19407286966-export { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport declare const y = 10;\n" + }, + "./brandomfileforimport.d.ts": { + "version": "-6821242887-export declare const x = 10;\n", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./bfilewithimports.d.ts": { + "version": "-7362913554-export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\n", + "signature": "-7362913554-export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\n" + }, + "./pkg0.d.ts": { + "version": "769951468-export interface ImportInterface0 {}", + "signature": "769951468-export interface ImportInterface0 {}" + }, + "./cfilewithimports.ts": { + "original": { + "version": "-1053334089-import { y } from \"./bFileWithImports\";\nimport type { ImportInterface0 } from \"pkg0\";\n", + "signature": "-3531856636-export {};\n" + }, + "version": "-1053334089-import { y } from \"./bFileWithImports\";\nimport type { ImportInterface0 } from \"pkg0\";\n", + "signature": "-3531856636-export {};\n" + }, + "./crandomfileforimport.ts": { + "original": { + "version": "-26669354010-export type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;", + "signature": "-21151159744-export type { ImportInterface0 } from \"pkg0\";\nexport declare const x = 10;\n" + }, + "version": "-26669354010-export type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;", + "signature": "-21151159744-export type { ImportInterface0 } from \"pkg0\";\nexport declare const x = 10;\n" + }, + "./crandomfileforimport2.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + } + }, + "root": [ + [ + 2, + "./cmain.ts" + ], + [ + [ + 9, + 11 + ], + [ + "./cfilewithimports.ts", + "./crandomfileforimport.ts", + "./crandomfileforimport2.ts" + ] + ] + ], + "options": { + "composite": true, + "module": 2 + }, + "referencedMap": { + "./afilewithimports.d.ts": [ + "./arandomfileforimport.d.ts", + "./arandomfileforimport2.d.ts" + ], + "./bfilewithimports.d.ts": [ + "./afilewithimports.d.ts", + "./brandomfileforimport.d.ts" + ], + "./cfilewithimports.ts": [ + "./bfilewithimports.d.ts", + "./pkg0.d.ts" + ], + "./crandomfileforimport.ts": [ + "./pkg0.d.ts" + ] + }, + "latestChangedDtsFile": "./cRandomFileForImport.d.ts", + "version": "FakeTSVersion", + "size": 2016 +} + + + +Program root files: [ + "/home/src/workspaces/project/cMain.ts", + "/home/src/workspaces/project/cFileWithImports.ts", + "/home/src/workspaces/project/cRandomFileForImport.ts", + "/home/src/workspaces/project/cRandomFileForImport2.ts" +] +Program options: { + "composite": true, + "traceResolution": true, + "module": 2, + "watch": true, + "project": "/home/src/workspaces/project/tsconfig.json", + "explainFiles": true, + "extendedDiagnostics": true, + "configFilePath": "/home/src/workspaces/project/tsconfig.json" +} +Program structureReused: SafeModules +Program files:: +/home/src/tslibs/TS/Lib/lib.d.ts +/home/src/workspaces/project/cMain.ts +/home/src/workspaces/project/aRandomFileForImport.d.ts +/home/src/workspaces/project/aRandomFileForImport2.d.ts +/home/src/workspaces/project/aFileWithImports.d.ts +/home/src/workspaces/project/bRandomFileForImport.d.ts +/home/src/workspaces/project/bFileWithImports.d.ts +/home/src/workspaces/project/pkg0.d.ts +/home/src/workspaces/project/cFileWithImports.ts +/home/src/workspaces/project/cRandomFileForImport.ts +/home/src/workspaces/project/cRandomFileForImport2.ts + +Semantic diagnostics in builder refreshed for:: +/home/src/workspaces/project/cRandomFileForImport.ts + +Shape signatures in builder refreshed for:: +/home/src/workspaces/project/crandomfileforimport.ts (computed .d.ts) + +exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/resolutionCache/multiple-projects.js b/tests/baselines/reference/tscWatch/resolutionCache/multiple-projects.js new file mode 100644 index 0000000000000..ed0ff7b03e526 --- /dev/null +++ b/tests/baselines/reference/tscWatch/resolutionCache/multiple-projects.js @@ -0,0 +1,1077 @@ +currentDirectory:: /home/src/workspaces/project useCaseSensitiveFileNames:: false +Input:: +//// [/home/src/workspaces/project/tsconfig.a.json] +{ + "compilerOptions": { + "composite": true, + "traceResolution": true + }, + "files": [ + "aMain.ts", + "aFileWithImports.ts", + "aRandomFileForImport.ts", + "aRandomFileForImport2.ts" + ] +} + +//// [/home/src/workspaces/project/aMain.ts] +export const x = 10; + +//// [/home/src/workspaces/project/aFileWithImports.ts] +import type { ImportInterface0 } from "pkg0"; +export { x } from "./aRandomFileForImport"; +export { x as x2 } from "./aRandomFileForImport2"; +export const y = 10; + + +//// [/home/src/workspaces/project/aRandomFileForImport.ts] +export const x = 10; + +//// [/home/src/workspaces/project/aRandomFileForImport2.ts] +export const x = 10; + +//// [/home/src/workspaces/project/node_modules/pkg0/index.d.ts] +export interface ImportInterface0 {} + +//// [/home/src/workspaces/project/tsconfig.b.json] +{ + "compilerOptions": { + "composite": true, + "traceResolution": true + }, + "files": [ + "bMain.ts", + "bFileWithImports.ts", + "bRandomFileForImport.ts", + "bRandomFileForImport2.ts" + ], + "references": [ + { + "path": "./tsconfig.a.json" + } + ] +} + +//// [/home/src/workspaces/project/bMain.ts] +export const x = 10; + +//// [/home/src/workspaces/project/bFileWithImports.ts] +export { y } from "./aFileWithImports"; +export { x } from "./bRandomFileForImport"; +import type { ImportInterface0 } from "pkg0"; + + +//// [/home/src/workspaces/project/bRandomFileForImport.ts] +export const x = 10; + +//// [/home/src/workspaces/project/bRandomFileForImport2.ts] +export const x = 10; + +//// [/home/src/workspaces/project/tsconfig.json] +{ + "compilerOptions": { + "composite": true, + "traceResolution": true, + "module": "amd" + }, + "files": [ + "cMain.ts", + "cFileWithImports.ts", + "cRandomFileForImport.ts", + "cRandomFileForImport2.ts" + ], + "references": [ + { + "path": "./tsconfig.a.json" + }, + { + "path": "./tsconfig.b.json" + } + ] +} + +//// [/home/src/workspaces/project/cMain.ts] +export const x = 10; + +//// [/home/src/workspaces/project/cFileWithImports.ts] +import { y } from "./bFileWithImports"; +import type { ImportInterface0 } from "pkg0"; + + +//// [/home/src/workspaces/project/cRandomFileForImport.ts] +export const x = 10; + +//// [/home/src/workspaces/project/cRandomFileForImport2.ts] +export const x = 10; + +//// [/home/src/workspaces/project/pkg0.d.ts] +export interface ImportInterface0 {} + +//// [/home/src/tslibs/TS/Lib/lib.d.ts] +/// +interface Boolean {} +interface Function {} +interface CallableFunction {} +interface NewableFunction {} +interface IArguments {} +interface Number { toExponential: any; } +interface Object {} +interface RegExp {} +interface String { charAt: any; } +interface Array { length: number; [n: number]: T; } +interface ReadonlyArray {} +declare const console: { log(msg: any): void; }; + +//// [/home/src/workspaces/project/aMain.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/aMain.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/aRandomFileForImport.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/aRandomFileForImport.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/aRandomFileForImport2.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/aRandomFileForImport2.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/aFileWithImports.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.y = exports.x2 = exports.x = void 0; +var aRandomFileForImport_1 = require("./aRandomFileForImport"); +Object.defineProperty(exports, "x", { enumerable: true, get: function () { return aRandomFileForImport_1.x; } }); +var aRandomFileForImport2_1 = require("./aRandomFileForImport2"); +Object.defineProperty(exports, "x2", { enumerable: true, get: function () { return aRandomFileForImport2_1.x; } }); +exports.y = 10; + + +//// [/home/src/workspaces/project/aFileWithImports.d.ts] +export { x } from "./aRandomFileForImport"; +export { x as x2 } from "./aRandomFileForImport2"; +export declare const y = 10; + + +//// [/home/src/workspaces/project/tsconfig.a.tsbuildinfo] +{"fileNames":["../../tslibs/ts/lib/lib.d.ts","./amain.ts","./node_modules/pkg0/index.d.ts","./arandomfileforimport.ts","./arandomfileforimport2.ts","./afilewithimports.ts"],"fileIdsList":[[3,4,5]],"fileInfos":[{"version":"3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n"},{"version":"769951468-export interface ImportInterface0 {}","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n"},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n"},{"version":"25172849050-import type { ImportInterface0 } from \"pkg0\";\nexport { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport const y = 10;\n","signature":"-19407286966-export { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport declare const y = 10;\n"}],"root":[2,[4,6]],"options":{"composite":true},"referencedMap":[[6,1]],"latestChangedDtsFile":"./aFileWithImports.d.ts","version":"FakeTSVersion"} + +//// [/home/src/workspaces/project/tsconfig.a.tsbuildinfo.readable.baseline.txt] +{ + "fileNames": [ + "../../tslibs/ts/lib/lib.d.ts", + "./amain.ts", + "./node_modules/pkg0/index.d.ts", + "./arandomfileforimport.ts", + "./arandomfileforimport2.ts", + "./afilewithimports.ts" + ], + "fileIdsList": [ + [ + "./node_modules/pkg0/index.d.ts", + "./arandomfileforimport.ts", + "./arandomfileforimport2.ts" + ] + ], + "fileInfos": { + "../../tslibs/ts/lib/lib.d.ts": { + "original": { + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true + }, + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "signature": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true + }, + "./amain.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./node_modules/pkg0/index.d.ts": { + "original": { + "version": "769951468-export interface ImportInterface0 {}", + "impliedFormat": 1 + }, + "version": "769951468-export interface ImportInterface0 {}", + "signature": "769951468-export interface ImportInterface0 {}", + "impliedFormat": "commonjs" + }, + "./arandomfileforimport.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./arandomfileforimport2.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./afilewithimports.ts": { + "original": { + "version": "25172849050-import type { ImportInterface0 } from \"pkg0\";\nexport { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport const y = 10;\n", + "signature": "-19407286966-export { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport declare const y = 10;\n" + }, + "version": "25172849050-import type { ImportInterface0 } from \"pkg0\";\nexport { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport const y = 10;\n", + "signature": "-19407286966-export { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport declare const y = 10;\n" + } + }, + "root": [ + [ + 2, + "./amain.ts" + ], + [ + [ + 4, + 6 + ], + [ + "./arandomfileforimport.ts", + "./arandomfileforimport2.ts", + "./afilewithimports.ts" + ] + ] + ], + "options": { + "composite": true + }, + "referencedMap": { + "./afilewithimports.ts": [ + "./node_modules/pkg0/index.d.ts", + "./arandomfileforimport.ts", + "./arandomfileforimport2.ts" + ] + }, + "latestChangedDtsFile": "./aFileWithImports.d.ts", + "version": "FakeTSVersion", + "size": 1587 +} + +//// [/home/src/workspaces/project/bMain.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/bMain.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/bRandomFileForImport.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/bRandomFileForImport.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/bFileWithImports.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = exports.y = void 0; +var aFileWithImports_1 = require("./aFileWithImports"); +Object.defineProperty(exports, "y", { enumerable: true, get: function () { return aFileWithImports_1.y; } }); +var bRandomFileForImport_1 = require("./bRandomFileForImport"); +Object.defineProperty(exports, "x", { enumerable: true, get: function () { return bRandomFileForImport_1.x; } }); + + +//// [/home/src/workspaces/project/bFileWithImports.d.ts] +export { y } from "./aFileWithImports"; +export { x } from "./bRandomFileForImport"; + + +//// [/home/src/workspaces/project/bRandomFileForImport2.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/bRandomFileForImport2.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/tsconfig.b.tsbuildinfo] +{"fileNames":["../../tslibs/ts/lib/lib.d.ts","./bmain.ts","./arandomfileforimport.d.ts","./arandomfileforimport2.d.ts","./afilewithimports.d.ts","./brandomfileforimport.ts","./node_modules/pkg0/index.d.ts","./bfilewithimports.ts","./brandomfileforimport2.ts"],"fileIdsList":[[3,4],[5,6,7]],"fileInfos":[{"version":"3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n"},"-6821242887-export declare const x = 10;\n","-6821242887-export declare const x = 10;\n","-19407286966-export { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport declare const y = 10;\n",{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n"},{"version":"769951468-export interface ImportInterface0 {}","impliedFormat":1},{"version":"-16966571634-export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\nimport type { ImportInterface0 } from \"pkg0\";\n","signature":"-7362913554-export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\n"},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n"}],"root":[2,6,8,9],"options":{"composite":true},"referencedMap":[[5,1],[8,2]],"latestChangedDtsFile":"./bRandomFileForImport2.d.ts","version":"FakeTSVersion"} + +//// [/home/src/workspaces/project/tsconfig.b.tsbuildinfo.readable.baseline.txt] +{ + "fileNames": [ + "../../tslibs/ts/lib/lib.d.ts", + "./bmain.ts", + "./arandomfileforimport.d.ts", + "./arandomfileforimport2.d.ts", + "./afilewithimports.d.ts", + "./brandomfileforimport.ts", + "./node_modules/pkg0/index.d.ts", + "./bfilewithimports.ts", + "./brandomfileforimport2.ts" + ], + "fileIdsList": [ + [ + "./arandomfileforimport.d.ts", + "./arandomfileforimport2.d.ts" + ], + [ + "./afilewithimports.d.ts", + "./brandomfileforimport.ts", + "./node_modules/pkg0/index.d.ts" + ] + ], + "fileInfos": { + "../../tslibs/ts/lib/lib.d.ts": { + "original": { + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true + }, + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "signature": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true + }, + "./bmain.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./arandomfileforimport.d.ts": { + "version": "-6821242887-export declare const x = 10;\n", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./arandomfileforimport2.d.ts": { + "version": "-6821242887-export declare const x = 10;\n", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./afilewithimports.d.ts": { + "version": "-19407286966-export { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport declare const y = 10;\n", + "signature": "-19407286966-export { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport declare const y = 10;\n" + }, + "./brandomfileforimport.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./node_modules/pkg0/index.d.ts": { + "original": { + "version": "769951468-export interface ImportInterface0 {}", + "impliedFormat": 1 + }, + "version": "769951468-export interface ImportInterface0 {}", + "signature": "769951468-export interface ImportInterface0 {}", + "impliedFormat": "commonjs" + }, + "./bfilewithimports.ts": { + "original": { + "version": "-16966571634-export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\nimport type { ImportInterface0 } from \"pkg0\";\n", + "signature": "-7362913554-export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\n" + }, + "version": "-16966571634-export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\nimport type { ImportInterface0 } from \"pkg0\";\n", + "signature": "-7362913554-export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\n" + }, + "./brandomfileforimport2.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + } + }, + "root": [ + [ + 2, + "./bmain.ts" + ], + [ + 6, + "./brandomfileforimport.ts" + ], + [ + 8, + "./bfilewithimports.ts" + ], + [ + 9, + "./brandomfileforimport2.ts" + ] + ], + "options": { + "composite": true + }, + "referencedMap": { + "./afilewithimports.d.ts": [ + "./arandomfileforimport.d.ts", + "./arandomfileforimport2.d.ts" + ], + "./bfilewithimports.ts": [ + "./afilewithimports.d.ts", + "./brandomfileforimport.ts", + "./node_modules/pkg0/index.d.ts" + ] + }, + "latestChangedDtsFile": "./bRandomFileForImport2.d.ts", + "version": "FakeTSVersion", + "size": 1854 +} + +//// [/home/src/workspaces/project/cMain.js] +define(["require", "exports"], function (require, exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { value: true }); + exports.x = void 0; + exports.x = 10; +}); + + +//// [/home/src/workspaces/project/cMain.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/cFileWithImports.js] +define(["require", "exports"], function (require, exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { value: true }); +}); + + +//// [/home/src/workspaces/project/cFileWithImports.d.ts] +export {}; + + +//// [/home/src/workspaces/project/cRandomFileForImport.js] +define(["require", "exports"], function (require, exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { value: true }); + exports.x = void 0; + exports.x = 10; +}); + + +//// [/home/src/workspaces/project/cRandomFileForImport.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/cRandomFileForImport2.js] +define(["require", "exports"], function (require, exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { value: true }); + exports.x = void 0; + exports.x = 10; +}); + + +//// [/home/src/workspaces/project/cRandomFileForImport2.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/tsconfig.tsbuildinfo] +{"fileNames":["../../tslibs/ts/lib/lib.d.ts","./cmain.ts","./arandomfileforimport.d.ts","./arandomfileforimport2.d.ts","./afilewithimports.d.ts","./brandomfileforimport.d.ts","./bfilewithimports.d.ts","./pkg0.d.ts","./cfilewithimports.ts","./crandomfileforimport.ts","./crandomfileforimport2.ts"],"fileIdsList":[[3,4],[5,6],[7,8]],"fileInfos":[{"version":"3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n"},"-6821242887-export declare const x = 10;\n","-6821242887-export declare const x = 10;\n","-19407286966-export { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport declare const y = 10;\n","-6821242887-export declare const x = 10;\n","-7362913554-export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\n","769951468-export interface ImportInterface0 {}",{"version":"-1053334089-import { y } from \"./bFileWithImports\";\nimport type { ImportInterface0 } from \"pkg0\";\n","signature":"-3531856636-export {};\n"},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n"},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n"}],"root":[2,[9,11]],"options":{"composite":true,"module":2},"referencedMap":[[5,1],[7,2],[9,3]],"latestChangedDtsFile":"./cRandomFileForImport2.d.ts","version":"FakeTSVersion"} + +//// [/home/src/workspaces/project/tsconfig.tsbuildinfo.readable.baseline.txt] +{ + "fileNames": [ + "../../tslibs/ts/lib/lib.d.ts", + "./cmain.ts", + "./arandomfileforimport.d.ts", + "./arandomfileforimport2.d.ts", + "./afilewithimports.d.ts", + "./brandomfileforimport.d.ts", + "./bfilewithimports.d.ts", + "./pkg0.d.ts", + "./cfilewithimports.ts", + "./crandomfileforimport.ts", + "./crandomfileforimport2.ts" + ], + "fileIdsList": [ + [ + "./arandomfileforimport.d.ts", + "./arandomfileforimport2.d.ts" + ], + [ + "./afilewithimports.d.ts", + "./brandomfileforimport.d.ts" + ], + [ + "./bfilewithimports.d.ts", + "./pkg0.d.ts" + ] + ], + "fileInfos": { + "../../tslibs/ts/lib/lib.d.ts": { + "original": { + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true + }, + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "signature": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true + }, + "./cmain.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./arandomfileforimport.d.ts": { + "version": "-6821242887-export declare const x = 10;\n", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./arandomfileforimport2.d.ts": { + "version": "-6821242887-export declare const x = 10;\n", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./afilewithimports.d.ts": { + "version": "-19407286966-export { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport declare const y = 10;\n", + "signature": "-19407286966-export { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport declare const y = 10;\n" + }, + "./brandomfileforimport.d.ts": { + "version": "-6821242887-export declare const x = 10;\n", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./bfilewithimports.d.ts": { + "version": "-7362913554-export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\n", + "signature": "-7362913554-export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\n" + }, + "./pkg0.d.ts": { + "version": "769951468-export interface ImportInterface0 {}", + "signature": "769951468-export interface ImportInterface0 {}" + }, + "./cfilewithimports.ts": { + "original": { + "version": "-1053334089-import { y } from \"./bFileWithImports\";\nimport type { ImportInterface0 } from \"pkg0\";\n", + "signature": "-3531856636-export {};\n" + }, + "version": "-1053334089-import { y } from \"./bFileWithImports\";\nimport type { ImportInterface0 } from \"pkg0\";\n", + "signature": "-3531856636-export {};\n" + }, + "./crandomfileforimport.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./crandomfileforimport2.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + } + }, + "root": [ + [ + 2, + "./cmain.ts" + ], + [ + [ + 9, + 11 + ], + [ + "./cfilewithimports.ts", + "./crandomfileforimport.ts", + "./crandomfileforimport2.ts" + ] + ] + ], + "options": { + "composite": true, + "module": 2 + }, + "referencedMap": { + "./afilewithimports.d.ts": [ + "./arandomfileforimport.d.ts", + "./arandomfileforimport2.d.ts" + ], + "./bfilewithimports.d.ts": [ + "./afilewithimports.d.ts", + "./brandomfileforimport.d.ts" + ], + "./cfilewithimports.ts": [ + "./bfilewithimports.d.ts", + "./pkg0.d.ts" + ] + }, + "latestChangedDtsFile": "./cRandomFileForImport2.d.ts", + "version": "FakeTSVersion", + "size": 1907 +} + + +/home/src/tslibs/TS/Lib/tsc.js -w -p /home/src/workspaces/project/tsconfig.b.json --explainFiles --extendedDiagnostics +Output:: +[HH:MM:SS AM] Starting compilation in watch mode... + +Current directory: /home/src/workspaces/project CaseSensitiveFileNames: false +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/tsconfig.b.json 2000 undefined Config file +Synchronizing program +CreatingProgramWith:: + roots: ["/home/src/workspaces/project/bMain.ts","/home/src/workspaces/project/bFileWithImports.ts","/home/src/workspaces/project/bRandomFileForImport.ts","/home/src/workspaces/project/bRandomFileForImport2.ts"] + options: {"composite":true,"traceResolution":true,"watch":true,"project":"/home/src/workspaces/project/tsconfig.b.json","explainFiles":true,"extendedDiagnostics":true,"configFilePath":"/home/src/workspaces/project/tsconfig.b.json"} + projectReferences: [{"path":"/home/src/workspaces/project/tsconfig.a.json","originalPath":"./tsconfig.a.json"}] +Loading config file: /home/src/workspaces/project/tsconfig.a.json +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/bMain.ts 250 undefined Source file +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/bFileWithImports.ts 250 undefined Source file +======== Resolving module './aFileWithImports' from '/home/src/workspaces/project/bFileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module as file / folder, candidate module location '/home/src/workspaces/project/aFileWithImports', target file types: TypeScript, Declaration. +File '/home/src/workspaces/project/aFileWithImports.ts' exists - use it as a name resolution result. +======== Module name './aFileWithImports' was successfully resolved to '/home/src/workspaces/project/aFileWithImports.ts'. ======== +======== Resolving module './bRandomFileForImport' from '/home/src/workspaces/project/bFileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module as file / folder, candidate module location '/home/src/workspaces/project/bRandomFileForImport', target file types: TypeScript, Declaration. +File '/home/src/workspaces/project/bRandomFileForImport.ts' exists - use it as a name resolution result. +======== Module name './bRandomFileForImport' was successfully resolved to '/home/src/workspaces/project/bRandomFileForImport.ts'. ======== +======== Resolving module 'pkg0' from '/home/src/workspaces/project/bFileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist. +File '/home/src/workspaces/project/node_modules/pkg0.ts' does not exist. +File '/home/src/workspaces/project/node_modules/pkg0.tsx' does not exist. +File '/home/src/workspaces/project/node_modules/pkg0.d.ts' does not exist. +File '/home/src/workspaces/project/node_modules/pkg0/index.ts' does not exist. +File '/home/src/workspaces/project/node_modules/pkg0/index.tsx' does not exist. +File '/home/src/workspaces/project/node_modules/pkg0/index.d.ts' exists - use it as a name resolution result. +Resolving real path for '/home/src/workspaces/project/node_modules/pkg0/index.d.ts', result '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Failed Lookup Locations +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/aFileWithImports.d.ts 250 undefined Source file +======== Resolving module './aRandomFileForImport' from '/home/src/workspaces/project/aFileWithImports.ts'. ======== +Using compiler options of project reference redirect '/home/src/workspaces/project/tsconfig.a.json'. +Module resolution kind is not specified, using 'Node10'. +Loading module as file / folder, candidate module location '/home/src/workspaces/project/aRandomFileForImport', target file types: TypeScript, Declaration. +File '/home/src/workspaces/project/aRandomFileForImport.ts' exists - use it as a name resolution result. +======== Module name './aRandomFileForImport' was successfully resolved to '/home/src/workspaces/project/aRandomFileForImport.ts'. ======== +======== Resolving module './aRandomFileForImport2' from '/home/src/workspaces/project/aFileWithImports.ts'. ======== +Using compiler options of project reference redirect '/home/src/workspaces/project/tsconfig.a.json'. +Module resolution kind is not specified, using 'Node10'. +Loading module as file / folder, candidate module location '/home/src/workspaces/project/aRandomFileForImport2', target file types: TypeScript, Declaration. +File '/home/src/workspaces/project/aRandomFileForImport2.ts' exists - use it as a name resolution result. +======== Module name './aRandomFileForImport2' was successfully resolved to '/home/src/workspaces/project/aRandomFileForImport2.ts'. ======== +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/aRandomFileForImport.d.ts 250 undefined Source file +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/aRandomFileForImport2.d.ts 250 undefined Source file +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/bRandomFileForImport.ts 250 undefined Source file +File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist. +File '/home/src/workspaces/project/package.json' does not exist. +File '/home/src/workspaces/package.json' does not exist. +File '/home/src/package.json' does not exist. +File '/home/package.json' does not exist. +File '/package.json' does not exist. +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/pkg0/index.d.ts 250 undefined Source file +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/bRandomFileForImport2.ts 250 undefined Source file +FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 250 undefined Source file +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/pkg0/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/package.json 2000 undefined File location affecting resolution +DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Type roots +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Type roots +DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Type roots +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Type roots +../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' +bMain.ts + Part of 'files' list in tsconfig.json +aRandomFileForImport.d.ts + Imported via "./aRandomFileForImport" from file 'aFileWithImports.d.ts' + File is output of project reference source 'aRandomFileForImport.ts' +aRandomFileForImport2.d.ts + Imported via "./aRandomFileForImport2" from file 'aFileWithImports.d.ts' + File is output of project reference source 'aRandomFileForImport2.ts' +aFileWithImports.d.ts + Imported via "./aFileWithImports" from file 'bFileWithImports.ts' + File is output of project reference source 'aFileWithImports.ts' +bRandomFileForImport.ts + Imported via "./bRandomFileForImport" from file 'bFileWithImports.ts' + Part of 'files' list in tsconfig.json +node_modules/pkg0/index.d.ts + Imported via "pkg0" from file 'bFileWithImports.ts' +bFileWithImports.ts + Part of 'files' list in tsconfig.json +bRandomFileForImport2.ts + Part of 'files' list in tsconfig.json +[HH:MM:SS AM] Found 0 errors. Watching for file changes. + +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/tsconfig.a.json 2000 undefined Config file of referened project + + + +PolledWatches:: +/home/src/workspaces/node_modules/@types: *new* + {"pollingInterval":500} +/home/src/workspaces/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/@types: *new* + {"pollingInterval":500} +/home/src/workspaces/project/node_modules/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/pkg0/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/package.json: *new* + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: *new* + {} +/home/src/workspaces/project/aFileWithImports.d.ts: *new* + {} +/home/src/workspaces/project/aRandomFileForImport.d.ts: *new* + {} +/home/src/workspaces/project/aRandomFileForImport2.d.ts: *new* + {} +/home/src/workspaces/project/bFileWithImports.ts: *new* + {} +/home/src/workspaces/project/bMain.ts: *new* + {} +/home/src/workspaces/project/bRandomFileForImport.ts: *new* + {} +/home/src/workspaces/project/bRandomFileForImport2.ts: *new* + {} +/home/src/workspaces/project/node_modules/pkg0/index.d.ts: *new* + {} +/home/src/workspaces/project/tsconfig.a.json: *new* + {} +/home/src/workspaces/project/tsconfig.b.json: *new* + {} + +FsWatchesRecursive:: +/home/src/workspaces/project/node_modules: *new* + {} + +Program root files: [ + "/home/src/workspaces/project/bMain.ts", + "/home/src/workspaces/project/bFileWithImports.ts", + "/home/src/workspaces/project/bRandomFileForImport.ts", + "/home/src/workspaces/project/bRandomFileForImport2.ts" +] +Program options: { + "composite": true, + "traceResolution": true, + "watch": true, + "project": "/home/src/workspaces/project/tsconfig.b.json", + "explainFiles": true, + "extendedDiagnostics": true, + "configFilePath": "/home/src/workspaces/project/tsconfig.b.json" +} +Program structureReused: Not +Program files:: +/home/src/tslibs/TS/Lib/lib.d.ts +/home/src/workspaces/project/bMain.ts +/home/src/workspaces/project/aRandomFileForImport.d.ts +/home/src/workspaces/project/aRandomFileForImport2.d.ts +/home/src/workspaces/project/aFileWithImports.d.ts +/home/src/workspaces/project/bRandomFileForImport.ts +/home/src/workspaces/project/node_modules/pkg0/index.d.ts +/home/src/workspaces/project/bFileWithImports.ts +/home/src/workspaces/project/bRandomFileForImport2.ts + +Semantic diagnostics in builder refreshed for:: + +No shapes updated in the builder:: + +exitCode:: ExitStatus.undefined + +Change:: modify bRandomFileForImport by adding import + +Input:: +//// [/home/src/workspaces/project/bRandomFileForImport.ts] +export type { ImportInterface0 } from "pkg0"; +export const x = 10; + + +Output:: +FileWatcher:: Triggered with /home/src/workspaces/project/bRandomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/bRandomFileForImport.ts 250 undefined Source file +Scheduling update +Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/bRandomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/bRandomFileForImport.ts 250 undefined Source file + + +Timeout callback:: count: 1 +1: timerToUpdateProgram *new* + +Before running Timeout callback:: count: 1 +1: timerToUpdateProgram + +Host is moving to new time +After running Timeout callback:: count: 0 +Output:: +Synchronizing program +[HH:MM:SS AM] File change detected. Starting incremental compilation... + +CreatingProgramWith:: + roots: ["/home/src/workspaces/project/bMain.ts","/home/src/workspaces/project/bFileWithImports.ts","/home/src/workspaces/project/bRandomFileForImport.ts","/home/src/workspaces/project/bRandomFileForImport2.ts"] + options: {"composite":true,"traceResolution":true,"watch":true,"project":"/home/src/workspaces/project/tsconfig.b.json","explainFiles":true,"extendedDiagnostics":true,"configFilePath":"/home/src/workspaces/project/tsconfig.b.json"} + projectReferences: [{"path":"/home/src/workspaces/project/tsconfig.a.json","originalPath":"./tsconfig.a.json"}] +File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +Reusing resolution of module './aFileWithImports' from '/home/src/workspaces/project/bFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/aFileWithImports.ts'. +Reusing resolution of module './bRandomFileForImport' from '/home/src/workspaces/project/bFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/bRandomFileForImport.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/bFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module './aRandomFileForImport' from '/home/src/workspaces/project/aFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/aRandomFileForImport.ts'. +Reusing resolution of module './aRandomFileForImport2' from '/home/src/workspaces/project/aFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/aRandomFileForImport2.ts'. +======== Resolving module 'pkg0' from '/home/src/workspaces/project/bRandomFileForImport.ts'. ======== +Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project'. +======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' +bMain.ts + Part of 'files' list in tsconfig.json +aRandomFileForImport.d.ts + Imported via "./aRandomFileForImport" from file 'aFileWithImports.d.ts' + File is output of project reference source 'aRandomFileForImport.ts' +aRandomFileForImport2.d.ts + Imported via "./aRandomFileForImport2" from file 'aFileWithImports.d.ts' + File is output of project reference source 'aRandomFileForImport2.ts' +aFileWithImports.d.ts + Imported via "./aFileWithImports" from file 'bFileWithImports.ts' + File is output of project reference source 'aFileWithImports.ts' +node_modules/pkg0/index.d.ts + Imported via "pkg0" from file 'bRandomFileForImport.ts' + Imported via "pkg0" from file 'bFileWithImports.ts' +bRandomFileForImport.ts + Imported via "./bRandomFileForImport" from file 'bFileWithImports.ts' + Part of 'files' list in tsconfig.json +bFileWithImports.ts + Part of 'files' list in tsconfig.json +bRandomFileForImport2.ts + Part of 'files' list in tsconfig.json +[HH:MM:SS AM] Found 0 errors. Watching for file changes. + + + +//// [/home/src/workspaces/project/bRandomFileForImport.js] file written with same contents +//// [/home/src/workspaces/project/bRandomFileForImport.d.ts] +export type { ImportInterface0 } from "pkg0"; +export declare const x = 10; + + +//// [/home/src/workspaces/project/bFileWithImports.js] file written with same contents +//// [/home/src/workspaces/project/tsconfig.b.tsbuildinfo] +{"fileNames":["../../tslibs/ts/lib/lib.d.ts","./bmain.ts","./arandomfileforimport.d.ts","./arandomfileforimport2.d.ts","./afilewithimports.d.ts","./node_modules/pkg0/index.d.ts","./brandomfileforimport.ts","./bfilewithimports.ts","./brandomfileforimport2.ts"],"fileIdsList":[[3,4],[5,6,7],[6]],"fileInfos":[{"version":"3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n"},"-6821242887-export declare const x = 10;\n","-6821242887-export declare const x = 10;\n","-19407286966-export { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport declare const y = 10;\n",{"version":"769951468-export interface ImportInterface0 {}","impliedFormat":1},{"version":"-26669354010-export type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;","signature":"-21151159744-export type { ImportInterface0 } from \"pkg0\";\nexport declare const x = 10;\n"},{"version":"-16966571634-export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\nimport type { ImportInterface0 } from \"pkg0\";\n","signature":"-7362913554-export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\n"},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n"}],"root":[2,[7,9]],"options":{"composite":true},"referencedMap":[[5,1],[8,2],[7,3]],"latestChangedDtsFile":"./bRandomFileForImport.d.ts","version":"FakeTSVersion"} + +//// [/home/src/workspaces/project/tsconfig.b.tsbuildinfo.readable.baseline.txt] +{ + "fileNames": [ + "../../tslibs/ts/lib/lib.d.ts", + "./bmain.ts", + "./arandomfileforimport.d.ts", + "./arandomfileforimport2.d.ts", + "./afilewithimports.d.ts", + "./node_modules/pkg0/index.d.ts", + "./brandomfileforimport.ts", + "./bfilewithimports.ts", + "./brandomfileforimport2.ts" + ], + "fileIdsList": [ + [ + "./arandomfileforimport.d.ts", + "./arandomfileforimport2.d.ts" + ], + [ + "./afilewithimports.d.ts", + "./node_modules/pkg0/index.d.ts", + "./brandomfileforimport.ts" + ], + [ + "./node_modules/pkg0/index.d.ts" + ] + ], + "fileInfos": { + "../../tslibs/ts/lib/lib.d.ts": { + "original": { + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true + }, + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "signature": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true + }, + "./bmain.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./arandomfileforimport.d.ts": { + "version": "-6821242887-export declare const x = 10;\n", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./arandomfileforimport2.d.ts": { + "version": "-6821242887-export declare const x = 10;\n", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./afilewithimports.d.ts": { + "version": "-19407286966-export { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport declare const y = 10;\n", + "signature": "-19407286966-export { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport declare const y = 10;\n" + }, + "./node_modules/pkg0/index.d.ts": { + "original": { + "version": "769951468-export interface ImportInterface0 {}", + "impliedFormat": 1 + }, + "version": "769951468-export interface ImportInterface0 {}", + "signature": "769951468-export interface ImportInterface0 {}", + "impliedFormat": "commonjs" + }, + "./brandomfileforimport.ts": { + "original": { + "version": "-26669354010-export type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;", + "signature": "-21151159744-export type { ImportInterface0 } from \"pkg0\";\nexport declare const x = 10;\n" + }, + "version": "-26669354010-export type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;", + "signature": "-21151159744-export type { ImportInterface0 } from \"pkg0\";\nexport declare const x = 10;\n" + }, + "./bfilewithimports.ts": { + "original": { + "version": "-16966571634-export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\nimport type { ImportInterface0 } from \"pkg0\";\n", + "signature": "-7362913554-export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\n" + }, + "version": "-16966571634-export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\nimport type { ImportInterface0 } from \"pkg0\";\n", + "signature": "-7362913554-export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\n" + }, + "./brandomfileforimport2.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + } + }, + "root": [ + [ + 2, + "./bmain.ts" + ], + [ + [ + 7, + 9 + ], + [ + "./brandomfileforimport.ts", + "./bfilewithimports.ts", + "./brandomfileforimport2.ts" + ] + ] + ], + "options": { + "composite": true + }, + "referencedMap": { + "./afilewithimports.d.ts": [ + "./arandomfileforimport.d.ts", + "./arandomfileforimport2.d.ts" + ], + "./bfilewithimports.ts": [ + "./afilewithimports.d.ts", + "./node_modules/pkg0/index.d.ts", + "./brandomfileforimport.ts" + ], + "./brandomfileforimport.ts": [ + "./node_modules/pkg0/index.d.ts" + ] + }, + "latestChangedDtsFile": "./bRandomFileForImport.d.ts", + "version": "FakeTSVersion", + "size": 1962 +} + + + +Program root files: [ + "/home/src/workspaces/project/bMain.ts", + "/home/src/workspaces/project/bFileWithImports.ts", + "/home/src/workspaces/project/bRandomFileForImport.ts", + "/home/src/workspaces/project/bRandomFileForImport2.ts" +] +Program options: { + "composite": true, + "traceResolution": true, + "watch": true, + "project": "/home/src/workspaces/project/tsconfig.b.json", + "explainFiles": true, + "extendedDiagnostics": true, + "configFilePath": "/home/src/workspaces/project/tsconfig.b.json" +} +Program structureReused: SafeModules +Program files:: +/home/src/tslibs/TS/Lib/lib.d.ts +/home/src/workspaces/project/bMain.ts +/home/src/workspaces/project/aRandomFileForImport.d.ts +/home/src/workspaces/project/aRandomFileForImport2.d.ts +/home/src/workspaces/project/aFileWithImports.d.ts +/home/src/workspaces/project/node_modules/pkg0/index.d.ts +/home/src/workspaces/project/bRandomFileForImport.ts +/home/src/workspaces/project/bFileWithImports.ts +/home/src/workspaces/project/bRandomFileForImport2.ts + +Semantic diagnostics in builder refreshed for:: +/home/src/workspaces/project/bRandomFileForImport.ts +/home/src/workspaces/project/bFileWithImports.ts + +Shape signatures in builder refreshed for:: +/home/src/workspaces/project/brandomfileforimport.ts (computed .d.ts) +/home/src/workspaces/project/bfilewithimports.ts (computed .d.ts) + +exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/resolutionCache/project-with-imports.js b/tests/baselines/reference/tscWatch/resolutionCache/project-with-imports.js new file mode 100644 index 0000000000000..a2f88857edd9a --- /dev/null +++ b/tests/baselines/reference/tscWatch/resolutionCache/project-with-imports.js @@ -0,0 +1,2519 @@ +currentDirectory:: /home/src/workspaces/project useCaseSensitiveFileNames:: false +Input:: +//// [/home/src/workspaces/project/tsconfig.json] +{ + "compilerOptions": { + "traceResolution": true + }, + "include": [ + "*.ts" + ], + "exclude": [ + "*.d.ts" + ] +} + +//// [/home/src/workspaces/project/main.ts] +export const x = 10; + +//// [/home/src/workspaces/project/fileWithImports.ts] +import type { ImportInterface0 } from "pkg0" assert { "resolution-mode": "import" }; +import type { RequireInterface1 } from "pkg1" assert { "resolution-mode": "require" }; + + +//// [/home/src/workspaces/project/randomFileForImport.ts] +export const x = 10; + +//// [/home/src/workspaces/project/node_modules/pkg0/package.json] +{ + "name": "pkg0", + "version": "0.0.1", + "exports": { + "import": "./import.js", + "require": "./require.js" + } +} + +//// [/home/src/workspaces/project/node_modules/pkg0/import.d.ts] +export interface ImportInterface0 {} + +//// [/home/src/workspaces/project/node_modules/pkg0/require.d.ts] +export interface RequireInterface0 {} + +//// [/home/src/workspaces/project/node_modules/pkg1/package.json] +{ + "name": "pkg1", + "version": "0.0.1", + "exports": { + "import": "./import.js", + "require": "./require.js" + } +} + +//// [/home/src/workspaces/project/node_modules/pkg1/import.d.ts] +export interface ImportInterface1 {} + +//// [/home/src/workspaces/project/fileWithTypeRefs.ts] +/// +/// +interface LocalInterface extends ImportInterface2, RequireInterface3 {} +export {} + + +//// [/home/src/workspaces/project/randomFileForTypeRef.ts] +export const x = 10; + +//// [/home/src/workspaces/project/node_modules/pkg2/package.json] +{ + "name": "pkg2", + "version": "0.0.1", + "exports": { + "import": "./import.js", + "require": "./require.js" + } +} + +//// [/home/src/workspaces/project/node_modules/pkg2/import.d.ts] +export {}; +declare global { + interface ImportInterface2 {} +} + + +//// [/home/src/workspaces/project/node_modules/pkg2/require.d.ts] +export {}; +declare global { + interface RequireInterface2 {} +} + + +//// [/home/src/workspaces/project/node_modules/pkg3/package.json] +{ + "name": "pkg3", + "version": "0.0.1", + "exports": { + "import": "./import.js", + "require": "./require.js" + } +} + +//// [/home/src/workspaces/project/node_modules/pkg3/import.d.ts] +export {}; +declare global { + interface ImportInterface3 {} +} + + +//// [/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts] +export const x = 10; + +//// [/home/src/tslibs/TS/Lib/lib.d.ts] +/// +interface Boolean {} +interface Function {} +interface CallableFunction {} +interface NewableFunction {} +interface IArguments {} +interface Number { toExponential: any; } +interface Object {} +interface RegExp {} +interface String { charAt: any; } +interface Array { length: number; [n: number]: T; } +interface ReadonlyArray {} +declare const console: { log(msg: any): void; }; + + +/home/src/tslibs/TS/Lib/tsc.js -w -p /home/src/workspaces/project/tsconfig.json --explainFiles --extendedDiagnostics +Output:: +[HH:MM:SS AM] Starting compilation in watch mode... + +Current directory: /home/src/workspaces/project CaseSensitiveFileNames: false +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/tsconfig.json 2000 undefined Config file +Synchronizing program +CreatingProgramWith:: + roots: ["/home/src/workspaces/project/fileWithImports.ts","/home/src/workspaces/project/fileWithTypeRefs.ts","/home/src/workspaces/project/main.ts","/home/src/workspaces/project/randomFileForImport.ts","/home/src/workspaces/project/randomFileForTypeRef.ts"] + options: {"traceResolution":true,"watch":true,"project":"/home/src/workspaces/project/tsconfig.json","explainFiles":true,"extendedDiagnostics":true,"configFilePath":"/home/src/workspaces/project/tsconfig.json"} +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/fileWithImports.ts 250 undefined Source file +======== Resolving module 'pkg0' from '/home/src/workspaces/project/fileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +File '/home/src/workspaces/project/package.json' does not exist. +File '/home/src/workspaces/package.json' does not exist. +File '/home/src/package.json' does not exist. +File '/home/package.json' does not exist. +File '/package.json' does not exist. +Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Found 'package.json' at '/home/src/workspaces/project/node_modules/pkg0/package.json'. +Entering conditional exports. +Matched 'exports' condition 'import'. +Using 'exports' subpath '.' with target './import.js'. +File name '/home/src/workspaces/project/node_modules/pkg0/import.js' has a '.js' extension - stripping it. +File '/home/src/workspaces/project/node_modules/pkg0/import.ts' does not exist. +File '/home/src/workspaces/project/node_modules/pkg0/import.tsx' does not exist. +File '/home/src/workspaces/project/node_modules/pkg0/import.d.ts' exists - use it as a name resolution result. +'package.json' does not have a 'peerDependencies' field. +Resolved under condition 'import'. +Exiting conditional exports. +Resolving real path for '/home/src/workspaces/project/node_modules/pkg0/import.d.ts', result '/home/src/workspaces/project/node_modules/pkg0/import.d.ts'. +======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. ======== +DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Failed Lookup Locations +DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces 0 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces 0 undefined Failed Lookup Locations +DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Failed Lookup Locations +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/pkg0/package.json 2000 undefined File location affecting resolution +======== Resolving module 'pkg1' from '/home/src/workspaces/project/fileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Found 'package.json' at '/home/src/workspaces/project/node_modules/pkg1/package.json'. +Entering conditional exports. +Saw non-matching condition 'import'. +Matched 'exports' condition 'require'. +Using 'exports' subpath '.' with target './require.js'. +File name '/home/src/workspaces/project/node_modules/pkg1/require.js' has a '.js' extension - stripping it. +File '/home/src/workspaces/project/node_modules/pkg1/require.ts' does not exist. +File '/home/src/workspaces/project/node_modules/pkg1/require.tsx' does not exist. +File '/home/src/workspaces/project/node_modules/pkg1/require.d.ts' does not exist. +Failed to resolve under condition 'require'. +Exiting conditional exports. +File '/home/src/workspaces/project/node_modules/@types/pkg1.d.ts' does not exist. +Directory '/home/src/workspaces/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/node_modules' does not exist, skipping all lookups in it. +Directory '/home/node_modules' does not exist, skipping all lookups in it. +Directory '/node_modules' does not exist, skipping all lookups in it. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +Loading module 'pkg1' from 'node_modules' folder, target file types: JavaScript. +Searching all ancestor node_modules directories for fallback extensions: JavaScript. +File '/home/src/workspaces/project/node_modules/pkg1/package.json' exists according to earlier cached lookups. +Entering conditional exports. +Saw non-matching condition 'import'. +Matched 'exports' condition 'require'. +Using 'exports' subpath '.' with target './require.js'. +File name '/home/src/workspaces/project/node_modules/pkg1/require.js' has a '.js' extension - stripping it. +File '/home/src/workspaces/project/node_modules/pkg1/require.js' does not exist. +File '/home/src/workspaces/project/node_modules/pkg1/require.jsx' does not exist. +Failed to resolve under condition 'require'. +Exiting conditional exports. +Directory '/home/src/workspaces/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/node_modules' does not exist, skipping all lookups in it. +Directory '/home/node_modules' does not exist, skipping all lookups in it. +Directory '/node_modules' does not exist, skipping all lookups in it. +Resolution of non-relative name failed; trying with '--moduleResolution bundler' to see if project may need configuration update. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +File '/home/src/workspaces/project/node_modules/pkg1/package.json' exists according to earlier cached lookups. +Entering conditional exports. +Matched 'exports' condition 'import'. +Using 'exports' subpath '.' with target './import.js'. +File name '/home/src/workspaces/project/node_modules/pkg1/import.js' has a '.js' extension - stripping it. +File '/home/src/workspaces/project/node_modules/pkg1/import.ts' does not exist. +File '/home/src/workspaces/project/node_modules/pkg1/import.tsx' does not exist. +File '/home/src/workspaces/project/node_modules/pkg1/import.d.ts' exists - use it as a name resolution result. +'package.json' does not have a 'peerDependencies' field. +Resolved under condition 'import'. +Exiting conditional exports. +======== Module name 'pkg1' was not resolved. ======== +DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Failed Lookup Locations +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/pkg1/package.json 2000 undefined File location affecting resolution +File '/home/src/workspaces/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/pkg0/import.d.ts 250 undefined Source file +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/fileWithTypeRefs.ts 250 undefined Source file +======== Resolving type reference directive 'pkg2', containing file '/home/src/workspaces/project/fileWithTypeRefs.ts', root directory '/home/src/workspaces/project/node_modules/@types,/home/src/workspaces/node_modules/@types,/home/src/node_modules/@types,/home/node_modules/@types,/node_modules/@types'. ======== +Resolving with primary search path '/home/src/workspaces/project/node_modules/@types, /home/src/workspaces/node_modules/@types, /home/src/node_modules/@types, /home/node_modules/@types, /node_modules/@types'. +Directory '/home/src/workspaces/node_modules/@types' does not exist, skipping all lookups in it. +Directory '/home/src/node_modules/@types' does not exist, skipping all lookups in it. +Directory '/home/node_modules/@types' does not exist, skipping all lookups in it. +Directory '/node_modules/@types' does not exist, skipping all lookups in it. +Looking up in 'node_modules' folder, initial location '/home/src/workspaces/project'. +Searching all ancestor node_modules directories for preferred extensions: Declaration. +Found 'package.json' at '/home/src/workspaces/project/node_modules/pkg2/package.json'. +Entering conditional exports. +Matched 'exports' condition 'import'. +Using 'exports' subpath '.' with target './import.js'. +File name '/home/src/workspaces/project/node_modules/pkg2/import.js' has a '.js' extension - stripping it. +File '/home/src/workspaces/project/node_modules/pkg2/import.d.ts' exists - use it as a name resolution result. +'package.json' does not have a 'peerDependencies' field. +Resolved under condition 'import'. +Exiting conditional exports. +Resolving real path for '/home/src/workspaces/project/node_modules/pkg2/import.d.ts', result '/home/src/workspaces/project/node_modules/pkg2/import.d.ts'. +======== Type reference directive 'pkg2' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1', primary: false. ======== +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/pkg2/package.json 2000 undefined File location affecting resolution +======== Resolving type reference directive 'pkg3', containing file '/home/src/workspaces/project/fileWithTypeRefs.ts', root directory '/home/src/workspaces/project/node_modules/@types,/home/src/workspaces/node_modules/@types,/home/src/node_modules/@types,/home/node_modules/@types,/node_modules/@types'. ======== +Resolving with primary search path '/home/src/workspaces/project/node_modules/@types, /home/src/workspaces/node_modules/@types, /home/src/node_modules/@types, /home/node_modules/@types, /node_modules/@types'. +Directory '/home/src/workspaces/node_modules/@types' does not exist, skipping all lookups in it. +Directory '/home/src/node_modules/@types' does not exist, skipping all lookups in it. +Directory '/home/node_modules/@types' does not exist, skipping all lookups in it. +Directory '/node_modules/@types' does not exist, skipping all lookups in it. +Looking up in 'node_modules' folder, initial location '/home/src/workspaces/project'. +Searching all ancestor node_modules directories for preferred extensions: Declaration. +Found 'package.json' at '/home/src/workspaces/project/node_modules/pkg3/package.json'. +Entering conditional exports. +Saw non-matching condition 'import'. +Matched 'exports' condition 'require'. +Using 'exports' subpath '.' with target './require.js'. +File name '/home/src/workspaces/project/node_modules/pkg3/require.js' has a '.js' extension - stripping it. +File '/home/src/workspaces/project/node_modules/pkg3/require.d.ts' does not exist. +Failed to resolve under condition 'require'. +Exiting conditional exports. +File '/home/src/workspaces/project/node_modules/@types/pkg3.d.ts' does not exist. +Directory '/home/src/workspaces/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/node_modules' does not exist, skipping all lookups in it. +Directory '/home/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. ======== +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/pkg3/package.json 2000 undefined File location affecting resolution +File '/home/src/workspaces/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/pkg2/import.d.ts 250 undefined Source file +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/main.ts 250 undefined Source file +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/randomFileForImport.ts 250 undefined Source file +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/randomFileForTypeRef.ts 250 undefined Source file +======== Resolving type reference directive 'pkg4', containing file '/home/src/workspaces/project/__inferred type names__.ts', root directory '/home/src/workspaces/project/node_modules/@types,/home/src/workspaces/node_modules/@types,/home/src/node_modules/@types,/home/node_modules/@types,/node_modules/@types'. ======== +Resolving with primary search path '/home/src/workspaces/project/node_modules/@types, /home/src/workspaces/node_modules/@types, /home/src/node_modules/@types, /home/node_modules/@types, /node_modules/@types'. +File '/home/src/workspaces/project/node_modules/@types/pkg4/package.json' does not exist. +File '/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts' exists - use it as a name resolution result. +Resolving real path for '/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts', result '/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts'. +======== Type reference directive 'pkg4' was successfully resolved to '/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts', primary: true. ======== +File '/home/src/workspaces/project/node_modules/@types/pkg4/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/@types/package.json' does not exist. +File '/home/src/workspaces/project/node_modules/package.json' does not exist. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts 250 undefined Source file +FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 250 undefined Source file +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/pkg4/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/package.json 2000 undefined File location affecting resolution +DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Type roots +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Type roots +DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Type roots +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Type roots +DirectoryWatcher:: Triggered with /home/src/workspaces/project/fileWithImports.js :: WatchInfo: /home/src/workspaces/project 0 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/fileWithImports.js :: WatchInfo: /home/src/workspaces/project 0 undefined Failed Lookup Locations +DirectoryWatcher:: Triggered with /home/src/workspaces/project/fileWithTypeRefs.js :: WatchInfo: /home/src/workspaces/project 0 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/fileWithTypeRefs.js :: WatchInfo: /home/src/workspaces/project 0 undefined Failed Lookup Locations +DirectoryWatcher:: Triggered with /home/src/workspaces/project/main.js :: WatchInfo: /home/src/workspaces/project 0 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/main.js :: WatchInfo: /home/src/workspaces/project 0 undefined Failed Lookup Locations +DirectoryWatcher:: Triggered with /home/src/workspaces/project/randomFileForImport.js :: WatchInfo: /home/src/workspaces/project 0 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/randomFileForImport.js :: WatchInfo: /home/src/workspaces/project 0 undefined Failed Lookup Locations +DirectoryWatcher:: Triggered with /home/src/workspaces/project/randomFileForTypeRef.js :: WatchInfo: /home/src/workspaces/project 0 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/randomFileForTypeRef.js :: WatchInfo: /home/src/workspaces/project 0 undefined Failed Lookup Locations +error TS2318: Cannot find global type 'ImportAttributes'. + +fileWithImports.ts:2:40 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + There are types at '/home/src/workspaces/project/node_modules/pkg1/import.d.ts', but this result could not be resolved under your current 'moduleResolution' setting. Consider updating to 'node16', 'nodenext', or 'bundler'. + +2 import type { RequireInterface1 } from "pkg1" assert { "resolution-mode": "require" }; +   ~~~~~~ + +fileWithTypeRefs.ts:2:23 - error TS2688: Cannot find type definition file for 'pkg3'. + +2 /// +   ~~~~ + +fileWithTypeRefs.ts:3:52 - error TS2304: Cannot find name 'RequireInterface3'. + +3 interface LocalInterface extends ImportInterface2, RequireInterface3 {} +   ~~~~~~~~~~~~~~~~~ + +../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' +node_modules/pkg0/import.d.ts + Imported via "pkg0" from file 'fileWithImports.ts' with packageId 'pkg0/import.d.ts@0.0.1' +fileWithImports.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +node_modules/pkg2/import.d.ts + Type library referenced via 'pkg2' from file 'fileWithTypeRefs.ts' with packageId 'pkg2/import.d.ts@0.0.1' +fileWithTypeRefs.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +main.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +randomFileForImport.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +randomFileForTypeRef.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +node_modules/@types/pkg4/index.d.ts + Entry point for implicit type library 'pkg4' +[HH:MM:SS AM] Found 4 errors. Watching for file changes. + +DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Wild card directory +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Wild card directory + + +//// [/home/src/workspaces/project/fileWithImports.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); + + +//// [/home/src/workspaces/project/fileWithTypeRefs.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +/// +/// + + +//// [/home/src/workspaces/project/main.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/randomFileForImport.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/randomFileForTypeRef.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + + +PolledWatches:: +/home/src/workspaces/node_modules: *new* + {"pollingInterval":500} +/home/src/workspaces/node_modules/@types: *new* + {"pollingInterval":500} +/home/src/workspaces/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/@types/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/@types/pkg4/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/package.json: *new* + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: *new* + {} +/home/src/workspaces: *new* + {} +/home/src/workspaces/project: *new* + {} +/home/src/workspaces/project/fileWithImports.ts: *new* + {} +/home/src/workspaces/project/fileWithTypeRefs.ts: *new* + {} +/home/src/workspaces/project/main.ts: *new* + {} +/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts: *new* + {} +/home/src/workspaces/project/node_modules/pkg0/import.d.ts: *new* + {} +/home/src/workspaces/project/node_modules/pkg0/package.json: *new* + {} +/home/src/workspaces/project/node_modules/pkg1/package.json: *new* + {} +/home/src/workspaces/project/node_modules/pkg2/import.d.ts: *new* + {} +/home/src/workspaces/project/node_modules/pkg2/package.json: *new* + {} +/home/src/workspaces/project/node_modules/pkg3/package.json: *new* + {} +/home/src/workspaces/project/randomFileForImport.ts: *new* + {} +/home/src/workspaces/project/randomFileForTypeRef.ts: *new* + {} +/home/src/workspaces/project/tsconfig.json: *new* + {} + +FsWatchesRecursive:: +/home/src/workspaces/project/node_modules: *new* + {} +/home/src/workspaces/project/node_modules/@types: *new* + {} + +Program root files: [ + "/home/src/workspaces/project/fileWithImports.ts", + "/home/src/workspaces/project/fileWithTypeRefs.ts", + "/home/src/workspaces/project/main.ts", + "/home/src/workspaces/project/randomFileForImport.ts", + "/home/src/workspaces/project/randomFileForTypeRef.ts" +] +Program options: { + "traceResolution": true, + "watch": true, + "project": "/home/src/workspaces/project/tsconfig.json", + "explainFiles": true, + "extendedDiagnostics": true, + "configFilePath": "/home/src/workspaces/project/tsconfig.json" +} +Program structureReused: Not +Program files:: +/home/src/tslibs/TS/Lib/lib.d.ts +/home/src/workspaces/project/node_modules/pkg0/import.d.ts +/home/src/workspaces/project/fileWithImports.ts +/home/src/workspaces/project/node_modules/pkg2/import.d.ts +/home/src/workspaces/project/fileWithTypeRefs.ts +/home/src/workspaces/project/main.ts +/home/src/workspaces/project/randomFileForImport.ts +/home/src/workspaces/project/randomFileForTypeRef.ts +/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts + +Semantic diagnostics in builder refreshed for:: +/home/src/tslibs/TS/Lib/lib.d.ts +/home/src/workspaces/project/node_modules/pkg0/import.d.ts +/home/src/workspaces/project/fileWithImports.ts +/home/src/workspaces/project/node_modules/pkg2/import.d.ts +/home/src/workspaces/project/fileWithTypeRefs.ts +/home/src/workspaces/project/main.ts +/home/src/workspaces/project/randomFileForImport.ts +/home/src/workspaces/project/randomFileForTypeRef.ts +/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts + +Shape signatures in builder refreshed for:: +/home/src/tslibs/ts/lib/lib.d.ts (used version) +/home/src/workspaces/project/node_modules/pkg0/import.d.ts (used version) +/home/src/workspaces/project/filewithimports.ts (used version) +/home/src/workspaces/project/node_modules/pkg2/import.d.ts (used version) +/home/src/workspaces/project/filewithtyperefs.ts (used version) +/home/src/workspaces/project/main.ts (used version) +/home/src/workspaces/project/randomfileforimport.ts (used version) +/home/src/workspaces/project/randomfilefortyperef.ts (used version) +/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts (used version) + +exitCode:: ExitStatus.undefined + +Change:: modify randomFileForImport by adding import + +Input:: +//// [/home/src/workspaces/project/randomFileForImport.ts] +import type { ImportInterface0 } from "pkg0" assert { "resolution-mode": "import" }; +export const x = 10; + + +Output:: +FileWatcher:: Triggered with /home/src/workspaces/project/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/randomFileForImport.ts 250 undefined Source file +Scheduling update +Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/randomFileForImport.ts 250 undefined Source file + + +Timeout callback:: count: 1 +1: timerToUpdateProgram *new* + +Before running Timeout callback:: count: 1 +1: timerToUpdateProgram + +Host is moving to new time +After running Timeout callback:: count: 0 +Output:: +Synchronizing program +[HH:MM:SS AM] File change detected. Starting incremental compilation... + +CreatingProgramWith:: + roots: ["/home/src/workspaces/project/fileWithImports.ts","/home/src/workspaces/project/fileWithTypeRefs.ts","/home/src/workspaces/project/main.ts","/home/src/workspaces/project/randomFileForImport.ts","/home/src/workspaces/project/randomFileForTypeRef.ts"] + options: {"traceResolution":true,"watch":true,"project":"/home/src/workspaces/project/tsconfig.json","explainFiles":true,"extendedDiagnostics":true,"configFilePath":"/home/src/workspaces/project/tsconfig.json"} +File '/home/src/workspaces/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/@types/pkg4/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/@types/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was not resolved. +File '/home/src/workspaces/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. +Reusing resolution of type reference directive 'pkg2' from '/home/src/workspaces/project/fileWithTypeRefs.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Reusing resolution of type reference directive 'pkg3' from '/home/src/workspaces/project/fileWithTypeRefs.ts' of old program, it was not resolved. +File '/home/src/workspaces/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. +======== Resolving module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts'. ======== +Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project'. +======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. ======== +Reusing resolution of type reference directive 'pkg4' from '/home/src/workspaces/project/__inferred type names__.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts'. +File '/home/src/workspaces/project/node_modules/@types/pkg4/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/@types/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +error TS2318: Cannot find global type 'ImportAttributes'. + +fileWithImports.ts:2:40 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + There are types at '/home/src/workspaces/project/node_modules/pkg1/import.d.ts', but this result could not be resolved under your current 'moduleResolution' setting. Consider updating to 'node16', 'nodenext', or 'bundler'. + +2 import type { RequireInterface1 } from "pkg1" assert { "resolution-mode": "require" }; +   ~~~~~~ + +fileWithTypeRefs.ts:2:23 - error TS2688: Cannot find type definition file for 'pkg3'. + +2 /// +   ~~~~ + +fileWithTypeRefs.ts:3:52 - error TS2304: Cannot find name 'RequireInterface3'. + +3 interface LocalInterface extends ImportInterface2, RequireInterface3 {} +   ~~~~~~~~~~~~~~~~~ + +../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' +node_modules/pkg0/import.d.ts + Imported via "pkg0" from file 'fileWithImports.ts' with packageId 'pkg0/import.d.ts@0.0.1' + Imported via "pkg0" from file 'randomFileForImport.ts' with packageId 'pkg0/import.d.ts@0.0.1' +fileWithImports.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +node_modules/pkg2/import.d.ts + Type library referenced via 'pkg2' from file 'fileWithTypeRefs.ts' with packageId 'pkg2/import.d.ts@0.0.1' +fileWithTypeRefs.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +main.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +randomFileForImport.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +randomFileForTypeRef.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +node_modules/@types/pkg4/index.d.ts + Entry point for implicit type library 'pkg4' +[HH:MM:SS AM] Found 4 errors. Watching for file changes. + + + +//// [/home/src/workspaces/project/randomFileForImport.js] file written with same contents + + +Program root files: [ + "/home/src/workspaces/project/fileWithImports.ts", + "/home/src/workspaces/project/fileWithTypeRefs.ts", + "/home/src/workspaces/project/main.ts", + "/home/src/workspaces/project/randomFileForImport.ts", + "/home/src/workspaces/project/randomFileForTypeRef.ts" +] +Program options: { + "traceResolution": true, + "watch": true, + "project": "/home/src/workspaces/project/tsconfig.json", + "explainFiles": true, + "extendedDiagnostics": true, + "configFilePath": "/home/src/workspaces/project/tsconfig.json" +} +Program structureReused: SafeModules +Program files:: +/home/src/tslibs/TS/Lib/lib.d.ts +/home/src/workspaces/project/node_modules/pkg0/import.d.ts +/home/src/workspaces/project/fileWithImports.ts +/home/src/workspaces/project/node_modules/pkg2/import.d.ts +/home/src/workspaces/project/fileWithTypeRefs.ts +/home/src/workspaces/project/main.ts +/home/src/workspaces/project/randomFileForImport.ts +/home/src/workspaces/project/randomFileForTypeRef.ts +/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts + +Semantic diagnostics in builder refreshed for:: +/home/src/workspaces/project/randomFileForImport.ts + +Shape signatures in builder refreshed for:: +/home/src/workspaces/project/randomfileforimport.ts (computed .d.ts) + +exitCode:: ExitStatus.undefined + +Change:: modify randomFileForTypeRef by adding typeRef + +Input:: +//// [/home/src/workspaces/project/randomFileForTypeRef.ts] +/// +export const x = 10; + + +Output:: +FileWatcher:: Triggered with /home/src/workspaces/project/randomFileForTypeRef.ts 1:: WatchInfo: /home/src/workspaces/project/randomFileForTypeRef.ts 250 undefined Source file +Scheduling update +Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/randomFileForTypeRef.ts 1:: WatchInfo: /home/src/workspaces/project/randomFileForTypeRef.ts 250 undefined Source file + + +Timeout callback:: count: 1 +2: timerToUpdateProgram *new* + +Before running Timeout callback:: count: 1 +2: timerToUpdateProgram + +Host is moving to new time +After running Timeout callback:: count: 0 +Output:: +Synchronizing program +[HH:MM:SS AM] File change detected. Starting incremental compilation... + +CreatingProgramWith:: + roots: ["/home/src/workspaces/project/fileWithImports.ts","/home/src/workspaces/project/fileWithTypeRefs.ts","/home/src/workspaces/project/main.ts","/home/src/workspaces/project/randomFileForImport.ts","/home/src/workspaces/project/randomFileForTypeRef.ts"] + options: {"traceResolution":true,"watch":true,"project":"/home/src/workspaces/project/tsconfig.json","explainFiles":true,"extendedDiagnostics":true,"configFilePath":"/home/src/workspaces/project/tsconfig.json"} +File '/home/src/workspaces/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/@types/pkg4/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/@types/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was not resolved. +File '/home/src/workspaces/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. +Reusing resolution of type reference directive 'pkg2' from '/home/src/workspaces/project/fileWithTypeRefs.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Reusing resolution of type reference directive 'pkg3' from '/home/src/workspaces/project/fileWithTypeRefs.ts' of old program, it was not resolved. +File '/home/src/workspaces/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. +======== Resolving type reference directive 'pkg2', containing file '/home/src/workspaces/project/randomFileForTypeRef.ts'. ======== +Resolution for type reference directive 'pkg2' was found in cache from location '/home/src/workspaces/project'. +======== Type reference directive 'pkg2' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1', primary: false. ======== +Reusing resolution of type reference directive 'pkg4' from '/home/src/workspaces/project/__inferred type names__.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts'. +File '/home/src/workspaces/project/node_modules/@types/pkg4/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/@types/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +error TS2318: Cannot find global type 'ImportAttributes'. + +fileWithImports.ts:2:40 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + There are types at '/home/src/workspaces/project/node_modules/pkg1/import.d.ts', but this result could not be resolved under your current 'moduleResolution' setting. Consider updating to 'node16', 'nodenext', or 'bundler'. + +2 import type { RequireInterface1 } from "pkg1" assert { "resolution-mode": "require" }; +   ~~~~~~ + +fileWithTypeRefs.ts:2:23 - error TS2688: Cannot find type definition file for 'pkg3'. + +2 /// +   ~~~~ + +fileWithTypeRefs.ts:3:52 - error TS2304: Cannot find name 'RequireInterface3'. + +3 interface LocalInterface extends ImportInterface2, RequireInterface3 {} +   ~~~~~~~~~~~~~~~~~ + +../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' +node_modules/pkg0/import.d.ts + Imported via "pkg0" from file 'fileWithImports.ts' with packageId 'pkg0/import.d.ts@0.0.1' + Imported via "pkg0" from file 'randomFileForImport.ts' with packageId 'pkg0/import.d.ts@0.0.1' +fileWithImports.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +node_modules/pkg2/import.d.ts + Type library referenced via 'pkg2' from file 'fileWithTypeRefs.ts' with packageId 'pkg2/import.d.ts@0.0.1' + Type library referenced via 'pkg2' from file 'randomFileForTypeRef.ts' with packageId 'pkg2/import.d.ts@0.0.1' +fileWithTypeRefs.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +main.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +randomFileForImport.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +randomFileForTypeRef.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +node_modules/@types/pkg4/index.d.ts + Entry point for implicit type library 'pkg4' +[HH:MM:SS AM] Found 4 errors. Watching for file changes. + + + +//// [/home/src/workspaces/project/randomFileForTypeRef.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +/// +exports.x = 10; + + + + +Program root files: [ + "/home/src/workspaces/project/fileWithImports.ts", + "/home/src/workspaces/project/fileWithTypeRefs.ts", + "/home/src/workspaces/project/main.ts", + "/home/src/workspaces/project/randomFileForImport.ts", + "/home/src/workspaces/project/randomFileForTypeRef.ts" +] +Program options: { + "traceResolution": true, + "watch": true, + "project": "/home/src/workspaces/project/tsconfig.json", + "explainFiles": true, + "extendedDiagnostics": true, + "configFilePath": "/home/src/workspaces/project/tsconfig.json" +} +Program structureReused: SafeModules +Program files:: +/home/src/tslibs/TS/Lib/lib.d.ts +/home/src/workspaces/project/node_modules/pkg0/import.d.ts +/home/src/workspaces/project/fileWithImports.ts +/home/src/workspaces/project/node_modules/pkg2/import.d.ts +/home/src/workspaces/project/fileWithTypeRefs.ts +/home/src/workspaces/project/main.ts +/home/src/workspaces/project/randomFileForImport.ts +/home/src/workspaces/project/randomFileForTypeRef.ts +/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts + +Semantic diagnostics in builder refreshed for:: +/home/src/workspaces/project/randomFileForTypeRef.ts + +Shape signatures in builder refreshed for:: +/home/src/workspaces/project/randomfilefortyperef.ts (computed .d.ts) + +exitCode:: ExitStatus.undefined + +Change:: write file not resolved by import + +Input:: +//// [/home/src/workspaces/project/node_modules/pkg1/require.d.ts] +export interface RequireInterface1 {} + + +Output:: +DirectoryWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg1/require.d.ts :: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Failed Lookup Locations +Scheduling invalidateFailedLookup +Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg1/require.d.ts :: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Failed Lookup Locations + + +Timeout callback:: count: 1 +3: timerToInvalidateFailedLookupResolutions *new* + +Before running Timeout callback:: count: 1 +3: timerToInvalidateFailedLookupResolutions + +Host is moving to new time +After running Timeout callback:: count: 1 +Output:: +Scheduling update + + + +Timeout callback:: count: 1 +4: timerToUpdateProgram *new* + +Before running Timeout callback:: count: 1 +4: timerToUpdateProgram + +Host is moving to new time +After running Timeout callback:: count: 0 +Output:: +Synchronizing program +[HH:MM:SS AM] File change detected. Starting incremental compilation... + +CreatingProgramWith:: + roots: ["/home/src/workspaces/project/fileWithImports.ts","/home/src/workspaces/project/fileWithTypeRefs.ts","/home/src/workspaces/project/main.ts","/home/src/workspaces/project/randomFileForImport.ts","/home/src/workspaces/project/randomFileForTypeRef.ts"] + options: {"traceResolution":true,"watch":true,"project":"/home/src/workspaces/project/tsconfig.json","explainFiles":true,"extendedDiagnostics":true,"configFilePath":"/home/src/workspaces/project/tsconfig.json"} +File '/home/src/workspaces/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/@types/pkg4/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/@types/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. +======== Resolving module 'pkg1' from '/home/src/workspaces/project/fileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Found 'package.json' at '/home/src/workspaces/project/node_modules/pkg1/package.json'. +Entering conditional exports. +Saw non-matching condition 'import'. +Matched 'exports' condition 'require'. +Using 'exports' subpath '.' with target './require.js'. +File name '/home/src/workspaces/project/node_modules/pkg1/require.js' has a '.js' extension - stripping it. +File '/home/src/workspaces/project/node_modules/pkg1/require.ts' does not exist. +File '/home/src/workspaces/project/node_modules/pkg1/require.tsx' does not exist. +File '/home/src/workspaces/project/node_modules/pkg1/require.d.ts' exists - use it as a name resolution result. +'package.json' does not have a 'peerDependencies' field. +Resolved under condition 'require'. +Exiting conditional exports. +Resolving real path for '/home/src/workspaces/project/node_modules/pkg1/require.d.ts', result '/home/src/workspaces/project/node_modules/pkg1/require.d.ts'. +======== Module name 'pkg1' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/require.d.ts' with Package ID 'pkg1/require.d.ts@0.0.1'. ======== +File '/home/src/workspaces/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/pkg1/package.json' exists according to earlier cached lookups. +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/pkg1/require.d.ts 250 undefined Source file +Reusing resolution of type reference directive 'pkg2' from '/home/src/workspaces/project/fileWithTypeRefs.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Reusing resolution of type reference directive 'pkg3' from '/home/src/workspaces/project/fileWithTypeRefs.ts' of old program, it was not resolved. +File '/home/src/workspaces/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. +Reusing resolution of type reference directive 'pkg2' from '/home/src/workspaces/project/randomFileForTypeRef.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Reusing resolution of type reference directive 'pkg4' from '/home/src/workspaces/project/__inferred type names__.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts'. +File '/home/src/workspaces/project/node_modules/@types/pkg4/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/@types/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +error TS2318: Cannot find global type 'ImportAttributes'. + +fileWithTypeRefs.ts:2:23 - error TS2688: Cannot find type definition file for 'pkg3'. + +2 /// +   ~~~~ + +fileWithTypeRefs.ts:3:52 - error TS2304: Cannot find name 'RequireInterface3'. + +3 interface LocalInterface extends ImportInterface2, RequireInterface3 {} +   ~~~~~~~~~~~~~~~~~ + +../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' +node_modules/pkg0/import.d.ts + Imported via "pkg0" from file 'fileWithImports.ts' with packageId 'pkg0/import.d.ts@0.0.1' + Imported via "pkg0" from file 'randomFileForImport.ts' with packageId 'pkg0/import.d.ts@0.0.1' +node_modules/pkg1/require.d.ts + Imported via "pkg1" from file 'fileWithImports.ts' with packageId 'pkg1/require.d.ts@0.0.1' +fileWithImports.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +node_modules/pkg2/import.d.ts + Type library referenced via 'pkg2' from file 'fileWithTypeRefs.ts' with packageId 'pkg2/import.d.ts@0.0.1' + Type library referenced via 'pkg2' from file 'randomFileForTypeRef.ts' with packageId 'pkg2/import.d.ts@0.0.1' +fileWithTypeRefs.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +main.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +randomFileForImport.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +randomFileForTypeRef.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +node_modules/@types/pkg4/index.d.ts + Entry point for implicit type library 'pkg4' +[HH:MM:SS AM] Found 3 errors. Watching for file changes. + + + +//// [/home/src/workspaces/project/fileWithImports.js] file written with same contents + +PolledWatches:: +/home/src/workspaces/node_modules: + {"pollingInterval":500} +/home/src/workspaces/node_modules/@types: + {"pollingInterval":500} +/home/src/workspaces/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/@types/pkg4/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/home/src/workspaces: + {} +/home/src/workspaces/project: + {} +/home/src/workspaces/project/fileWithImports.ts: + {} +/home/src/workspaces/project/fileWithTypeRefs.ts: + {} +/home/src/workspaces/project/main.ts: + {} +/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts: + {} +/home/src/workspaces/project/node_modules/pkg0/import.d.ts: + {} +/home/src/workspaces/project/node_modules/pkg0/package.json: + {} +/home/src/workspaces/project/node_modules/pkg1/package.json: + {} +/home/src/workspaces/project/node_modules/pkg1/require.d.ts: *new* + {} +/home/src/workspaces/project/node_modules/pkg2/import.d.ts: + {} +/home/src/workspaces/project/node_modules/pkg2/package.json: + {} +/home/src/workspaces/project/node_modules/pkg3/package.json: + {} +/home/src/workspaces/project/randomFileForImport.ts: + {} +/home/src/workspaces/project/randomFileForTypeRef.ts: + {} +/home/src/workspaces/project/tsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/workspaces/project/node_modules: + {} +/home/src/workspaces/project/node_modules/@types: + {} + + +Program root files: [ + "/home/src/workspaces/project/fileWithImports.ts", + "/home/src/workspaces/project/fileWithTypeRefs.ts", + "/home/src/workspaces/project/main.ts", + "/home/src/workspaces/project/randomFileForImport.ts", + "/home/src/workspaces/project/randomFileForTypeRef.ts" +] +Program options: { + "traceResolution": true, + "watch": true, + "project": "/home/src/workspaces/project/tsconfig.json", + "explainFiles": true, + "extendedDiagnostics": true, + "configFilePath": "/home/src/workspaces/project/tsconfig.json" +} +Program structureReused: SafeModules +Program files:: +/home/src/tslibs/TS/Lib/lib.d.ts +/home/src/workspaces/project/node_modules/pkg0/import.d.ts +/home/src/workspaces/project/node_modules/pkg1/require.d.ts +/home/src/workspaces/project/fileWithImports.ts +/home/src/workspaces/project/node_modules/pkg2/import.d.ts +/home/src/workspaces/project/fileWithTypeRefs.ts +/home/src/workspaces/project/main.ts +/home/src/workspaces/project/randomFileForImport.ts +/home/src/workspaces/project/randomFileForTypeRef.ts +/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts + +Semantic diagnostics in builder refreshed for:: +/home/src/workspaces/project/node_modules/pkg1/require.d.ts +/home/src/workspaces/project/fileWithImports.ts + +Shape signatures in builder refreshed for:: +/home/src/workspaces/project/node_modules/pkg1/require.d.ts (used version) +/home/src/workspaces/project/filewithimports.ts (computed .d.ts) + +exitCode:: ExitStatus.undefined + +Change:: write file not resolved by typeRef + +Input:: +//// [/home/src/workspaces/project/node_modules/pkg3/require.d.ts] +export {}; +declare global { + interface RequireInterface3 {} +} + + + +Output:: +DirectoryWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg3/require.d.ts :: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Failed Lookup Locations +Scheduling invalidateFailedLookup +Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg3/require.d.ts :: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Failed Lookup Locations + + +Timeout callback:: count: 1 +5: timerToInvalidateFailedLookupResolutions *new* + +Before running Timeout callback:: count: 1 +5: timerToInvalidateFailedLookupResolutions + +Host is moving to new time +After running Timeout callback:: count: 1 +Output:: +Scheduling update + + + +Timeout callback:: count: 1 +6: timerToUpdateProgram *new* + +Before running Timeout callback:: count: 1 +6: timerToUpdateProgram + +Host is moving to new time +After running Timeout callback:: count: 0 +Output:: +Synchronizing program +[HH:MM:SS AM] File change detected. Starting incremental compilation... + +CreatingProgramWith:: + roots: ["/home/src/workspaces/project/fileWithImports.ts","/home/src/workspaces/project/fileWithTypeRefs.ts","/home/src/workspaces/project/main.ts","/home/src/workspaces/project/randomFileForImport.ts","/home/src/workspaces/project/randomFileForTypeRef.ts"] + options: {"traceResolution":true,"watch":true,"project":"/home/src/workspaces/project/tsconfig.json","explainFiles":true,"extendedDiagnostics":true,"configFilePath":"/home/src/workspaces/project/tsconfig.json"} +File '/home/src/workspaces/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/pkg1/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/@types/pkg4/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/@types/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/require.d.ts' with Package ID 'pkg1/require.d.ts@0.0.1'. +File '/home/src/workspaces/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/pkg1/package.json' exists according to earlier cached lookups. +Reusing resolution of type reference directive 'pkg2' from '/home/src/workspaces/project/fileWithTypeRefs.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +======== Resolving type reference directive 'pkg3', containing file '/home/src/workspaces/project/fileWithTypeRefs.ts', root directory '/home/src/workspaces/project/node_modules/@types,/home/src/workspaces/node_modules/@types,/home/src/node_modules/@types,/home/node_modules/@types,/node_modules/@types'. ======== +Resolving with primary search path '/home/src/workspaces/project/node_modules/@types, /home/src/workspaces/node_modules/@types, /home/src/node_modules/@types, /home/node_modules/@types, /node_modules/@types'. +Directory '/home/src/workspaces/node_modules/@types' does not exist, skipping all lookups in it. +Directory '/home/src/node_modules/@types' does not exist, skipping all lookups in it. +Directory '/home/node_modules/@types' does not exist, skipping all lookups in it. +Directory '/node_modules/@types' does not exist, skipping all lookups in it. +Looking up in 'node_modules' folder, initial location '/home/src/workspaces/project'. +Searching all ancestor node_modules directories for preferred extensions: Declaration. +Found 'package.json' at '/home/src/workspaces/project/node_modules/pkg3/package.json'. +Entering conditional exports. +Saw non-matching condition 'import'. +Matched 'exports' condition 'require'. +Using 'exports' subpath '.' with target './require.js'. +File name '/home/src/workspaces/project/node_modules/pkg3/require.js' has a '.js' extension - stripping it. +File '/home/src/workspaces/project/node_modules/pkg3/require.d.ts' exists - use it as a name resolution result. +'package.json' does not have a 'peerDependencies' field. +Resolved under condition 'require'. +Exiting conditional exports. +Resolving real path for '/home/src/workspaces/project/node_modules/pkg3/require.d.ts', result '/home/src/workspaces/project/node_modules/pkg3/require.d.ts'. +======== Type reference directive 'pkg3' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg3/require.d.ts' with Package ID 'pkg3/require.d.ts@0.0.1', primary: false. ======== +File '/home/src/workspaces/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/pkg3/package.json' exists according to earlier cached lookups. +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/pkg3/require.d.ts 250 undefined Source file +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. +Reusing resolution of type reference directive 'pkg2' from '/home/src/workspaces/project/randomFileForTypeRef.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Reusing resolution of type reference directive 'pkg4' from '/home/src/workspaces/project/__inferred type names__.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts'. +File '/home/src/workspaces/project/node_modules/@types/pkg4/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/@types/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +error TS2318: Cannot find global type 'ImportAttributes'. + +../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' +node_modules/pkg0/import.d.ts + Imported via "pkg0" from file 'fileWithImports.ts' with packageId 'pkg0/import.d.ts@0.0.1' + Imported via "pkg0" from file 'randomFileForImport.ts' with packageId 'pkg0/import.d.ts@0.0.1' +node_modules/pkg1/require.d.ts + Imported via "pkg1" from file 'fileWithImports.ts' with packageId 'pkg1/require.d.ts@0.0.1' +fileWithImports.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +node_modules/pkg2/import.d.ts + Type library referenced via 'pkg2' from file 'fileWithTypeRefs.ts' with packageId 'pkg2/import.d.ts@0.0.1' + Type library referenced via 'pkg2' from file 'randomFileForTypeRef.ts' with packageId 'pkg2/import.d.ts@0.0.1' +node_modules/pkg3/require.d.ts + Type library referenced via 'pkg3' from file 'fileWithTypeRefs.ts' with packageId 'pkg3/require.d.ts@0.0.1' +fileWithTypeRefs.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +main.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +randomFileForImport.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +randomFileForTypeRef.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +node_modules/@types/pkg4/index.d.ts + Entry point for implicit type library 'pkg4' +[HH:MM:SS AM] Found 1 error. Watching for file changes. + + + +//// [/home/src/workspaces/project/fileWithImports.js] file written with same contents +//// [/home/src/workspaces/project/fileWithTypeRefs.js] file written with same contents +//// [/home/src/workspaces/project/main.js] file written with same contents +//// [/home/src/workspaces/project/randomFileForImport.js] file written with same contents +//// [/home/src/workspaces/project/randomFileForTypeRef.js] file written with same contents + +PolledWatches:: +/home/src/workspaces/node_modules: + {"pollingInterval":500} +/home/src/workspaces/node_modules/@types: + {"pollingInterval":500} +/home/src/workspaces/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/@types/pkg4/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/home/src/workspaces: + {} +/home/src/workspaces/project: + {} +/home/src/workspaces/project/fileWithImports.ts: + {} +/home/src/workspaces/project/fileWithTypeRefs.ts: + {} +/home/src/workspaces/project/main.ts: + {} +/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts: + {} +/home/src/workspaces/project/node_modules/pkg0/import.d.ts: + {} +/home/src/workspaces/project/node_modules/pkg0/package.json: + {} +/home/src/workspaces/project/node_modules/pkg1/package.json: + {} +/home/src/workspaces/project/node_modules/pkg1/require.d.ts: + {} +/home/src/workspaces/project/node_modules/pkg2/import.d.ts: + {} +/home/src/workspaces/project/node_modules/pkg2/package.json: + {} +/home/src/workspaces/project/node_modules/pkg3/package.json: + {} +/home/src/workspaces/project/node_modules/pkg3/require.d.ts: *new* + {} +/home/src/workspaces/project/randomFileForImport.ts: + {} +/home/src/workspaces/project/randomFileForTypeRef.ts: + {} +/home/src/workspaces/project/tsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/workspaces/project/node_modules: + {} +/home/src/workspaces/project/node_modules/@types: + {} + + +Program root files: [ + "/home/src/workspaces/project/fileWithImports.ts", + "/home/src/workspaces/project/fileWithTypeRefs.ts", + "/home/src/workspaces/project/main.ts", + "/home/src/workspaces/project/randomFileForImport.ts", + "/home/src/workspaces/project/randomFileForTypeRef.ts" +] +Program options: { + "traceResolution": true, + "watch": true, + "project": "/home/src/workspaces/project/tsconfig.json", + "explainFiles": true, + "extendedDiagnostics": true, + "configFilePath": "/home/src/workspaces/project/tsconfig.json" +} +Program structureReused: SafeModules +Program files:: +/home/src/tslibs/TS/Lib/lib.d.ts +/home/src/workspaces/project/node_modules/pkg0/import.d.ts +/home/src/workspaces/project/node_modules/pkg1/require.d.ts +/home/src/workspaces/project/fileWithImports.ts +/home/src/workspaces/project/node_modules/pkg2/import.d.ts +/home/src/workspaces/project/node_modules/pkg3/require.d.ts +/home/src/workspaces/project/fileWithTypeRefs.ts +/home/src/workspaces/project/main.ts +/home/src/workspaces/project/randomFileForImport.ts +/home/src/workspaces/project/randomFileForTypeRef.ts +/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts + +Semantic diagnostics in builder refreshed for:: +/home/src/tslibs/TS/Lib/lib.d.ts +/home/src/workspaces/project/node_modules/pkg0/import.d.ts +/home/src/workspaces/project/node_modules/pkg1/require.d.ts +/home/src/workspaces/project/fileWithImports.ts +/home/src/workspaces/project/node_modules/pkg2/import.d.ts +/home/src/workspaces/project/node_modules/pkg3/require.d.ts +/home/src/workspaces/project/fileWithTypeRefs.ts +/home/src/workspaces/project/main.ts +/home/src/workspaces/project/randomFileForImport.ts +/home/src/workspaces/project/randomFileForTypeRef.ts +/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts + +Shape signatures in builder refreshed for:: +/home/src/workspaces/project/node_modules/pkg3/require.d.ts (used version) +/home/src/workspaces/project/node_modules/pkg0/import.d.ts (used version) +/home/src/workspaces/project/node_modules/pkg1/require.d.ts (used version) +/home/src/workspaces/project/filewithimports.ts (computed .d.ts) +/home/src/workspaces/project/node_modules/pkg2/import.d.ts (used version) +/home/src/workspaces/project/filewithtyperefs.ts (computed .d.ts) +/home/src/workspaces/project/main.ts (computed .d.ts) +/home/src/workspaces/project/randomfileforimport.ts (computed .d.ts) +/home/src/workspaces/project/randomfilefortyperef.ts (computed .d.ts) +/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts (used version) + +exitCode:: ExitStatus.undefined + +Change:: modify package.json and that should re-resolve + +Input:: +//// [/home/src/workspaces/project/node_modules/pkg1/package.json] +{ + "name": "pkg1", + "version": "0.0.1", + "exports": { + "import": "./import.js", + "require": "./require1.js" + } +} + + +Output:: +FileWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg1/package.json 1:: WatchInfo: /home/src/workspaces/project/node_modules/pkg1/package.json 2000 undefined File location affecting resolution +Scheduling invalidateFailedLookup +Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg1/package.json 1:: WatchInfo: /home/src/workspaces/project/node_modules/pkg1/package.json 2000 undefined File location affecting resolution + + +Timeout callback:: count: 1 +7: timerToInvalidateFailedLookupResolutions *new* + +Before running Timeout callback:: count: 1 +7: timerToInvalidateFailedLookupResolutions + +Host is moving to new time +After running Timeout callback:: count: 1 +Output:: +Scheduling update + + + +Timeout callback:: count: 1 +8: timerToUpdateProgram *new* + +Before running Timeout callback:: count: 1 +8: timerToUpdateProgram + +Host is moving to new time +After running Timeout callback:: count: 0 +Output:: +Synchronizing program +[HH:MM:SS AM] File change detected. Starting incremental compilation... + +CreatingProgramWith:: + roots: ["/home/src/workspaces/project/fileWithImports.ts","/home/src/workspaces/project/fileWithTypeRefs.ts","/home/src/workspaces/project/main.ts","/home/src/workspaces/project/randomFileForImport.ts","/home/src/workspaces/project/randomFileForTypeRef.ts"] + options: {"traceResolution":true,"watch":true,"project":"/home/src/workspaces/project/tsconfig.json","explainFiles":true,"extendedDiagnostics":true,"configFilePath":"/home/src/workspaces/project/tsconfig.json"} +File '/home/src/workspaces/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. +Found 'package.json' at '/home/src/workspaces/project/node_modules/pkg1/package.json'. +File '/home/src/workspaces/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/pkg3/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/@types/pkg4/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/@types/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. +======== Resolving module 'pkg1' from '/home/src/workspaces/project/fileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +File '/home/src/workspaces/project/node_modules/pkg1/package.json' exists according to earlier cached lookups. +Entering conditional exports. +Saw non-matching condition 'import'. +Matched 'exports' condition 'require'. +Using 'exports' subpath '.' with target './require1.js'. +File name '/home/src/workspaces/project/node_modules/pkg1/require1.js' has a '.js' extension - stripping it. +File '/home/src/workspaces/project/node_modules/pkg1/require1.ts' does not exist. +File '/home/src/workspaces/project/node_modules/pkg1/require1.tsx' does not exist. +File '/home/src/workspaces/project/node_modules/pkg1/require1.d.ts' does not exist. +Failed to resolve under condition 'require'. +Exiting conditional exports. +File '/home/src/workspaces/project/node_modules/@types/pkg1.d.ts' does not exist. +Directory '/home/src/workspaces/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/node_modules' does not exist, skipping all lookups in it. +Directory '/home/node_modules' does not exist, skipping all lookups in it. +Directory '/node_modules' does not exist, skipping all lookups in it. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +Loading module 'pkg1' from 'node_modules' folder, target file types: JavaScript. +Searching all ancestor node_modules directories for fallback extensions: JavaScript. +File '/home/src/workspaces/project/node_modules/pkg1/package.json' exists according to earlier cached lookups. +Entering conditional exports. +Saw non-matching condition 'import'. +Matched 'exports' condition 'require'. +Using 'exports' subpath '.' with target './require1.js'. +File name '/home/src/workspaces/project/node_modules/pkg1/require1.js' has a '.js' extension - stripping it. +File '/home/src/workspaces/project/node_modules/pkg1/require1.js' does not exist. +File '/home/src/workspaces/project/node_modules/pkg1/require1.jsx' does not exist. +Failed to resolve under condition 'require'. +Exiting conditional exports. +Directory '/home/src/workspaces/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/node_modules' does not exist, skipping all lookups in it. +Directory '/home/node_modules' does not exist, skipping all lookups in it. +Directory '/node_modules' does not exist, skipping all lookups in it. +Resolution of non-relative name failed; trying with '--moduleResolution bundler' to see if project may need configuration update. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +File '/home/src/workspaces/project/node_modules/pkg1/package.json' exists according to earlier cached lookups. +Entering conditional exports. +Matched 'exports' condition 'import'. +Using 'exports' subpath '.' with target './import.js'. +File name '/home/src/workspaces/project/node_modules/pkg1/import.js' has a '.js' extension - stripping it. +File '/home/src/workspaces/project/node_modules/pkg1/import.ts' does not exist. +File '/home/src/workspaces/project/node_modules/pkg1/import.tsx' does not exist. +File '/home/src/workspaces/project/node_modules/pkg1/import.d.ts' exists - use it as a name resolution result. +'package.json' does not have a 'peerDependencies' field. +Resolved under condition 'import'. +Exiting conditional exports. +======== Module name 'pkg1' was not resolved. ======== +File '/home/src/workspaces/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. +Reusing resolution of type reference directive 'pkg2' from '/home/src/workspaces/project/fileWithTypeRefs.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Reusing resolution of type reference directive 'pkg3' from '/home/src/workspaces/project/fileWithTypeRefs.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg3/require.d.ts' with Package ID 'pkg3/require.d.ts@0.0.1'. +File '/home/src/workspaces/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/pkg3/package.json' exists according to earlier cached lookups. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. +Reusing resolution of type reference directive 'pkg2' from '/home/src/workspaces/project/randomFileForTypeRef.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Reusing resolution of type reference directive 'pkg4' from '/home/src/workspaces/project/__inferred type names__.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts'. +File '/home/src/workspaces/project/node_modules/@types/pkg4/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/@types/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +FileWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/pkg1/require.d.ts 250 undefined Source file +error TS2318: Cannot find global type 'ImportAttributes'. + +fileWithImports.ts:2:40 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + There are types at '/home/src/workspaces/project/node_modules/pkg1/import.d.ts', but this result could not be resolved under your current 'moduleResolution' setting. Consider updating to 'node16', 'nodenext', or 'bundler'. + +2 import type { RequireInterface1 } from "pkg1" assert { "resolution-mode": "require" }; +   ~~~~~~ + +../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' +node_modules/pkg0/import.d.ts + Imported via "pkg0" from file 'fileWithImports.ts' with packageId 'pkg0/import.d.ts@0.0.1' + Imported via "pkg0" from file 'randomFileForImport.ts' with packageId 'pkg0/import.d.ts@0.0.1' +fileWithImports.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +node_modules/pkg2/import.d.ts + Type library referenced via 'pkg2' from file 'fileWithTypeRefs.ts' with packageId 'pkg2/import.d.ts@0.0.1' + Type library referenced via 'pkg2' from file 'randomFileForTypeRef.ts' with packageId 'pkg2/import.d.ts@0.0.1' +node_modules/pkg3/require.d.ts + Type library referenced via 'pkg3' from file 'fileWithTypeRefs.ts' with packageId 'pkg3/require.d.ts@0.0.1' +fileWithTypeRefs.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +main.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +randomFileForImport.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +randomFileForTypeRef.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +node_modules/@types/pkg4/index.d.ts + Entry point for implicit type library 'pkg4' +[HH:MM:SS AM] Found 2 errors. Watching for file changes. + + + +//// [/home/src/workspaces/project/fileWithImports.js] file written with same contents + +PolledWatches:: +/home/src/workspaces/node_modules: + {"pollingInterval":500} +/home/src/workspaces/node_modules/@types: + {"pollingInterval":500} +/home/src/workspaces/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/@types/pkg4/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/home/src/workspaces: + {} +/home/src/workspaces/project: + {} +/home/src/workspaces/project/fileWithImports.ts: + {} +/home/src/workspaces/project/fileWithTypeRefs.ts: + {} +/home/src/workspaces/project/main.ts: + {} +/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts: + {} +/home/src/workspaces/project/node_modules/pkg0/import.d.ts: + {} +/home/src/workspaces/project/node_modules/pkg0/package.json: + {} +/home/src/workspaces/project/node_modules/pkg1/package.json: + {} +/home/src/workspaces/project/node_modules/pkg2/import.d.ts: + {} +/home/src/workspaces/project/node_modules/pkg2/package.json: + {} +/home/src/workspaces/project/node_modules/pkg3/package.json: + {} +/home/src/workspaces/project/node_modules/pkg3/require.d.ts: + {} +/home/src/workspaces/project/randomFileForImport.ts: + {} +/home/src/workspaces/project/randomFileForTypeRef.ts: + {} +/home/src/workspaces/project/tsconfig.json: + {} + +FsWatches *deleted*:: +/home/src/workspaces/project/node_modules/pkg1/require.d.ts: + {} + +FsWatchesRecursive:: +/home/src/workspaces/project/node_modules: + {} +/home/src/workspaces/project/node_modules/@types: + {} + + +Program root files: [ + "/home/src/workspaces/project/fileWithImports.ts", + "/home/src/workspaces/project/fileWithTypeRefs.ts", + "/home/src/workspaces/project/main.ts", + "/home/src/workspaces/project/randomFileForImport.ts", + "/home/src/workspaces/project/randomFileForTypeRef.ts" +] +Program options: { + "traceResolution": true, + "watch": true, + "project": "/home/src/workspaces/project/tsconfig.json", + "explainFiles": true, + "extendedDiagnostics": true, + "configFilePath": "/home/src/workspaces/project/tsconfig.json" +} +Program structureReused: SafeModules +Program files:: +/home/src/tslibs/TS/Lib/lib.d.ts +/home/src/workspaces/project/node_modules/pkg0/import.d.ts +/home/src/workspaces/project/fileWithImports.ts +/home/src/workspaces/project/node_modules/pkg2/import.d.ts +/home/src/workspaces/project/node_modules/pkg3/require.d.ts +/home/src/workspaces/project/fileWithTypeRefs.ts +/home/src/workspaces/project/main.ts +/home/src/workspaces/project/randomFileForImport.ts +/home/src/workspaces/project/randomFileForTypeRef.ts +/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts + +Semantic diagnostics in builder refreshed for:: +/home/src/workspaces/project/fileWithImports.ts + +Shape signatures in builder refreshed for:: +/home/src/workspaces/project/filewithimports.ts (computed .d.ts) + +exitCode:: ExitStatus.undefined + +Change:: write file not resolved by import + +Input:: +//// [/home/src/workspaces/project/node_modules/pkg1/require1.d.ts] +export interface RequireInterface1 {} + + +Output:: +DirectoryWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg1/require1.d.ts :: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Failed Lookup Locations +Scheduling invalidateFailedLookup +Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg1/require1.d.ts :: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Failed Lookup Locations + + +Timeout callback:: count: 1 +9: timerToInvalidateFailedLookupResolutions *new* + +Before running Timeout callback:: count: 1 +9: timerToInvalidateFailedLookupResolutions + +Host is moving to new time +After running Timeout callback:: count: 1 +Output:: +Scheduling update + + + +Timeout callback:: count: 1 +10: timerToUpdateProgram *new* + +Before running Timeout callback:: count: 1 +10: timerToUpdateProgram + +Host is moving to new time +After running Timeout callback:: count: 0 +Output:: +Synchronizing program +[HH:MM:SS AM] File change detected. Starting incremental compilation... + +CreatingProgramWith:: + roots: ["/home/src/workspaces/project/fileWithImports.ts","/home/src/workspaces/project/fileWithTypeRefs.ts","/home/src/workspaces/project/main.ts","/home/src/workspaces/project/randomFileForImport.ts","/home/src/workspaces/project/randomFileForTypeRef.ts"] + options: {"traceResolution":true,"watch":true,"project":"/home/src/workspaces/project/tsconfig.json","explainFiles":true,"extendedDiagnostics":true,"configFilePath":"/home/src/workspaces/project/tsconfig.json"} +File '/home/src/workspaces/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/pkg3/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/@types/pkg4/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/@types/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. +======== Resolving module 'pkg1' from '/home/src/workspaces/project/fileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Found 'package.json' at '/home/src/workspaces/project/node_modules/pkg1/package.json'. +Entering conditional exports. +Saw non-matching condition 'import'. +Matched 'exports' condition 'require'. +Using 'exports' subpath '.' with target './require1.js'. +File name '/home/src/workspaces/project/node_modules/pkg1/require1.js' has a '.js' extension - stripping it. +File '/home/src/workspaces/project/node_modules/pkg1/require1.ts' does not exist. +File '/home/src/workspaces/project/node_modules/pkg1/require1.tsx' does not exist. +File '/home/src/workspaces/project/node_modules/pkg1/require1.d.ts' exists - use it as a name resolution result. +'package.json' does not have a 'peerDependencies' field. +Resolved under condition 'require'. +Exiting conditional exports. +Resolving real path for '/home/src/workspaces/project/node_modules/pkg1/require1.d.ts', result '/home/src/workspaces/project/node_modules/pkg1/require1.d.ts'. +======== Module name 'pkg1' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/require1.d.ts' with Package ID 'pkg1/require1.d.ts@0.0.1'. ======== +File '/home/src/workspaces/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/pkg1/package.json' exists according to earlier cached lookups. +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/pkg1/require1.d.ts 250 undefined Source file +Reusing resolution of type reference directive 'pkg2' from '/home/src/workspaces/project/fileWithTypeRefs.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Reusing resolution of type reference directive 'pkg3' from '/home/src/workspaces/project/fileWithTypeRefs.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg3/require.d.ts' with Package ID 'pkg3/require.d.ts@0.0.1'. +File '/home/src/workspaces/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/pkg3/package.json' exists according to earlier cached lookups. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. +Reusing resolution of type reference directive 'pkg2' from '/home/src/workspaces/project/randomFileForTypeRef.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Reusing resolution of type reference directive 'pkg4' from '/home/src/workspaces/project/__inferred type names__.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts'. +File '/home/src/workspaces/project/node_modules/@types/pkg4/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/@types/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +error TS2318: Cannot find global type 'ImportAttributes'. + +../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' +node_modules/pkg0/import.d.ts + Imported via "pkg0" from file 'fileWithImports.ts' with packageId 'pkg0/import.d.ts@0.0.1' + Imported via "pkg0" from file 'randomFileForImport.ts' with packageId 'pkg0/import.d.ts@0.0.1' +node_modules/pkg1/require1.d.ts + Imported via "pkg1" from file 'fileWithImports.ts' with packageId 'pkg1/require1.d.ts@0.0.1' +fileWithImports.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +node_modules/pkg2/import.d.ts + Type library referenced via 'pkg2' from file 'fileWithTypeRefs.ts' with packageId 'pkg2/import.d.ts@0.0.1' + Type library referenced via 'pkg2' from file 'randomFileForTypeRef.ts' with packageId 'pkg2/import.d.ts@0.0.1' +node_modules/pkg3/require.d.ts + Type library referenced via 'pkg3' from file 'fileWithTypeRefs.ts' with packageId 'pkg3/require.d.ts@0.0.1' +fileWithTypeRefs.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +main.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +randomFileForImport.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +randomFileForTypeRef.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +node_modules/@types/pkg4/index.d.ts + Entry point for implicit type library 'pkg4' +[HH:MM:SS AM] Found 1 error. Watching for file changes. + + + +//// [/home/src/workspaces/project/fileWithImports.js] file written with same contents + +PolledWatches:: +/home/src/workspaces/node_modules: + {"pollingInterval":500} +/home/src/workspaces/node_modules/@types: + {"pollingInterval":500} +/home/src/workspaces/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/@types/pkg4/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/home/src/workspaces: + {} +/home/src/workspaces/project: + {} +/home/src/workspaces/project/fileWithImports.ts: + {} +/home/src/workspaces/project/fileWithTypeRefs.ts: + {} +/home/src/workspaces/project/main.ts: + {} +/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts: + {} +/home/src/workspaces/project/node_modules/pkg0/import.d.ts: + {} +/home/src/workspaces/project/node_modules/pkg0/package.json: + {} +/home/src/workspaces/project/node_modules/pkg1/package.json: + {} +/home/src/workspaces/project/node_modules/pkg1/require1.d.ts: *new* + {} +/home/src/workspaces/project/node_modules/pkg2/import.d.ts: + {} +/home/src/workspaces/project/node_modules/pkg2/package.json: + {} +/home/src/workspaces/project/node_modules/pkg3/package.json: + {} +/home/src/workspaces/project/node_modules/pkg3/require.d.ts: + {} +/home/src/workspaces/project/randomFileForImport.ts: + {} +/home/src/workspaces/project/randomFileForTypeRef.ts: + {} +/home/src/workspaces/project/tsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/workspaces/project/node_modules: + {} +/home/src/workspaces/project/node_modules/@types: + {} + + +Program root files: [ + "/home/src/workspaces/project/fileWithImports.ts", + "/home/src/workspaces/project/fileWithTypeRefs.ts", + "/home/src/workspaces/project/main.ts", + "/home/src/workspaces/project/randomFileForImport.ts", + "/home/src/workspaces/project/randomFileForTypeRef.ts" +] +Program options: { + "traceResolution": true, + "watch": true, + "project": "/home/src/workspaces/project/tsconfig.json", + "explainFiles": true, + "extendedDiagnostics": true, + "configFilePath": "/home/src/workspaces/project/tsconfig.json" +} +Program structureReused: SafeModules +Program files:: +/home/src/tslibs/TS/Lib/lib.d.ts +/home/src/workspaces/project/node_modules/pkg0/import.d.ts +/home/src/workspaces/project/node_modules/pkg1/require1.d.ts +/home/src/workspaces/project/fileWithImports.ts +/home/src/workspaces/project/node_modules/pkg2/import.d.ts +/home/src/workspaces/project/node_modules/pkg3/require.d.ts +/home/src/workspaces/project/fileWithTypeRefs.ts +/home/src/workspaces/project/main.ts +/home/src/workspaces/project/randomFileForImport.ts +/home/src/workspaces/project/randomFileForTypeRef.ts +/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts + +Semantic diagnostics in builder refreshed for:: +/home/src/workspaces/project/node_modules/pkg1/require1.d.ts +/home/src/workspaces/project/fileWithImports.ts + +Shape signatures in builder refreshed for:: +/home/src/workspaces/project/node_modules/pkg1/require1.d.ts (used version) +/home/src/workspaces/project/filewithimports.ts (computed .d.ts) + +exitCode:: ExitStatus.undefined + +Change:: delete file with imports + +Input:: +//// [/home/src/workspaces/project/fileWithImports.ts] deleted + +Output:: +FileWatcher:: Triggered with /home/src/workspaces/project/fileWithImports.ts 2:: WatchInfo: /home/src/workspaces/project/fileWithImports.ts 250 undefined Source file +Scheduling update +Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/fileWithImports.ts 2:: WatchInfo: /home/src/workspaces/project/fileWithImports.ts 250 undefined Source file +DirectoryWatcher:: Triggered with /home/src/workspaces/project/fileWithImports.ts :: WatchInfo: /home/src/workspaces/project 0 undefined Failed Lookup Locations +Scheduling invalidateFailedLookup +Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/fileWithImports.ts :: WatchInfo: /home/src/workspaces/project 0 undefined Failed Lookup Locations +DirectoryWatcher:: Triggered with /home/src/workspaces/project/fileWithImports.ts :: WatchInfo: /home/src/workspaces/project 0 undefined Wild card directory +Scheduling update +Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/fileWithImports.ts :: WatchInfo: /home/src/workspaces/project 0 undefined Wild card directory + + +Timeout callback:: count: 2 +12: timerToInvalidateFailedLookupResolutions *new* +13: timerToUpdateProgram *new* + +Before running Timeout callback:: count: 2 +12: timerToInvalidateFailedLookupResolutions +13: timerToUpdateProgram + +Host is moving to new time +After running Timeout callback:: count: 0 +Output:: +Reloading new file names and options +Synchronizing program +[HH:MM:SS AM] File change detected. Starting incremental compilation... + +CreatingProgramWith:: + roots: ["/home/src/workspaces/project/fileWithTypeRefs.ts","/home/src/workspaces/project/main.ts","/home/src/workspaces/project/randomFileForImport.ts","/home/src/workspaces/project/randomFileForTypeRef.ts"] + options: {"traceResolution":true,"watch":true,"project":"/home/src/workspaces/project/tsconfig.json","explainFiles":true,"extendedDiagnostics":true,"configFilePath":"/home/src/workspaces/project/tsconfig.json"} +Reusing resolution of type reference directive 'pkg2' from '/home/src/workspaces/project/fileWithTypeRefs.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Reusing resolution of type reference directive 'pkg3' from '/home/src/workspaces/project/fileWithTypeRefs.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg3/require.d.ts' with Package ID 'pkg3/require.d.ts@0.0.1'. +File '/home/src/workspaces/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/pkg3/package.json' exists according to earlier cached lookups. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. +File '/home/src/workspaces/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. +Reusing resolution of type reference directive 'pkg2' from '/home/src/workspaces/project/randomFileForTypeRef.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Reusing resolution of type reference directive 'pkg4' from '/home/src/workspaces/project/__inferred type names__.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts'. +File '/home/src/workspaces/project/node_modules/@types/pkg4/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/@types/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +FileWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/pkg1/require1.d.ts 250 undefined Source file +FileWatcher:: Close:: WatchInfo: /home/src/workspaces/project/fileWithImports.ts 250 undefined Source file +FileWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/pkg1/package.json 2000 undefined File location affecting resolution +../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' +node_modules/pkg2/import.d.ts + Type library referenced via 'pkg2' from file 'fileWithTypeRefs.ts' with packageId 'pkg2/import.d.ts@0.0.1' + Type library referenced via 'pkg2' from file 'randomFileForTypeRef.ts' with packageId 'pkg2/import.d.ts@0.0.1' +node_modules/pkg3/require.d.ts + Type library referenced via 'pkg3' from file 'fileWithTypeRefs.ts' with packageId 'pkg3/require.d.ts@0.0.1' +fileWithTypeRefs.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +main.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +node_modules/pkg0/import.d.ts + Imported via "pkg0" from file 'randomFileForImport.ts' with packageId 'pkg0/import.d.ts@0.0.1' +randomFileForImport.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +randomFileForTypeRef.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +node_modules/@types/pkg4/index.d.ts + Entry point for implicit type library 'pkg4' +[HH:MM:SS AM] Found 0 errors. Watching for file changes. + + + + +PolledWatches:: +/home/src/workspaces/node_modules: + {"pollingInterval":500} +/home/src/workspaces/node_modules/@types: + {"pollingInterval":500} +/home/src/workspaces/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/@types/pkg4/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/home/src/workspaces: + {} +/home/src/workspaces/project: + {} +/home/src/workspaces/project/fileWithTypeRefs.ts: + {} +/home/src/workspaces/project/main.ts: + {} +/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts: + {} +/home/src/workspaces/project/node_modules/pkg0/import.d.ts: + {} +/home/src/workspaces/project/node_modules/pkg0/package.json: + {} +/home/src/workspaces/project/node_modules/pkg2/import.d.ts: + {} +/home/src/workspaces/project/node_modules/pkg2/package.json: + {} +/home/src/workspaces/project/node_modules/pkg3/package.json: + {} +/home/src/workspaces/project/node_modules/pkg3/require.d.ts: + {} +/home/src/workspaces/project/randomFileForImport.ts: + {} +/home/src/workspaces/project/randomFileForTypeRef.ts: + {} +/home/src/workspaces/project/tsconfig.json: + {} + +FsWatches *deleted*:: +/home/src/workspaces/project/fileWithImports.ts: + {} +/home/src/workspaces/project/node_modules/pkg1/package.json: + {} +/home/src/workspaces/project/node_modules/pkg1/require1.d.ts: + {} + +FsWatchesRecursive:: +/home/src/workspaces/project/node_modules: + {} +/home/src/workspaces/project/node_modules/@types: + {} + + +Program root files: [ + "/home/src/workspaces/project/fileWithTypeRefs.ts", + "/home/src/workspaces/project/main.ts", + "/home/src/workspaces/project/randomFileForImport.ts", + "/home/src/workspaces/project/randomFileForTypeRef.ts" +] +Program options: { + "traceResolution": true, + "watch": true, + "project": "/home/src/workspaces/project/tsconfig.json", + "explainFiles": true, + "extendedDiagnostics": true, + "configFilePath": "/home/src/workspaces/project/tsconfig.json" +} +Program structureReused: Not +Program files:: +/home/src/tslibs/TS/Lib/lib.d.ts +/home/src/workspaces/project/node_modules/pkg2/import.d.ts +/home/src/workspaces/project/node_modules/pkg3/require.d.ts +/home/src/workspaces/project/fileWithTypeRefs.ts +/home/src/workspaces/project/main.ts +/home/src/workspaces/project/node_modules/pkg0/import.d.ts +/home/src/workspaces/project/randomFileForImport.ts +/home/src/workspaces/project/randomFileForTypeRef.ts +/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts + +Semantic diagnostics in builder refreshed for:: + +No shapes updated in the builder:: + +exitCode:: ExitStatus.undefined + +Change:: delete file with typeRefs + +Input:: +//// [/home/src/workspaces/project/fileWithTypeRefs.ts] deleted + +Output:: +FileWatcher:: Triggered with /home/src/workspaces/project/fileWithTypeRefs.ts 2:: WatchInfo: /home/src/workspaces/project/fileWithTypeRefs.ts 250 undefined Source file +Scheduling update +Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/fileWithTypeRefs.ts 2:: WatchInfo: /home/src/workspaces/project/fileWithTypeRefs.ts 250 undefined Source file +DirectoryWatcher:: Triggered with /home/src/workspaces/project/fileWithTypeRefs.ts :: WatchInfo: /home/src/workspaces/project 0 undefined Failed Lookup Locations +Scheduling invalidateFailedLookup +Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/fileWithTypeRefs.ts :: WatchInfo: /home/src/workspaces/project 0 undefined Failed Lookup Locations +DirectoryWatcher:: Triggered with /home/src/workspaces/project/fileWithTypeRefs.ts :: WatchInfo: /home/src/workspaces/project 0 undefined Wild card directory +Scheduling update +Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/fileWithTypeRefs.ts :: WatchInfo: /home/src/workspaces/project 0 undefined Wild card directory + + +Timeout callback:: count: 2 +15: timerToInvalidateFailedLookupResolutions *new* +16: timerToUpdateProgram *new* + +Before running Timeout callback:: count: 2 +15: timerToInvalidateFailedLookupResolutions +16: timerToUpdateProgram + +Host is moving to new time +After running Timeout callback:: count: 0 +Output:: +Reloading new file names and options +Synchronizing program +[HH:MM:SS AM] File change detected. Starting incremental compilation... + +CreatingProgramWith:: + roots: ["/home/src/workspaces/project/main.ts","/home/src/workspaces/project/randomFileForImport.ts","/home/src/workspaces/project/randomFileForTypeRef.ts"] + options: {"traceResolution":true,"watch":true,"project":"/home/src/workspaces/project/tsconfig.json","explainFiles":true,"extendedDiagnostics":true,"configFilePath":"/home/src/workspaces/project/tsconfig.json"} +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. +File '/home/src/workspaces/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. +Reusing resolution of type reference directive 'pkg2' from '/home/src/workspaces/project/randomFileForTypeRef.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +File '/home/src/workspaces/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. +Reusing resolution of type reference directive 'pkg4' from '/home/src/workspaces/project/__inferred type names__.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts'. +File '/home/src/workspaces/project/node_modules/@types/pkg4/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/@types/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +FileWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/pkg3/require.d.ts 250 undefined Source file +FileWatcher:: Close:: WatchInfo: /home/src/workspaces/project/fileWithTypeRefs.ts 250 undefined Source file +FileWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/pkg3/package.json 2000 undefined File location affecting resolution +error TS2318: Cannot find global type 'ImportAttributes'. + +../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' +main.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +node_modules/pkg0/import.d.ts + Imported via "pkg0" from file 'randomFileForImport.ts' with packageId 'pkg0/import.d.ts@0.0.1' +randomFileForImport.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +node_modules/pkg2/import.d.ts + Type library referenced via 'pkg2' from file 'randomFileForTypeRef.ts' with packageId 'pkg2/import.d.ts@0.0.1' +randomFileForTypeRef.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +node_modules/@types/pkg4/index.d.ts + Entry point for implicit type library 'pkg4' +[HH:MM:SS AM] Found 1 error. Watching for file changes. + + + +//// [/home/src/workspaces/project/main.js] file written with same contents +//// [/home/src/workspaces/project/randomFileForImport.js] file written with same contents +//// [/home/src/workspaces/project/randomFileForTypeRef.js] file written with same contents + +PolledWatches:: +/home/src/workspaces/node_modules: + {"pollingInterval":500} +/home/src/workspaces/node_modules/@types: + {"pollingInterval":500} +/home/src/workspaces/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/@types/pkg4/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/home/src/workspaces: + {} +/home/src/workspaces/project: + {} +/home/src/workspaces/project/main.ts: + {} +/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts: + {} +/home/src/workspaces/project/node_modules/pkg0/import.d.ts: + {} +/home/src/workspaces/project/node_modules/pkg0/package.json: + {} +/home/src/workspaces/project/node_modules/pkg2/import.d.ts: + {} +/home/src/workspaces/project/node_modules/pkg2/package.json: + {} +/home/src/workspaces/project/randomFileForImport.ts: + {} +/home/src/workspaces/project/randomFileForTypeRef.ts: + {} +/home/src/workspaces/project/tsconfig.json: + {} + +FsWatches *deleted*:: +/home/src/workspaces/project/fileWithTypeRefs.ts: + {} +/home/src/workspaces/project/node_modules/pkg3/package.json: + {} +/home/src/workspaces/project/node_modules/pkg3/require.d.ts: + {} + +FsWatchesRecursive:: +/home/src/workspaces/project/node_modules: + {} +/home/src/workspaces/project/node_modules/@types: + {} + + +Program root files: [ + "/home/src/workspaces/project/main.ts", + "/home/src/workspaces/project/randomFileForImport.ts", + "/home/src/workspaces/project/randomFileForTypeRef.ts" +] +Program options: { + "traceResolution": true, + "watch": true, + "project": "/home/src/workspaces/project/tsconfig.json", + "explainFiles": true, + "extendedDiagnostics": true, + "configFilePath": "/home/src/workspaces/project/tsconfig.json" +} +Program structureReused: Not +Program files:: +/home/src/tslibs/TS/Lib/lib.d.ts +/home/src/workspaces/project/main.ts +/home/src/workspaces/project/node_modules/pkg0/import.d.ts +/home/src/workspaces/project/randomFileForImport.ts +/home/src/workspaces/project/node_modules/pkg2/import.d.ts +/home/src/workspaces/project/randomFileForTypeRef.ts +/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts + +Semantic diagnostics in builder refreshed for:: +/home/src/workspaces/project/main.ts +/home/src/workspaces/project/node_modules/pkg0/import.d.ts +/home/src/workspaces/project/randomFileForImport.ts +/home/src/workspaces/project/node_modules/pkg2/import.d.ts +/home/src/workspaces/project/randomFileForTypeRef.ts +/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts + +Shape signatures in builder refreshed for:: +/home/src/workspaces/project/main.ts (computed .d.ts) +/home/src/workspaces/project/node_modules/pkg0/import.d.ts (used version) +/home/src/workspaces/project/randomfileforimport.ts (computed .d.ts) +/home/src/workspaces/project/node_modules/pkg2/import.d.ts (used version) +/home/src/workspaces/project/randomfilefortyperef.ts (computed .d.ts) +/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts (used version) + +exitCode:: ExitStatus.undefined + +Change:: delete resolved import file + +Input:: +//// [/home/src/workspaces/project/node_modules/pkg0/import.d.ts] deleted + +Output:: +FileWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg0/import.d.ts 2:: WatchInfo: /home/src/workspaces/project/node_modules/pkg0/import.d.ts 250 undefined Source file +Scheduling update +Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg0/import.d.ts 2:: WatchInfo: /home/src/workspaces/project/node_modules/pkg0/import.d.ts 250 undefined Source file +DirectoryWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg0/import.d.ts :: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Failed Lookup Locations +Scheduling invalidateFailedLookup +Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg0/import.d.ts :: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Failed Lookup Locations + + +Timeout callback:: count: 2 +17: timerToUpdateProgram *new* +18: timerToInvalidateFailedLookupResolutions *new* + +Before running Timeout callback:: count: 2 +17: timerToUpdateProgram +18: timerToInvalidateFailedLookupResolutions + +Host is moving to new time +After running Timeout callback:: count: 0 +Output:: +Synchronizing program +[HH:MM:SS AM] File change detected. Starting incremental compilation... + +CreatingProgramWith:: + roots: ["/home/src/workspaces/project/main.ts","/home/src/workspaces/project/randomFileForImport.ts","/home/src/workspaces/project/randomFileForTypeRef.ts"] + options: {"traceResolution":true,"watch":true,"project":"/home/src/workspaces/project/tsconfig.json","explainFiles":true,"extendedDiagnostics":true,"configFilePath":"/home/src/workspaces/project/tsconfig.json"} +Found 'package.json' at '/home/src/workspaces/project/node_modules/pkg0/package.json'. +FileWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/pkg0/import.d.ts 250 undefined Source file +======== Resolving module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +File '/home/src/workspaces/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. +Entering conditional exports. +Matched 'exports' condition 'import'. +Using 'exports' subpath '.' with target './import.js'. +File name '/home/src/workspaces/project/node_modules/pkg0/import.js' has a '.js' extension - stripping it. +File '/home/src/workspaces/project/node_modules/pkg0/import.ts' does not exist. +File '/home/src/workspaces/project/node_modules/pkg0/import.tsx' does not exist. +File '/home/src/workspaces/project/node_modules/pkg0/import.d.ts' does not exist. +Failed to resolve under condition 'import'. +Saw non-matching condition 'require'. +Exiting conditional exports. +File '/home/src/workspaces/project/node_modules/@types/pkg0.d.ts' does not exist. +Directory '/home/src/workspaces/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/node_modules' does not exist, skipping all lookups in it. +Directory '/home/node_modules' does not exist, skipping all lookups in it. +Directory '/node_modules' does not exist, skipping all lookups in it. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +Loading module 'pkg0' from 'node_modules' folder, target file types: JavaScript. +Searching all ancestor node_modules directories for fallback extensions: JavaScript. +File '/home/src/workspaces/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. +Entering conditional exports. +Matched 'exports' condition 'import'. +Using 'exports' subpath '.' with target './import.js'. +File name '/home/src/workspaces/project/node_modules/pkg0/import.js' has a '.js' extension - stripping it. +File '/home/src/workspaces/project/node_modules/pkg0/import.js' does not exist. +File '/home/src/workspaces/project/node_modules/pkg0/import.jsx' does not exist. +Failed to resolve under condition 'import'. +Saw non-matching condition 'require'. +Exiting conditional exports. +Directory '/home/src/workspaces/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/node_modules' does not exist, skipping all lookups in it. +Directory '/home/node_modules' does not exist, skipping all lookups in it. +Directory '/node_modules' does not exist, skipping all lookups in it. +Resolution of non-relative name failed; trying with '--moduleResolution bundler' to see if project may need configuration update. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +File '/home/src/workspaces/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. +Entering conditional exports. +Matched 'exports' condition 'import'. +Using 'exports' subpath '.' with target './import.js'. +File name '/home/src/workspaces/project/node_modules/pkg0/import.js' has a '.js' extension - stripping it. +File '/home/src/workspaces/project/node_modules/pkg0/import.ts' does not exist. +File '/home/src/workspaces/project/node_modules/pkg0/import.tsx' does not exist. +File '/home/src/workspaces/project/node_modules/pkg0/import.d.ts' does not exist. +Failed to resolve under condition 'import'. +Saw non-matching condition 'require'. +Exiting conditional exports. +File '/home/src/workspaces/project/node_modules/@types/pkg0.d.ts' does not exist. +Directory '/home/src/workspaces/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/node_modules' does not exist, skipping all lookups in it. +Directory '/home/node_modules' does not exist, skipping all lookups in it. +Directory '/node_modules' does not exist, skipping all lookups in it. +======== Module name 'pkg0' was not resolved. ======== +Reusing resolution of type reference directive 'pkg2' from '/home/src/workspaces/project/randomFileForTypeRef.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +File '/home/src/workspaces/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. +Reusing resolution of type reference directive 'pkg4' from '/home/src/workspaces/project/__inferred type names__.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts'. +File '/home/src/workspaces/project/node_modules/@types/pkg4/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/@types/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +error TS2318: Cannot find global type 'ImportAttributes'. + +randomFileForImport.ts:1:39 - error TS2307: Cannot find module 'pkg0' or its corresponding type declarations. + +1 import type { ImportInterface0 } from "pkg0" assert { "resolution-mode": "import" }; +   ~~~~~~ + +../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' +main.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +randomFileForImport.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +node_modules/pkg2/import.d.ts + Type library referenced via 'pkg2' from file 'randomFileForTypeRef.ts' with packageId 'pkg2/import.d.ts@0.0.1' +randomFileForTypeRef.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +node_modules/@types/pkg4/index.d.ts + Entry point for implicit type library 'pkg4' +[HH:MM:SS AM] Found 2 errors. Watching for file changes. + + + +//// [/home/src/workspaces/project/randomFileForImport.js] file written with same contents + +PolledWatches:: +/home/src/workspaces/node_modules: + {"pollingInterval":500} +/home/src/workspaces/node_modules/@types: + {"pollingInterval":500} +/home/src/workspaces/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/@types/pkg4/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/home/src/workspaces: + {} +/home/src/workspaces/project: + {} +/home/src/workspaces/project/main.ts: + {} +/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts: + {} +/home/src/workspaces/project/node_modules/pkg0/package.json: + {} +/home/src/workspaces/project/node_modules/pkg2/import.d.ts: + {} +/home/src/workspaces/project/node_modules/pkg2/package.json: + {} +/home/src/workspaces/project/randomFileForImport.ts: + {} +/home/src/workspaces/project/randomFileForTypeRef.ts: + {} +/home/src/workspaces/project/tsconfig.json: + {} + +FsWatches *deleted*:: +/home/src/workspaces/project/node_modules/pkg0/import.d.ts: + {} + +FsWatchesRecursive:: +/home/src/workspaces/project/node_modules: + {} +/home/src/workspaces/project/node_modules/@types: + {} + +Timeout callback:: count: 0 +18: timerToInvalidateFailedLookupResolutions *deleted* + + +Program root files: [ + "/home/src/workspaces/project/main.ts", + "/home/src/workspaces/project/randomFileForImport.ts", + "/home/src/workspaces/project/randomFileForTypeRef.ts" +] +Program options: { + "traceResolution": true, + "watch": true, + "project": "/home/src/workspaces/project/tsconfig.json", + "explainFiles": true, + "extendedDiagnostics": true, + "configFilePath": "/home/src/workspaces/project/tsconfig.json" +} +Program structureReused: Not +Program files:: +/home/src/tslibs/TS/Lib/lib.d.ts +/home/src/workspaces/project/main.ts +/home/src/workspaces/project/randomFileForImport.ts +/home/src/workspaces/project/node_modules/pkg2/import.d.ts +/home/src/workspaces/project/randomFileForTypeRef.ts +/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts + +Semantic diagnostics in builder refreshed for:: +/home/src/workspaces/project/randomFileForImport.ts + +Shape signatures in builder refreshed for:: +/home/src/workspaces/project/randomfileforimport.ts (computed .d.ts) + +exitCode:: ExitStatus.undefined + +Change:: delete resolved typeRef file + +Input:: +//// [/home/src/workspaces/project/node_modules/pkg2/import.d.ts] deleted + +Output:: +FileWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg2/import.d.ts 2:: WatchInfo: /home/src/workspaces/project/node_modules/pkg2/import.d.ts 250 undefined Source file +Scheduling update +Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg2/import.d.ts 2:: WatchInfo: /home/src/workspaces/project/node_modules/pkg2/import.d.ts 250 undefined Source file +DirectoryWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg2/import.d.ts :: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Failed Lookup Locations +Scheduling invalidateFailedLookup +Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg2/import.d.ts :: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Failed Lookup Locations + + +Timeout callback:: count: 2 +19: timerToUpdateProgram *new* +20: timerToInvalidateFailedLookupResolutions *new* + +Before running Timeout callback:: count: 2 +19: timerToUpdateProgram +20: timerToInvalidateFailedLookupResolutions + +Host is moving to new time +After running Timeout callback:: count: 0 +Output:: +Synchronizing program +[HH:MM:SS AM] File change detected. Starting incremental compilation... + +CreatingProgramWith:: + roots: ["/home/src/workspaces/project/main.ts","/home/src/workspaces/project/randomFileForImport.ts","/home/src/workspaces/project/randomFileForTypeRef.ts"] + options: {"traceResolution":true,"watch":true,"project":"/home/src/workspaces/project/tsconfig.json","explainFiles":true,"extendedDiagnostics":true,"configFilePath":"/home/src/workspaces/project/tsconfig.json"} +Found 'package.json' at '/home/src/workspaces/project/node_modules/pkg2/package.json'. +FileWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/pkg2/import.d.ts 250 undefined Source file +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was not resolved. +======== Resolving type reference directive 'pkg2', containing file '/home/src/workspaces/project/randomFileForTypeRef.ts', root directory '/home/src/workspaces/project/node_modules/@types,/home/src/workspaces/node_modules/@types,/home/src/node_modules/@types,/home/node_modules/@types,/node_modules/@types'. ======== +Resolving with primary search path '/home/src/workspaces/project/node_modules/@types, /home/src/workspaces/node_modules/@types, /home/src/node_modules/@types, /home/node_modules/@types, /node_modules/@types'. +Directory '/home/src/workspaces/node_modules/@types' does not exist, skipping all lookups in it. +Directory '/home/src/node_modules/@types' does not exist, skipping all lookups in it. +Directory '/home/node_modules/@types' does not exist, skipping all lookups in it. +Directory '/node_modules/@types' does not exist, skipping all lookups in it. +Looking up in 'node_modules' folder, initial location '/home/src/workspaces/project'. +Searching all ancestor node_modules directories for preferred extensions: Declaration. +File '/home/src/workspaces/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. +Entering conditional exports. +Matched 'exports' condition 'import'. +Using 'exports' subpath '.' with target './import.js'. +File name '/home/src/workspaces/project/node_modules/pkg2/import.js' has a '.js' extension - stripping it. +File '/home/src/workspaces/project/node_modules/pkg2/import.d.ts' does not exist. +Failed to resolve under condition 'import'. +Saw non-matching condition 'require'. +Exiting conditional exports. +File '/home/src/workspaces/project/node_modules/@types/pkg2.d.ts' does not exist. +Directory '/home/src/workspaces/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/node_modules' does not exist, skipping all lookups in it. +Directory '/home/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. ======== +Reusing resolution of type reference directive 'pkg4' from '/home/src/workspaces/project/__inferred type names__.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts'. +File '/home/src/workspaces/project/node_modules/@types/pkg4/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/@types/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +error TS2318: Cannot find global type 'ImportAttributes'. + +randomFileForImport.ts:1:39 - error TS2307: Cannot find module 'pkg0' or its corresponding type declarations. + +1 import type { ImportInterface0 } from "pkg0" assert { "resolution-mode": "import" }; +   ~~~~~~ + +randomFileForTypeRef.ts:1:23 - error TS2688: Cannot find type definition file for 'pkg2'. + +1 /// +   ~~~~ + +../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' +main.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +randomFileForImport.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +randomFileForTypeRef.ts + Matched by include pattern '*.ts' in 'tsconfig.json' +node_modules/@types/pkg4/index.d.ts + Entry point for implicit type library 'pkg4' +[HH:MM:SS AM] Found 3 errors. Watching for file changes. + + + +//// [/home/src/workspaces/project/main.js] file written with same contents +//// [/home/src/workspaces/project/randomFileForImport.js] file written with same contents +//// [/home/src/workspaces/project/randomFileForTypeRef.js] file written with same contents + +PolledWatches:: +/home/src/workspaces/node_modules: + {"pollingInterval":500} +/home/src/workspaces/node_modules/@types: + {"pollingInterval":500} +/home/src/workspaces/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/@types/pkg4/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/home/src/workspaces: + {} +/home/src/workspaces/project: + {} +/home/src/workspaces/project/main.ts: + {} +/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts: + {} +/home/src/workspaces/project/node_modules/pkg0/package.json: + {} +/home/src/workspaces/project/node_modules/pkg2/package.json: + {} +/home/src/workspaces/project/randomFileForImport.ts: + {} +/home/src/workspaces/project/randomFileForTypeRef.ts: + {} +/home/src/workspaces/project/tsconfig.json: + {} + +FsWatches *deleted*:: +/home/src/workspaces/project/node_modules/pkg2/import.d.ts: + {} + +FsWatchesRecursive:: +/home/src/workspaces/project/node_modules: + {} +/home/src/workspaces/project/node_modules/@types: + {} + +Timeout callback:: count: 0 +20: timerToInvalidateFailedLookupResolutions *deleted* + + +Program root files: [ + "/home/src/workspaces/project/main.ts", + "/home/src/workspaces/project/randomFileForImport.ts", + "/home/src/workspaces/project/randomFileForTypeRef.ts" +] +Program options: { + "traceResolution": true, + "watch": true, + "project": "/home/src/workspaces/project/tsconfig.json", + "explainFiles": true, + "extendedDiagnostics": true, + "configFilePath": "/home/src/workspaces/project/tsconfig.json" +} +Program structureReused: Not +Program files:: +/home/src/tslibs/TS/Lib/lib.d.ts +/home/src/workspaces/project/main.ts +/home/src/workspaces/project/randomFileForImport.ts +/home/src/workspaces/project/randomFileForTypeRef.ts +/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts + +Semantic diagnostics in builder refreshed for:: +/home/src/workspaces/project/main.ts +/home/src/workspaces/project/randomFileForImport.ts +/home/src/workspaces/project/randomFileForTypeRef.ts +/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts + +Shape signatures in builder refreshed for:: +/home/src/workspaces/project/randomfilefortyperef.ts (computed .d.ts) +/home/src/workspaces/project/main.ts (computed .d.ts) +/home/src/workspaces/project/randomfileforimport.ts (computed .d.ts) +/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts (used version) + +exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/resolutionCache/project-with-multiple-places-imports.js b/tests/baselines/reference/tscWatch/resolutionCache/project-with-multiple-places-imports.js new file mode 100644 index 0000000000000..0d9746780dd08 --- /dev/null +++ b/tests/baselines/reference/tscWatch/resolutionCache/project-with-multiple-places-imports.js @@ -0,0 +1,5222 @@ +currentDirectory:: /home/src/workspaces/project useCaseSensitiveFileNames:: false +Input:: +//// [/home/src/workspaces/project/tsconfig.json] +{ + "compilerOptions": { + "traceResolution": true + }, + "files": [ + "main.ts", + "fileWithImports.ts", + "randomFileForImport.ts", + "a/fileWithImports.ts", + "b/ba/fileWithImports.ts", + "b/randomFileForImport.ts", + "c/ca/fileWithImports.ts", + "c/ca/caa/randomFileForImport.ts", + "c/ca/caa/caaa/fileWithImports.ts", + "c/cb/fileWithImports.ts", + "d/da/daa/daaa/x/y/z/randomFileForImport.ts", + "d/da/daa/daaa/fileWithImports.ts", + "d/da/daa/fileWithImports.ts", + "d/da/fileWithImports.ts", + "e/ea/fileWithImports.ts", + "e/ea/eaa/fileWithImports.ts", + "e/ea/eaa/eaaa/fileWithImports.ts", + "e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts", + "f/fa/faa/x/y/z/randomFileForImport.ts", + "f/fa/faa/faaa/fileWithImports.ts" + ] +} + +//// [/home/src/workspaces/project/main.ts] +export const x = 10; + +//// [/home/src/workspaces/project/fileWithImports.ts] +import type { ImportInterface0 } from "pkg0"; +import type { ImportInterface1 } from "pkg1"; + + +//// [/home/src/workspaces/project/randomFileForImport.ts] +export const x = 10; + +//// [/home/src/workspaces/project/a/fileWithImports.ts] +import type { ImportInterface0 } from "pkg0"; +import type { ImportInterface1 } from "pkg1"; + + +//// [/home/src/workspaces/project/b/ba/fileWithImports.ts] +import type { ImportInterface0 } from "pkg0"; +import type { ImportInterface1 } from "pkg1"; + + +//// [/home/src/workspaces/project/b/randomFileForImport.ts] +export const x = 10; + +//// [/home/src/workspaces/project/c/ca/fileWithImports.ts] +import type { ImportInterface0 } from "pkg0"; +import type { ImportInterface1 } from "pkg1"; + + +//// [/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts] +export const x = 10; + +//// [/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts] +import type { ImportInterface0 } from "pkg0"; +import type { ImportInterface1 } from "pkg1"; + + +//// [/home/src/workspaces/project/c/cb/fileWithImports.ts] +import type { ImportInterface0 } from "pkg0"; +import type { ImportInterface1 } from "pkg1"; + + +//// [/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts] +export const x = 10; + +//// [/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts] +import type { ImportInterface0 } from "pkg0"; +import type { ImportInterface1 } from "pkg1"; + + +//// [/home/src/workspaces/project/d/da/daa/fileWithImports.ts] +import type { ImportInterface0 } from "pkg0"; +import type { ImportInterface1 } from "pkg1"; + + +//// [/home/src/workspaces/project/d/da/fileWithImports.ts] +import type { ImportInterface0 } from "pkg0"; +import type { ImportInterface1 } from "pkg1"; + + +//// [/home/src/workspaces/project/e/ea/fileWithImports.ts] +import type { ImportInterface0 } from "pkg0"; +import type { ImportInterface1 } from "pkg1"; + + +//// [/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts] +import type { ImportInterface0 } from "pkg0"; +import type { ImportInterface1 } from "pkg1"; + + +//// [/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts] +import type { ImportInterface0 } from "pkg0"; +import type { ImportInterface1 } from "pkg1"; + + +//// [/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts] +export const x = 10; + +//// [/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts] +import type { ImportInterface0 } from "pkg0"; +import type { ImportInterface1 } from "pkg1"; + + +//// [/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts] +export const x = 10; + +//// [/home/src/workspaces/project/node_modules/pkg0/index.d.ts] +export interface ImportInterface0 {} + +//// [/home/src/tslibs/TS/Lib/lib.d.ts] +/// +interface Boolean {} +interface Function {} +interface CallableFunction {} +interface NewableFunction {} +interface IArguments {} +interface Number { toExponential: any; } +interface Object {} +interface RegExp {} +interface String { charAt: any; } +interface Array { length: number; [n: number]: T; } +interface ReadonlyArray {} +declare const console: { log(msg: any): void; }; + + +/home/src/tslibs/TS/Lib/tsc.js -w -p /home/src/workspaces/project/tsconfig.json --explainFiles --extendedDiagnostics +Output:: +[HH:MM:SS AM] Starting compilation in watch mode... + +Current directory: /home/src/workspaces/project CaseSensitiveFileNames: false +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/tsconfig.json 2000 undefined Config file +Synchronizing program +CreatingProgramWith:: + roots: ["/home/src/workspaces/project/main.ts","/home/src/workspaces/project/fileWithImports.ts","/home/src/workspaces/project/randomFileForImport.ts","/home/src/workspaces/project/a/fileWithImports.ts","/home/src/workspaces/project/b/ba/fileWithImports.ts","/home/src/workspaces/project/b/randomFileForImport.ts","/home/src/workspaces/project/c/ca/fileWithImports.ts","/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts","/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts","/home/src/workspaces/project/c/cb/fileWithImports.ts","/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts","/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts","/home/src/workspaces/project/d/da/daa/fileWithImports.ts","/home/src/workspaces/project/d/da/fileWithImports.ts","/home/src/workspaces/project/e/ea/fileWithImports.ts","/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts","/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts","/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts","/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts","/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts"] + options: {"traceResolution":true,"watch":true,"project":"/home/src/workspaces/project/tsconfig.json","explainFiles":true,"extendedDiagnostics":true,"configFilePath":"/home/src/workspaces/project/tsconfig.json"} +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/main.ts 250 undefined Source file +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/fileWithImports.ts 250 undefined Source file +======== Resolving module 'pkg0' from '/home/src/workspaces/project/fileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist. +File '/home/src/workspaces/project/node_modules/pkg0.ts' does not exist. +File '/home/src/workspaces/project/node_modules/pkg0.tsx' does not exist. +File '/home/src/workspaces/project/node_modules/pkg0.d.ts' does not exist. +File '/home/src/workspaces/project/node_modules/pkg0/index.ts' does not exist. +File '/home/src/workspaces/project/node_modules/pkg0/index.tsx' does not exist. +File '/home/src/workspaces/project/node_modules/pkg0/index.d.ts' exists - use it as a name resolution result. +Resolving real path for '/home/src/workspaces/project/node_modules/pkg0/index.d.ts', result '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Failed Lookup Locations +======== Resolving module 'pkg1' from '/home/src/workspaces/project/fileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +File '/home/src/workspaces/project/node_modules/pkg1.ts' does not exist. +File '/home/src/workspaces/project/node_modules/pkg1.tsx' does not exist. +File '/home/src/workspaces/project/node_modules/pkg1.d.ts' does not exist. +Directory '/home/src/workspaces/project/node_modules/@types' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/node_modules' does not exist, skipping all lookups in it. +Directory '/home/node_modules' does not exist, skipping all lookups in it. +Directory '/node_modules' does not exist, skipping all lookups in it. +Loading module 'pkg1' from 'node_modules' folder, target file types: JavaScript. +Searching all ancestor node_modules directories for fallback extensions: JavaScript. +File '/home/src/workspaces/project/node_modules/pkg1.js' does not exist. +File '/home/src/workspaces/project/node_modules/pkg1.jsx' does not exist. +Directory '/home/src/workspaces/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/node_modules' does not exist, skipping all lookups in it. +Directory '/home/node_modules' does not exist, skipping all lookups in it. +Directory '/node_modules' does not exist, skipping all lookups in it. +======== Module name 'pkg1' was not resolved. ======== +DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Failed Lookup Locations +File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist. +File '/home/src/workspaces/project/package.json' does not exist. +File '/home/src/workspaces/package.json' does not exist. +File '/home/src/package.json' does not exist. +File '/home/package.json' does not exist. +File '/package.json' does not exist. +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/pkg0/index.d.ts 250 undefined Source file +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/randomFileForImport.ts 250 undefined Source file +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/a/fileWithImports.ts 250 undefined Source file +======== Resolving module 'pkg0' from '/home/src/workspaces/project/a/fileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Directory '/home/src/workspaces/project/a/node_modules' does not exist, skipping all lookups in it. +Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project'. +======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/a 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/a 1 undefined Failed Lookup Locations +======== Resolving module 'pkg1' from '/home/src/workspaces/project/a/fileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Directory '/home/src/workspaces/project/a/node_modules' does not exist, skipping all lookups in it. +Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project'. +======== Module name 'pkg1' was not resolved. ======== +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/b/ba/fileWithImports.ts 250 undefined Source file +======== Resolving module 'pkg0' from '/home/src/workspaces/project/b/ba/fileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Directory '/home/src/workspaces/project/b/ba/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/b/node_modules' does not exist, skipping all lookups in it. +Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project'. +======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/b 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/b 1 undefined Failed Lookup Locations +======== Resolving module 'pkg1' from '/home/src/workspaces/project/b/ba/fileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Directory '/home/src/workspaces/project/b/ba/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/b/node_modules' does not exist, skipping all lookups in it. +Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project'. +======== Module name 'pkg1' was not resolved. ======== +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/b/randomFileForImport.ts 250 undefined Source file +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/c/ca/fileWithImports.ts 250 undefined Source file +======== Resolving module 'pkg0' from '/home/src/workspaces/project/c/ca/fileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Directory '/home/src/workspaces/project/c/ca/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/c/node_modules' does not exist, skipping all lookups in it. +Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project'. +======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/c 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/c 1 undefined Failed Lookup Locations +======== Resolving module 'pkg1' from '/home/src/workspaces/project/c/ca/fileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Directory '/home/src/workspaces/project/c/ca/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/c/node_modules' does not exist, skipping all lookups in it. +Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project'. +======== Module name 'pkg1' was not resolved. ======== +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/c/ca/caa/randomFileForImport.ts 250 undefined Source file +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts 250 undefined Source file +======== Resolving module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Directory '/home/src/workspaces/project/c/ca/caa/caaa/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/c/ca/caa/node_modules' does not exist, skipping all lookups in it. +Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project/c/ca'. +======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +======== Resolving module 'pkg1' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Directory '/home/src/workspaces/project/c/ca/caa/caaa/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/c/ca/caa/node_modules' does not exist, skipping all lookups in it. +Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project/c/ca'. +======== Module name 'pkg1' was not resolved. ======== +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/c/cb/fileWithImports.ts 250 undefined Source file +======== Resolving module 'pkg0' from '/home/src/workspaces/project/c/cb/fileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Directory '/home/src/workspaces/project/c/cb/node_modules' does not exist, skipping all lookups in it. +Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project/c'. +======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +======== Resolving module 'pkg1' from '/home/src/workspaces/project/c/cb/fileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Directory '/home/src/workspaces/project/c/cb/node_modules' does not exist, skipping all lookups in it. +Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project/c'. +======== Module name 'pkg1' was not resolved. ======== +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts 250 undefined Source file +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts 250 undefined Source file +======== Resolving module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Directory '/home/src/workspaces/project/d/da/daa/daaa/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/d/da/daa/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/d/da/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/d/node_modules' does not exist, skipping all lookups in it. +Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project'. +======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/d 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/d 1 undefined Failed Lookup Locations +======== Resolving module 'pkg1' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Directory '/home/src/workspaces/project/d/da/daa/daaa/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/d/da/daa/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/d/da/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/d/node_modules' does not exist, skipping all lookups in it. +Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project'. +======== Module name 'pkg1' was not resolved. ======== +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/d/da/daa/fileWithImports.ts 250 undefined Source file +======== Resolving module 'pkg0' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project/d/da/daa'. +======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +======== Resolving module 'pkg1' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project/d/da/daa'. +======== Module name 'pkg1' was not resolved. ======== +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/d/da/fileWithImports.ts 250 undefined Source file +======== Resolving module 'pkg0' from '/home/src/workspaces/project/d/da/fileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project/d/da'. +======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +======== Resolving module 'pkg1' from '/home/src/workspaces/project/d/da/fileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project/d/da'. +======== Module name 'pkg1' was not resolved. ======== +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/e/ea/fileWithImports.ts 250 undefined Source file +======== Resolving module 'pkg0' from '/home/src/workspaces/project/e/ea/fileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Directory '/home/src/workspaces/project/e/ea/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/e/node_modules' does not exist, skipping all lookups in it. +Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project'. +======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/e 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/e 1 undefined Failed Lookup Locations +======== Resolving module 'pkg1' from '/home/src/workspaces/project/e/ea/fileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Directory '/home/src/workspaces/project/e/ea/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/e/node_modules' does not exist, skipping all lookups in it. +Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project'. +======== Module name 'pkg1' was not resolved. ======== +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/e/ea/eaa/fileWithImports.ts 250 undefined Source file +======== Resolving module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Directory '/home/src/workspaces/project/e/ea/eaa/node_modules' does not exist, skipping all lookups in it. +Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project/e/ea'. +======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +======== Resolving module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Directory '/home/src/workspaces/project/e/ea/eaa/node_modules' does not exist, skipping all lookups in it. +Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project/e/ea'. +======== Module name 'pkg1' was not resolved. ======== +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts 250 undefined Source file +======== Resolving module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Directory '/home/src/workspaces/project/e/ea/eaa/eaaa/node_modules' does not exist, skipping all lookups in it. +Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project/e/ea/eaa'. +======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +======== Resolving module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Directory '/home/src/workspaces/project/e/ea/eaa/eaaa/node_modules' does not exist, skipping all lookups in it. +Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project/e/ea/eaa'. +======== Module name 'pkg1' was not resolved. ======== +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts 250 undefined Source file +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts 250 undefined Source file +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts 250 undefined Source file +======== Resolving module 'pkg0' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Directory '/home/src/workspaces/project/f/fa/faa/faaa/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/f/fa/faa/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/f/fa/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/f/node_modules' does not exist, skipping all lookups in it. +Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project'. +======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/f 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/f 1 undefined Failed Lookup Locations +======== Resolving module 'pkg1' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Directory '/home/src/workspaces/project/f/fa/faa/faaa/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/f/fa/faa/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/f/fa/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/f/node_modules' does not exist, skipping all lookups in it. +Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project'. +======== Module name 'pkg1' was not resolved. ======== +FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 250 undefined Source file +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/pkg0/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/package.json 2000 undefined File location affecting resolution +DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Type roots +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Type roots +DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Type roots +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Type roots +DirectoryWatcher:: Triggered with /home/src/workspaces/project/a/fileWithImports.js :: WatchInfo: /home/src/workspaces/project/a 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/a/fileWithImports.js :: WatchInfo: /home/src/workspaces/project/a 1 undefined Failed Lookup Locations +DirectoryWatcher:: Triggered with /home/src/workspaces/project/b/ba/fileWithImports.js :: WatchInfo: /home/src/workspaces/project/b 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/b/ba/fileWithImports.js :: WatchInfo: /home/src/workspaces/project/b 1 undefined Failed Lookup Locations +DirectoryWatcher:: Triggered with /home/src/workspaces/project/b/randomFileForImport.js :: WatchInfo: /home/src/workspaces/project/b 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/b/randomFileForImport.js :: WatchInfo: /home/src/workspaces/project/b 1 undefined Failed Lookup Locations +DirectoryWatcher:: Triggered with /home/src/workspaces/project/c/ca/fileWithImports.js :: WatchInfo: /home/src/workspaces/project/c 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/c/ca/fileWithImports.js :: WatchInfo: /home/src/workspaces/project/c 1 undefined Failed Lookup Locations +DirectoryWatcher:: Triggered with /home/src/workspaces/project/c/ca/caa/randomFileForImport.js :: WatchInfo: /home/src/workspaces/project/c 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/c/ca/caa/randomFileForImport.js :: WatchInfo: /home/src/workspaces/project/c 1 undefined Failed Lookup Locations +DirectoryWatcher:: Triggered with /home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.js :: WatchInfo: /home/src/workspaces/project/c 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.js :: WatchInfo: /home/src/workspaces/project/c 1 undefined Failed Lookup Locations +DirectoryWatcher:: Triggered with /home/src/workspaces/project/c/cb/fileWithImports.js :: WatchInfo: /home/src/workspaces/project/c 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/c/cb/fileWithImports.js :: WatchInfo: /home/src/workspaces/project/c 1 undefined Failed Lookup Locations +DirectoryWatcher:: Triggered with /home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.js :: WatchInfo: /home/src/workspaces/project/d 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.js :: WatchInfo: /home/src/workspaces/project/d 1 undefined Failed Lookup Locations +DirectoryWatcher:: Triggered with /home/src/workspaces/project/d/da/daa/daaa/fileWithImports.js :: WatchInfo: /home/src/workspaces/project/d 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/d/da/daa/daaa/fileWithImports.js :: WatchInfo: /home/src/workspaces/project/d 1 undefined Failed Lookup Locations +DirectoryWatcher:: Triggered with /home/src/workspaces/project/d/da/daa/fileWithImports.js :: WatchInfo: /home/src/workspaces/project/d 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/d/da/daa/fileWithImports.js :: WatchInfo: /home/src/workspaces/project/d 1 undefined Failed Lookup Locations +DirectoryWatcher:: Triggered with /home/src/workspaces/project/d/da/fileWithImports.js :: WatchInfo: /home/src/workspaces/project/d 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/d/da/fileWithImports.js :: WatchInfo: /home/src/workspaces/project/d 1 undefined Failed Lookup Locations +DirectoryWatcher:: Triggered with /home/src/workspaces/project/e/ea/fileWithImports.js :: WatchInfo: /home/src/workspaces/project/e 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/e/ea/fileWithImports.js :: WatchInfo: /home/src/workspaces/project/e 1 undefined Failed Lookup Locations +DirectoryWatcher:: Triggered with /home/src/workspaces/project/e/ea/eaa/fileWithImports.js :: WatchInfo: /home/src/workspaces/project/e 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/e/ea/eaa/fileWithImports.js :: WatchInfo: /home/src/workspaces/project/e 1 undefined Failed Lookup Locations +DirectoryWatcher:: Triggered with /home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.js :: WatchInfo: /home/src/workspaces/project/e 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.js :: WatchInfo: /home/src/workspaces/project/e 1 undefined Failed Lookup Locations +DirectoryWatcher:: Triggered with /home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.js :: WatchInfo: /home/src/workspaces/project/e 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.js :: WatchInfo: /home/src/workspaces/project/e 1 undefined Failed Lookup Locations +DirectoryWatcher:: Triggered with /home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.js :: WatchInfo: /home/src/workspaces/project/f 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.js :: WatchInfo: /home/src/workspaces/project/f 1 undefined Failed Lookup Locations +DirectoryWatcher:: Triggered with /home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.js :: WatchInfo: /home/src/workspaces/project/f 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.js :: WatchInfo: /home/src/workspaces/project/f 1 undefined Failed Lookup Locations +a/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +b/ba/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +c/ca/caa/caaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +c/ca/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +c/cb/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +d/da/daa/daaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +d/da/daa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +d/da/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +e/ea/eaa/eaaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +e/ea/eaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +e/ea/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +f/fa/faa/faaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' +main.ts + Part of 'files' list in tsconfig.json +node_modules/pkg0/index.d.ts + Imported via "pkg0" from file 'fileWithImports.ts' + Imported via "pkg0" from file 'a/fileWithImports.ts' + Imported via "pkg0" from file 'b/ba/fileWithImports.ts' + Imported via "pkg0" from file 'c/ca/fileWithImports.ts' + Imported via "pkg0" from file 'c/ca/caa/caaa/fileWithImports.ts' + Imported via "pkg0" from file 'c/cb/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/daa/daaa/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/daa/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/eaaa/fileWithImports.ts' + Imported via "pkg0" from file 'f/fa/faa/faaa/fileWithImports.ts' +fileWithImports.ts + Part of 'files' list in tsconfig.json +randomFileForImport.ts + Part of 'files' list in tsconfig.json +a/fileWithImports.ts + Part of 'files' list in tsconfig.json +b/ba/fileWithImports.ts + Part of 'files' list in tsconfig.json +b/randomFileForImport.ts + Part of 'files' list in tsconfig.json +c/ca/fileWithImports.ts + Part of 'files' list in tsconfig.json +c/ca/caa/randomFileForImport.ts + Part of 'files' list in tsconfig.json +c/ca/caa/caaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +c/cb/fileWithImports.ts + Part of 'files' list in tsconfig.json +d/da/daa/daaa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json +d/da/daa/daaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +d/da/daa/fileWithImports.ts + Part of 'files' list in tsconfig.json +d/da/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/eaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/eaa/eaaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json +f/fa/faa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json +f/fa/faa/faaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +[HH:MM:SS AM] Found 13 errors. Watching for file changes. + + + +//// [/home/src/workspaces/project/main.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/fileWithImports.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); + + +//// [/home/src/workspaces/project/randomFileForImport.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/a/fileWithImports.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); + + +//// [/home/src/workspaces/project/b/ba/fileWithImports.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); + + +//// [/home/src/workspaces/project/b/randomFileForImport.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/c/ca/fileWithImports.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); + + +//// [/home/src/workspaces/project/c/ca/caa/randomFileForImport.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); + + +//// [/home/src/workspaces/project/c/cb/fileWithImports.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); + + +//// [/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); + + +//// [/home/src/workspaces/project/d/da/daa/fileWithImports.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); + + +//// [/home/src/workspaces/project/d/da/fileWithImports.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); + + +//// [/home/src/workspaces/project/e/ea/fileWithImports.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); + + +//// [/home/src/workspaces/project/e/ea/eaa/fileWithImports.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); + + +//// [/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); + + +//// [/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); + + + +PolledWatches:: +/home/src/workspaces/node_modules: *new* + {"pollingInterval":500} +/home/src/workspaces/node_modules/@types: *new* + {"pollingInterval":500} +/home/src/workspaces/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/@types: *new* + {"pollingInterval":500} +/home/src/workspaces/project/node_modules/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/pkg0/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/package.json: *new* + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: *new* + {} +/home/src/workspaces/project/a/fileWithImports.ts: *new* + {} +/home/src/workspaces/project/b/ba/fileWithImports.ts: *new* + {} +/home/src/workspaces/project/b/randomFileForImport.ts: *new* + {} +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts: *new* + {} +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts: *new* + {} +/home/src/workspaces/project/c/ca/fileWithImports.ts: *new* + {} +/home/src/workspaces/project/c/cb/fileWithImports.ts: *new* + {} +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts: *new* + {} +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts: *new* + {} +/home/src/workspaces/project/d/da/daa/fileWithImports.ts: *new* + {} +/home/src/workspaces/project/d/da/fileWithImports.ts: *new* + {} +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts: *new* + {} +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts: *new* + {} +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts: *new* + {} +/home/src/workspaces/project/e/ea/fileWithImports.ts: *new* + {} +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts: *new* + {} +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts: *new* + {} +/home/src/workspaces/project/fileWithImports.ts: *new* + {} +/home/src/workspaces/project/main.ts: *new* + {} +/home/src/workspaces/project/node_modules/pkg0/index.d.ts: *new* + {} +/home/src/workspaces/project/randomFileForImport.ts: *new* + {} +/home/src/workspaces/project/tsconfig.json: *new* + {} + +FsWatchesRecursive:: +/home/src/workspaces/project/a: *new* + {} +/home/src/workspaces/project/b: *new* + {} +/home/src/workspaces/project/c: *new* + {} +/home/src/workspaces/project/d: *new* + {} +/home/src/workspaces/project/e: *new* + {} +/home/src/workspaces/project/f: *new* + {} +/home/src/workspaces/project/node_modules: *new* + {} + +Program root files: [ + "/home/src/workspaces/project/main.ts", + "/home/src/workspaces/project/fileWithImports.ts", + "/home/src/workspaces/project/randomFileForImport.ts", + "/home/src/workspaces/project/a/fileWithImports.ts", + "/home/src/workspaces/project/b/ba/fileWithImports.ts", + "/home/src/workspaces/project/b/randomFileForImport.ts", + "/home/src/workspaces/project/c/ca/fileWithImports.ts", + "/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts", + "/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts", + "/home/src/workspaces/project/c/cb/fileWithImports.ts", + "/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts", + "/home/src/workspaces/project/d/da/daa/fileWithImports.ts", + "/home/src/workspaces/project/d/da/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts" +] +Program options: { + "traceResolution": true, + "watch": true, + "project": "/home/src/workspaces/project/tsconfig.json", + "explainFiles": true, + "extendedDiagnostics": true, + "configFilePath": "/home/src/workspaces/project/tsconfig.json" +} +Program structureReused: Not +Program files:: +/home/src/tslibs/TS/Lib/lib.d.ts +/home/src/workspaces/project/main.ts +/home/src/workspaces/project/node_modules/pkg0/index.d.ts +/home/src/workspaces/project/fileWithImports.ts +/home/src/workspaces/project/randomFileForImport.ts +/home/src/workspaces/project/a/fileWithImports.ts +/home/src/workspaces/project/b/ba/fileWithImports.ts +/home/src/workspaces/project/b/randomFileForImport.ts +/home/src/workspaces/project/c/ca/fileWithImports.ts +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts +/home/src/workspaces/project/c/cb/fileWithImports.ts +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts +/home/src/workspaces/project/d/da/daa/fileWithImports.ts +/home/src/workspaces/project/d/da/fileWithImports.ts +/home/src/workspaces/project/e/ea/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts + +Semantic diagnostics in builder refreshed for:: +/home/src/tslibs/TS/Lib/lib.d.ts +/home/src/workspaces/project/main.ts +/home/src/workspaces/project/node_modules/pkg0/index.d.ts +/home/src/workspaces/project/fileWithImports.ts +/home/src/workspaces/project/randomFileForImport.ts +/home/src/workspaces/project/a/fileWithImports.ts +/home/src/workspaces/project/b/ba/fileWithImports.ts +/home/src/workspaces/project/b/randomFileForImport.ts +/home/src/workspaces/project/c/ca/fileWithImports.ts +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts +/home/src/workspaces/project/c/cb/fileWithImports.ts +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts +/home/src/workspaces/project/d/da/daa/fileWithImports.ts +/home/src/workspaces/project/d/da/fileWithImports.ts +/home/src/workspaces/project/e/ea/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts + +Shape signatures in builder refreshed for:: +/home/src/tslibs/ts/lib/lib.d.ts (used version) +/home/src/workspaces/project/main.ts (used version) +/home/src/workspaces/project/node_modules/pkg0/index.d.ts (used version) +/home/src/workspaces/project/filewithimports.ts (used version) +/home/src/workspaces/project/randomfileforimport.ts (used version) +/home/src/workspaces/project/a/filewithimports.ts (used version) +/home/src/workspaces/project/b/ba/filewithimports.ts (used version) +/home/src/workspaces/project/b/randomfileforimport.ts (used version) +/home/src/workspaces/project/c/ca/filewithimports.ts (used version) +/home/src/workspaces/project/c/ca/caa/randomfileforimport.ts (used version) +/home/src/workspaces/project/c/ca/caa/caaa/filewithimports.ts (used version) +/home/src/workspaces/project/c/cb/filewithimports.ts (used version) +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomfileforimport.ts (used version) +/home/src/workspaces/project/d/da/daa/daaa/filewithimports.ts (used version) +/home/src/workspaces/project/d/da/daa/filewithimports.ts (used version) +/home/src/workspaces/project/d/da/filewithimports.ts (used version) +/home/src/workspaces/project/e/ea/filewithimports.ts (used version) +/home/src/workspaces/project/e/ea/eaa/filewithimports.ts (used version) +/home/src/workspaces/project/e/ea/eaa/eaaa/filewithimports.ts (used version) +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomfileforimport.ts (used version) +/home/src/workspaces/project/f/fa/faa/x/y/z/randomfileforimport.ts (used version) +/home/src/workspaces/project/f/fa/faa/faaa/filewithimports.ts (used version) + +exitCode:: ExitStatus.undefined + +Change:: modify randomFileForImport by adding import + +Input:: +//// [/home/src/workspaces/project/randomFileForImport.ts] +import type { ImportInterface0 } from "pkg0"; +export const x = 10; + + +Output:: +FileWatcher:: Triggered with /home/src/workspaces/project/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/randomFileForImport.ts 250 undefined Source file +Scheduling update +Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/randomFileForImport.ts 250 undefined Source file + + +Timeout callback:: count: 1 +1: timerToUpdateProgram *new* + +Before running Timeout callback:: count: 1 +1: timerToUpdateProgram + +Host is moving to new time +After running Timeout callback:: count: 0 +Output:: +Synchronizing program +[HH:MM:SS AM] File change detected. Starting incremental compilation... + +CreatingProgramWith:: + roots: ["/home/src/workspaces/project/main.ts","/home/src/workspaces/project/fileWithImports.ts","/home/src/workspaces/project/randomFileForImport.ts","/home/src/workspaces/project/a/fileWithImports.ts","/home/src/workspaces/project/b/ba/fileWithImports.ts","/home/src/workspaces/project/b/randomFileForImport.ts","/home/src/workspaces/project/c/ca/fileWithImports.ts","/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts","/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts","/home/src/workspaces/project/c/cb/fileWithImports.ts","/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts","/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts","/home/src/workspaces/project/d/da/daa/fileWithImports.ts","/home/src/workspaces/project/d/da/fileWithImports.ts","/home/src/workspaces/project/e/ea/fileWithImports.ts","/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts","/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts","/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts","/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts","/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts"] + options: {"traceResolution":true,"watch":true,"project":"/home/src/workspaces/project/tsconfig.json","explainFiles":true,"extendedDiagnostics":true,"configFilePath":"/home/src/workspaces/project/tsconfig.json"} +File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was not resolved. +File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +======== Resolving module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts'. ======== +Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project'. +======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. +a/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +b/ba/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +c/ca/caa/caaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +c/ca/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +c/cb/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +d/da/daa/daaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +d/da/daa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +d/da/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +e/ea/eaa/eaaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +e/ea/eaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +e/ea/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +f/fa/faa/faaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' +main.ts + Part of 'files' list in tsconfig.json +node_modules/pkg0/index.d.ts + Imported via "pkg0" from file 'fileWithImports.ts' + Imported via "pkg0" from file 'randomFileForImport.ts' + Imported via "pkg0" from file 'a/fileWithImports.ts' + Imported via "pkg0" from file 'b/ba/fileWithImports.ts' + Imported via "pkg0" from file 'c/ca/fileWithImports.ts' + Imported via "pkg0" from file 'c/ca/caa/caaa/fileWithImports.ts' + Imported via "pkg0" from file 'c/cb/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/daa/daaa/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/daa/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/eaaa/fileWithImports.ts' + Imported via "pkg0" from file 'f/fa/faa/faaa/fileWithImports.ts' +fileWithImports.ts + Part of 'files' list in tsconfig.json +randomFileForImport.ts + Part of 'files' list in tsconfig.json +a/fileWithImports.ts + Part of 'files' list in tsconfig.json +b/ba/fileWithImports.ts + Part of 'files' list in tsconfig.json +b/randomFileForImport.ts + Part of 'files' list in tsconfig.json +c/ca/fileWithImports.ts + Part of 'files' list in tsconfig.json +c/ca/caa/randomFileForImport.ts + Part of 'files' list in tsconfig.json +c/ca/caa/caaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +c/cb/fileWithImports.ts + Part of 'files' list in tsconfig.json +d/da/daa/daaa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json +d/da/daa/daaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +d/da/daa/fileWithImports.ts + Part of 'files' list in tsconfig.json +d/da/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/eaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/eaa/eaaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json +f/fa/faa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json +f/fa/faa/faaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +[HH:MM:SS AM] Found 13 errors. Watching for file changes. + + + +//// [/home/src/workspaces/project/randomFileForImport.js] file written with same contents + + +Program root files: [ + "/home/src/workspaces/project/main.ts", + "/home/src/workspaces/project/fileWithImports.ts", + "/home/src/workspaces/project/randomFileForImport.ts", + "/home/src/workspaces/project/a/fileWithImports.ts", + "/home/src/workspaces/project/b/ba/fileWithImports.ts", + "/home/src/workspaces/project/b/randomFileForImport.ts", + "/home/src/workspaces/project/c/ca/fileWithImports.ts", + "/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts", + "/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts", + "/home/src/workspaces/project/c/cb/fileWithImports.ts", + "/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts", + "/home/src/workspaces/project/d/da/daa/fileWithImports.ts", + "/home/src/workspaces/project/d/da/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts" +] +Program options: { + "traceResolution": true, + "watch": true, + "project": "/home/src/workspaces/project/tsconfig.json", + "explainFiles": true, + "extendedDiagnostics": true, + "configFilePath": "/home/src/workspaces/project/tsconfig.json" +} +Program structureReused: SafeModules +Program files:: +/home/src/tslibs/TS/Lib/lib.d.ts +/home/src/workspaces/project/main.ts +/home/src/workspaces/project/node_modules/pkg0/index.d.ts +/home/src/workspaces/project/fileWithImports.ts +/home/src/workspaces/project/randomFileForImport.ts +/home/src/workspaces/project/a/fileWithImports.ts +/home/src/workspaces/project/b/ba/fileWithImports.ts +/home/src/workspaces/project/b/randomFileForImport.ts +/home/src/workspaces/project/c/ca/fileWithImports.ts +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts +/home/src/workspaces/project/c/cb/fileWithImports.ts +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts +/home/src/workspaces/project/d/da/daa/fileWithImports.ts +/home/src/workspaces/project/d/da/fileWithImports.ts +/home/src/workspaces/project/e/ea/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts + +Semantic diagnostics in builder refreshed for:: +/home/src/workspaces/project/randomFileForImport.ts + +Shape signatures in builder refreshed for:: +/home/src/workspaces/project/randomfileforimport.ts (computed .d.ts) + +exitCode:: ExitStatus.undefined + +Change:: modify b/randomFileForImport by adding import + +Input:: +//// [/home/src/workspaces/project/b/randomFileForImport.ts] +import type { ImportInterface0 } from "pkg0"; +export const x = 10; + + +Output:: +FileWatcher:: Triggered with /home/src/workspaces/project/b/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/b/randomFileForImport.ts 250 undefined Source file +Scheduling update +Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/b/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/b/randomFileForImport.ts 250 undefined Source file + + +Timeout callback:: count: 1 +2: timerToUpdateProgram *new* + +Before running Timeout callback:: count: 1 +2: timerToUpdateProgram + +Host is moving to new time +After running Timeout callback:: count: 0 +Output:: +Synchronizing program +[HH:MM:SS AM] File change detected. Starting incremental compilation... + +CreatingProgramWith:: + roots: ["/home/src/workspaces/project/main.ts","/home/src/workspaces/project/fileWithImports.ts","/home/src/workspaces/project/randomFileForImport.ts","/home/src/workspaces/project/a/fileWithImports.ts","/home/src/workspaces/project/b/ba/fileWithImports.ts","/home/src/workspaces/project/b/randomFileForImport.ts","/home/src/workspaces/project/c/ca/fileWithImports.ts","/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts","/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts","/home/src/workspaces/project/c/cb/fileWithImports.ts","/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts","/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts","/home/src/workspaces/project/d/da/daa/fileWithImports.ts","/home/src/workspaces/project/d/da/fileWithImports.ts","/home/src/workspaces/project/e/ea/fileWithImports.ts","/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts","/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts","/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts","/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts","/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts"] + options: {"traceResolution":true,"watch":true,"project":"/home/src/workspaces/project/tsconfig.json","explainFiles":true,"extendedDiagnostics":true,"configFilePath":"/home/src/workspaces/project/tsconfig.json"} +File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was not resolved. +File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was not resolved. +======== Resolving module 'pkg0' from '/home/src/workspaces/project/b/randomFileForImport.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project/b'. +======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. +a/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +b/ba/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +c/ca/caa/caaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +c/ca/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +c/cb/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +d/da/daa/daaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +d/da/daa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +d/da/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +e/ea/eaa/eaaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +e/ea/eaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +e/ea/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +f/fa/faa/faaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' +main.ts + Part of 'files' list in tsconfig.json +node_modules/pkg0/index.d.ts + Imported via "pkg0" from file 'fileWithImports.ts' + Imported via "pkg0" from file 'randomFileForImport.ts' + Imported via "pkg0" from file 'a/fileWithImports.ts' + Imported via "pkg0" from file 'b/ba/fileWithImports.ts' + Imported via "pkg0" from file 'b/randomFileForImport.ts' + Imported via "pkg0" from file 'c/ca/fileWithImports.ts' + Imported via "pkg0" from file 'c/ca/caa/caaa/fileWithImports.ts' + Imported via "pkg0" from file 'c/cb/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/daa/daaa/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/daa/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/eaaa/fileWithImports.ts' + Imported via "pkg0" from file 'f/fa/faa/faaa/fileWithImports.ts' +fileWithImports.ts + Part of 'files' list in tsconfig.json +randomFileForImport.ts + Part of 'files' list in tsconfig.json +a/fileWithImports.ts + Part of 'files' list in tsconfig.json +b/ba/fileWithImports.ts + Part of 'files' list in tsconfig.json +b/randomFileForImport.ts + Part of 'files' list in tsconfig.json +c/ca/fileWithImports.ts + Part of 'files' list in tsconfig.json +c/ca/caa/randomFileForImport.ts + Part of 'files' list in tsconfig.json +c/ca/caa/caaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +c/cb/fileWithImports.ts + Part of 'files' list in tsconfig.json +d/da/daa/daaa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json +d/da/daa/daaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +d/da/daa/fileWithImports.ts + Part of 'files' list in tsconfig.json +d/da/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/eaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/eaa/eaaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json +f/fa/faa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json +f/fa/faa/faaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +[HH:MM:SS AM] Found 13 errors. Watching for file changes. + + + +//// [/home/src/workspaces/project/b/randomFileForImport.js] file written with same contents + + +Program root files: [ + "/home/src/workspaces/project/main.ts", + "/home/src/workspaces/project/fileWithImports.ts", + "/home/src/workspaces/project/randomFileForImport.ts", + "/home/src/workspaces/project/a/fileWithImports.ts", + "/home/src/workspaces/project/b/ba/fileWithImports.ts", + "/home/src/workspaces/project/b/randomFileForImport.ts", + "/home/src/workspaces/project/c/ca/fileWithImports.ts", + "/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts", + "/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts", + "/home/src/workspaces/project/c/cb/fileWithImports.ts", + "/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts", + "/home/src/workspaces/project/d/da/daa/fileWithImports.ts", + "/home/src/workspaces/project/d/da/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts" +] +Program options: { + "traceResolution": true, + "watch": true, + "project": "/home/src/workspaces/project/tsconfig.json", + "explainFiles": true, + "extendedDiagnostics": true, + "configFilePath": "/home/src/workspaces/project/tsconfig.json" +} +Program structureReused: SafeModules +Program files:: +/home/src/tslibs/TS/Lib/lib.d.ts +/home/src/workspaces/project/main.ts +/home/src/workspaces/project/node_modules/pkg0/index.d.ts +/home/src/workspaces/project/fileWithImports.ts +/home/src/workspaces/project/randomFileForImport.ts +/home/src/workspaces/project/a/fileWithImports.ts +/home/src/workspaces/project/b/ba/fileWithImports.ts +/home/src/workspaces/project/b/randomFileForImport.ts +/home/src/workspaces/project/c/ca/fileWithImports.ts +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts +/home/src/workspaces/project/c/cb/fileWithImports.ts +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts +/home/src/workspaces/project/d/da/daa/fileWithImports.ts +/home/src/workspaces/project/d/da/fileWithImports.ts +/home/src/workspaces/project/e/ea/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts + +Semantic diagnostics in builder refreshed for:: +/home/src/workspaces/project/b/randomFileForImport.ts + +Shape signatures in builder refreshed for:: +/home/src/workspaces/project/b/randomfileforimport.ts (computed .d.ts) + +exitCode:: ExitStatus.undefined + +Change:: modify c/ca/caa/randomFileForImport by adding import + +Input:: +//// [/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts] +import type { ImportInterface0 } from "pkg0"; +export const x = 10; + + +Output:: +FileWatcher:: Triggered with /home/src/workspaces/project/c/ca/caa/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/c/ca/caa/randomFileForImport.ts 250 undefined Source file +Scheduling update +Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/c/ca/caa/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/c/ca/caa/randomFileForImport.ts 250 undefined Source file + + +Timeout callback:: count: 1 +3: timerToUpdateProgram *new* + +Before running Timeout callback:: count: 1 +3: timerToUpdateProgram + +Host is moving to new time +After running Timeout callback:: count: 0 +Output:: +Synchronizing program +[HH:MM:SS AM] File change detected. Starting incremental compilation... + +CreatingProgramWith:: + roots: ["/home/src/workspaces/project/main.ts","/home/src/workspaces/project/fileWithImports.ts","/home/src/workspaces/project/randomFileForImport.ts","/home/src/workspaces/project/a/fileWithImports.ts","/home/src/workspaces/project/b/ba/fileWithImports.ts","/home/src/workspaces/project/b/randomFileForImport.ts","/home/src/workspaces/project/c/ca/fileWithImports.ts","/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts","/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts","/home/src/workspaces/project/c/cb/fileWithImports.ts","/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts","/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts","/home/src/workspaces/project/d/da/daa/fileWithImports.ts","/home/src/workspaces/project/d/da/fileWithImports.ts","/home/src/workspaces/project/e/ea/fileWithImports.ts","/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts","/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts","/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts","/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts","/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts"] + options: {"traceResolution":true,"watch":true,"project":"/home/src/workspaces/project/tsconfig.json","explainFiles":true,"extendedDiagnostics":true,"configFilePath":"/home/src/workspaces/project/tsconfig.json"} +File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was not resolved. +File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was not resolved. +======== Resolving module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project/c/ca/caa'. +======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. +a/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +b/ba/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +c/ca/caa/caaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +c/ca/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +c/cb/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +d/da/daa/daaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +d/da/daa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +d/da/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +e/ea/eaa/eaaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +e/ea/eaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +e/ea/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +f/fa/faa/faaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' +main.ts + Part of 'files' list in tsconfig.json +node_modules/pkg0/index.d.ts + Imported via "pkg0" from file 'fileWithImports.ts' + Imported via "pkg0" from file 'randomFileForImport.ts' + Imported via "pkg0" from file 'a/fileWithImports.ts' + Imported via "pkg0" from file 'b/ba/fileWithImports.ts' + Imported via "pkg0" from file 'b/randomFileForImport.ts' + Imported via "pkg0" from file 'c/ca/fileWithImports.ts' + Imported via "pkg0" from file 'c/ca/caa/randomFileForImport.ts' + Imported via "pkg0" from file 'c/ca/caa/caaa/fileWithImports.ts' + Imported via "pkg0" from file 'c/cb/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/daa/daaa/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/daa/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/eaaa/fileWithImports.ts' + Imported via "pkg0" from file 'f/fa/faa/faaa/fileWithImports.ts' +fileWithImports.ts + Part of 'files' list in tsconfig.json +randomFileForImport.ts + Part of 'files' list in tsconfig.json +a/fileWithImports.ts + Part of 'files' list in tsconfig.json +b/ba/fileWithImports.ts + Part of 'files' list in tsconfig.json +b/randomFileForImport.ts + Part of 'files' list in tsconfig.json +c/ca/fileWithImports.ts + Part of 'files' list in tsconfig.json +c/ca/caa/randomFileForImport.ts + Part of 'files' list in tsconfig.json +c/ca/caa/caaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +c/cb/fileWithImports.ts + Part of 'files' list in tsconfig.json +d/da/daa/daaa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json +d/da/daa/daaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +d/da/daa/fileWithImports.ts + Part of 'files' list in tsconfig.json +d/da/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/eaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/eaa/eaaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json +f/fa/faa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json +f/fa/faa/faaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +[HH:MM:SS AM] Found 13 errors. Watching for file changes. + + + +//// [/home/src/workspaces/project/c/ca/caa/randomFileForImport.js] file written with same contents + + +Program root files: [ + "/home/src/workspaces/project/main.ts", + "/home/src/workspaces/project/fileWithImports.ts", + "/home/src/workspaces/project/randomFileForImport.ts", + "/home/src/workspaces/project/a/fileWithImports.ts", + "/home/src/workspaces/project/b/ba/fileWithImports.ts", + "/home/src/workspaces/project/b/randomFileForImport.ts", + "/home/src/workspaces/project/c/ca/fileWithImports.ts", + "/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts", + "/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts", + "/home/src/workspaces/project/c/cb/fileWithImports.ts", + "/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts", + "/home/src/workspaces/project/d/da/daa/fileWithImports.ts", + "/home/src/workspaces/project/d/da/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts" +] +Program options: { + "traceResolution": true, + "watch": true, + "project": "/home/src/workspaces/project/tsconfig.json", + "explainFiles": true, + "extendedDiagnostics": true, + "configFilePath": "/home/src/workspaces/project/tsconfig.json" +} +Program structureReused: SafeModules +Program files:: +/home/src/tslibs/TS/Lib/lib.d.ts +/home/src/workspaces/project/main.ts +/home/src/workspaces/project/node_modules/pkg0/index.d.ts +/home/src/workspaces/project/fileWithImports.ts +/home/src/workspaces/project/randomFileForImport.ts +/home/src/workspaces/project/a/fileWithImports.ts +/home/src/workspaces/project/b/ba/fileWithImports.ts +/home/src/workspaces/project/b/randomFileForImport.ts +/home/src/workspaces/project/c/ca/fileWithImports.ts +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts +/home/src/workspaces/project/c/cb/fileWithImports.ts +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts +/home/src/workspaces/project/d/da/daa/fileWithImports.ts +/home/src/workspaces/project/d/da/fileWithImports.ts +/home/src/workspaces/project/e/ea/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts + +Semantic diagnostics in builder refreshed for:: +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts + +Shape signatures in builder refreshed for:: +/home/src/workspaces/project/c/ca/caa/randomfileforimport.ts (computed .d.ts) + +exitCode:: ExitStatus.undefined + +Change:: modify d/da/daa/daaa/x/y/z/randomFileForImport by adding import + +Input:: +//// [/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts] +import type { ImportInterface0 } from "pkg0"; +export const x = 10; + + +Output:: +FileWatcher:: Triggered with /home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts 250 undefined Source file +Scheduling update +Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts 250 undefined Source file + + +Timeout callback:: count: 1 +4: timerToUpdateProgram *new* + +Before running Timeout callback:: count: 1 +4: timerToUpdateProgram + +Host is moving to new time +After running Timeout callback:: count: 0 +Output:: +Synchronizing program +[HH:MM:SS AM] File change detected. Starting incremental compilation... + +CreatingProgramWith:: + roots: ["/home/src/workspaces/project/main.ts","/home/src/workspaces/project/fileWithImports.ts","/home/src/workspaces/project/randomFileForImport.ts","/home/src/workspaces/project/a/fileWithImports.ts","/home/src/workspaces/project/b/ba/fileWithImports.ts","/home/src/workspaces/project/b/randomFileForImport.ts","/home/src/workspaces/project/c/ca/fileWithImports.ts","/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts","/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts","/home/src/workspaces/project/c/cb/fileWithImports.ts","/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts","/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts","/home/src/workspaces/project/d/da/daa/fileWithImports.ts","/home/src/workspaces/project/d/da/fileWithImports.ts","/home/src/workspaces/project/e/ea/fileWithImports.ts","/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts","/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts","/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts","/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts","/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts"] + options: {"traceResolution":true,"watch":true,"project":"/home/src/workspaces/project/tsconfig.json","explainFiles":true,"extendedDiagnostics":true,"configFilePath":"/home/src/workspaces/project/tsconfig.json"} +File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was not resolved. +File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was not resolved. +======== Resolving module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Directory '/home/src/workspaces/project/d/da/daa/daaa/x/y/z/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/d/da/daa/daaa/x/y/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/d/da/daa/daaa/x/node_modules' does not exist, skipping all lookups in it. +Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project/d/da/daa/daaa'. +======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. +a/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +b/ba/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +c/ca/caa/caaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +c/ca/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +c/cb/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +d/da/daa/daaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +d/da/daa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +d/da/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +e/ea/eaa/eaaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +e/ea/eaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +e/ea/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +f/fa/faa/faaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' +main.ts + Part of 'files' list in tsconfig.json +node_modules/pkg0/index.d.ts + Imported via "pkg0" from file 'fileWithImports.ts' + Imported via "pkg0" from file 'randomFileForImport.ts' + Imported via "pkg0" from file 'a/fileWithImports.ts' + Imported via "pkg0" from file 'b/ba/fileWithImports.ts' + Imported via "pkg0" from file 'b/randomFileForImport.ts' + Imported via "pkg0" from file 'c/ca/fileWithImports.ts' + Imported via "pkg0" from file 'c/ca/caa/randomFileForImport.ts' + Imported via "pkg0" from file 'c/ca/caa/caaa/fileWithImports.ts' + Imported via "pkg0" from file 'c/cb/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/daa/daaa/x/y/z/randomFileForImport.ts' + Imported via "pkg0" from file 'd/da/daa/daaa/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/daa/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/eaaa/fileWithImports.ts' + Imported via "pkg0" from file 'f/fa/faa/faaa/fileWithImports.ts' +fileWithImports.ts + Part of 'files' list in tsconfig.json +randomFileForImport.ts + Part of 'files' list in tsconfig.json +a/fileWithImports.ts + Part of 'files' list in tsconfig.json +b/ba/fileWithImports.ts + Part of 'files' list in tsconfig.json +b/randomFileForImport.ts + Part of 'files' list in tsconfig.json +c/ca/fileWithImports.ts + Part of 'files' list in tsconfig.json +c/ca/caa/randomFileForImport.ts + Part of 'files' list in tsconfig.json +c/ca/caa/caaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +c/cb/fileWithImports.ts + Part of 'files' list in tsconfig.json +d/da/daa/daaa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json +d/da/daa/daaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +d/da/daa/fileWithImports.ts + Part of 'files' list in tsconfig.json +d/da/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/eaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/eaa/eaaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json +f/fa/faa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json +f/fa/faa/faaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +[HH:MM:SS AM] Found 13 errors. Watching for file changes. + + + +//// [/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.js] file written with same contents + + +Program root files: [ + "/home/src/workspaces/project/main.ts", + "/home/src/workspaces/project/fileWithImports.ts", + "/home/src/workspaces/project/randomFileForImport.ts", + "/home/src/workspaces/project/a/fileWithImports.ts", + "/home/src/workspaces/project/b/ba/fileWithImports.ts", + "/home/src/workspaces/project/b/randomFileForImport.ts", + "/home/src/workspaces/project/c/ca/fileWithImports.ts", + "/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts", + "/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts", + "/home/src/workspaces/project/c/cb/fileWithImports.ts", + "/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts", + "/home/src/workspaces/project/d/da/daa/fileWithImports.ts", + "/home/src/workspaces/project/d/da/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts" +] +Program options: { + "traceResolution": true, + "watch": true, + "project": "/home/src/workspaces/project/tsconfig.json", + "explainFiles": true, + "extendedDiagnostics": true, + "configFilePath": "/home/src/workspaces/project/tsconfig.json" +} +Program structureReused: SafeModules +Program files:: +/home/src/tslibs/TS/Lib/lib.d.ts +/home/src/workspaces/project/main.ts +/home/src/workspaces/project/node_modules/pkg0/index.d.ts +/home/src/workspaces/project/fileWithImports.ts +/home/src/workspaces/project/randomFileForImport.ts +/home/src/workspaces/project/a/fileWithImports.ts +/home/src/workspaces/project/b/ba/fileWithImports.ts +/home/src/workspaces/project/b/randomFileForImport.ts +/home/src/workspaces/project/c/ca/fileWithImports.ts +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts +/home/src/workspaces/project/c/cb/fileWithImports.ts +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts +/home/src/workspaces/project/d/da/daa/fileWithImports.ts +/home/src/workspaces/project/d/da/fileWithImports.ts +/home/src/workspaces/project/e/ea/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts + +Semantic diagnostics in builder refreshed for:: +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts + +Shape signatures in builder refreshed for:: +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomfileforimport.ts (computed .d.ts) + +exitCode:: ExitStatus.undefined + +Change:: modify e/ea/eaa/eaaa/x/y/z/randomFileForImport by adding import + +Input:: +//// [/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts] +import type { ImportInterface0 } from "pkg0"; +export const x = 10; + + +Output:: +FileWatcher:: Triggered with /home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts 250 undefined Source file +Scheduling update +Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts 250 undefined Source file + + +Timeout callback:: count: 1 +5: timerToUpdateProgram *new* + +Before running Timeout callback:: count: 1 +5: timerToUpdateProgram + +Host is moving to new time +After running Timeout callback:: count: 0 +Output:: +Synchronizing program +[HH:MM:SS AM] File change detected. Starting incremental compilation... + +CreatingProgramWith:: + roots: ["/home/src/workspaces/project/main.ts","/home/src/workspaces/project/fileWithImports.ts","/home/src/workspaces/project/randomFileForImport.ts","/home/src/workspaces/project/a/fileWithImports.ts","/home/src/workspaces/project/b/ba/fileWithImports.ts","/home/src/workspaces/project/b/randomFileForImport.ts","/home/src/workspaces/project/c/ca/fileWithImports.ts","/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts","/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts","/home/src/workspaces/project/c/cb/fileWithImports.ts","/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts","/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts","/home/src/workspaces/project/d/da/daa/fileWithImports.ts","/home/src/workspaces/project/d/da/fileWithImports.ts","/home/src/workspaces/project/e/ea/fileWithImports.ts","/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts","/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts","/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts","/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts","/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts"] + options: {"traceResolution":true,"watch":true,"project":"/home/src/workspaces/project/tsconfig.json","explainFiles":true,"extendedDiagnostics":true,"configFilePath":"/home/src/workspaces/project/tsconfig.json"} +File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was not resolved. +File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. +======== Resolving module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Directory '/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/e/ea/eaa/eaaa/x/node_modules' does not exist, skipping all lookups in it. +Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project/e/ea/eaa/eaaa'. +======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. +a/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +b/ba/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +c/ca/caa/caaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +c/ca/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +c/cb/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +d/da/daa/daaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +d/da/daa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +d/da/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +e/ea/eaa/eaaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +e/ea/eaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +e/ea/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +f/fa/faa/faaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' +main.ts + Part of 'files' list in tsconfig.json +node_modules/pkg0/index.d.ts + Imported via "pkg0" from file 'fileWithImports.ts' + Imported via "pkg0" from file 'randomFileForImport.ts' + Imported via "pkg0" from file 'a/fileWithImports.ts' + Imported via "pkg0" from file 'b/ba/fileWithImports.ts' + Imported via "pkg0" from file 'b/randomFileForImport.ts' + Imported via "pkg0" from file 'c/ca/fileWithImports.ts' + Imported via "pkg0" from file 'c/ca/caa/randomFileForImport.ts' + Imported via "pkg0" from file 'c/ca/caa/caaa/fileWithImports.ts' + Imported via "pkg0" from file 'c/cb/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/daa/daaa/x/y/z/randomFileForImport.ts' + Imported via "pkg0" from file 'd/da/daa/daaa/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/daa/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/eaaa/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' + Imported via "pkg0" from file 'f/fa/faa/faaa/fileWithImports.ts' +fileWithImports.ts + Part of 'files' list in tsconfig.json +randomFileForImport.ts + Part of 'files' list in tsconfig.json +a/fileWithImports.ts + Part of 'files' list in tsconfig.json +b/ba/fileWithImports.ts + Part of 'files' list in tsconfig.json +b/randomFileForImport.ts + Part of 'files' list in tsconfig.json +c/ca/fileWithImports.ts + Part of 'files' list in tsconfig.json +c/ca/caa/randomFileForImport.ts + Part of 'files' list in tsconfig.json +c/ca/caa/caaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +c/cb/fileWithImports.ts + Part of 'files' list in tsconfig.json +d/da/daa/daaa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json +d/da/daa/daaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +d/da/daa/fileWithImports.ts + Part of 'files' list in tsconfig.json +d/da/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/eaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/eaa/eaaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json +f/fa/faa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json +f/fa/faa/faaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +[HH:MM:SS AM] Found 13 errors. Watching for file changes. + + + +//// [/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.js] file written with same contents + + +Program root files: [ + "/home/src/workspaces/project/main.ts", + "/home/src/workspaces/project/fileWithImports.ts", + "/home/src/workspaces/project/randomFileForImport.ts", + "/home/src/workspaces/project/a/fileWithImports.ts", + "/home/src/workspaces/project/b/ba/fileWithImports.ts", + "/home/src/workspaces/project/b/randomFileForImport.ts", + "/home/src/workspaces/project/c/ca/fileWithImports.ts", + "/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts", + "/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts", + "/home/src/workspaces/project/c/cb/fileWithImports.ts", + "/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts", + "/home/src/workspaces/project/d/da/daa/fileWithImports.ts", + "/home/src/workspaces/project/d/da/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts" +] +Program options: { + "traceResolution": true, + "watch": true, + "project": "/home/src/workspaces/project/tsconfig.json", + "explainFiles": true, + "extendedDiagnostics": true, + "configFilePath": "/home/src/workspaces/project/tsconfig.json" +} +Program structureReused: SafeModules +Program files:: +/home/src/tslibs/TS/Lib/lib.d.ts +/home/src/workspaces/project/main.ts +/home/src/workspaces/project/node_modules/pkg0/index.d.ts +/home/src/workspaces/project/fileWithImports.ts +/home/src/workspaces/project/randomFileForImport.ts +/home/src/workspaces/project/a/fileWithImports.ts +/home/src/workspaces/project/b/ba/fileWithImports.ts +/home/src/workspaces/project/b/randomFileForImport.ts +/home/src/workspaces/project/c/ca/fileWithImports.ts +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts +/home/src/workspaces/project/c/cb/fileWithImports.ts +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts +/home/src/workspaces/project/d/da/daa/fileWithImports.ts +/home/src/workspaces/project/d/da/fileWithImports.ts +/home/src/workspaces/project/e/ea/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts + +Semantic diagnostics in builder refreshed for:: +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts + +Shape signatures in builder refreshed for:: +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomfileforimport.ts (computed .d.ts) + +exitCode:: ExitStatus.undefined + +Change:: modify randomFileForImport by adding unresolved import + +Input:: +//// [/home/src/workspaces/project/randomFileForImport.ts] +import type { ImportInterface1 } from "pkg1"; +import type { ImportInterface0 } from "pkg0"; +export const x = 10; + + +Output:: +FileWatcher:: Triggered with /home/src/workspaces/project/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/randomFileForImport.ts 250 undefined Source file +Scheduling update +Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/randomFileForImport.ts 250 undefined Source file + + +Timeout callback:: count: 1 +6: timerToUpdateProgram *new* + +Before running Timeout callback:: count: 1 +6: timerToUpdateProgram + +Host is moving to new time +After running Timeout callback:: count: 0 +Output:: +Synchronizing program +[HH:MM:SS AM] File change detected. Starting incremental compilation... + +CreatingProgramWith:: + roots: ["/home/src/workspaces/project/main.ts","/home/src/workspaces/project/fileWithImports.ts","/home/src/workspaces/project/randomFileForImport.ts","/home/src/workspaces/project/a/fileWithImports.ts","/home/src/workspaces/project/b/ba/fileWithImports.ts","/home/src/workspaces/project/b/randomFileForImport.ts","/home/src/workspaces/project/c/ca/fileWithImports.ts","/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts","/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts","/home/src/workspaces/project/c/cb/fileWithImports.ts","/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts","/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts","/home/src/workspaces/project/d/da/daa/fileWithImports.ts","/home/src/workspaces/project/d/da/fileWithImports.ts","/home/src/workspaces/project/e/ea/fileWithImports.ts","/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts","/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts","/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts","/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts","/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts"] + options: {"traceResolution":true,"watch":true,"project":"/home/src/workspaces/project/tsconfig.json","explainFiles":true,"extendedDiagnostics":true,"configFilePath":"/home/src/workspaces/project/tsconfig.json"} +File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was not resolved. +File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +======== Resolving module 'pkg1' from '/home/src/workspaces/project/randomFileForImport.ts'. ======== +Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project'. +======== Module name 'pkg1' was not resolved. ======== +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. +a/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +b/ba/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +c/ca/caa/caaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +c/ca/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +c/cb/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +d/da/daa/daaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +d/da/daa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +d/da/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +e/ea/eaa/eaaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +e/ea/eaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +e/ea/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +f/fa/faa/faaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +randomFileForImport.ts:1:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +1 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' +main.ts + Part of 'files' list in tsconfig.json +node_modules/pkg0/index.d.ts + Imported via "pkg0" from file 'fileWithImports.ts' + Imported via "pkg0" from file 'randomFileForImport.ts' + Imported via "pkg0" from file 'a/fileWithImports.ts' + Imported via "pkg0" from file 'b/ba/fileWithImports.ts' + Imported via "pkg0" from file 'b/randomFileForImport.ts' + Imported via "pkg0" from file 'c/ca/fileWithImports.ts' + Imported via "pkg0" from file 'c/ca/caa/randomFileForImport.ts' + Imported via "pkg0" from file 'c/ca/caa/caaa/fileWithImports.ts' + Imported via "pkg0" from file 'c/cb/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/daa/daaa/x/y/z/randomFileForImport.ts' + Imported via "pkg0" from file 'd/da/daa/daaa/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/daa/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/eaaa/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' + Imported via "pkg0" from file 'f/fa/faa/faaa/fileWithImports.ts' +fileWithImports.ts + Part of 'files' list in tsconfig.json +randomFileForImport.ts + Part of 'files' list in tsconfig.json +a/fileWithImports.ts + Part of 'files' list in tsconfig.json +b/ba/fileWithImports.ts + Part of 'files' list in tsconfig.json +b/randomFileForImport.ts + Part of 'files' list in tsconfig.json +c/ca/fileWithImports.ts + Part of 'files' list in tsconfig.json +c/ca/caa/randomFileForImport.ts + Part of 'files' list in tsconfig.json +c/ca/caa/caaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +c/cb/fileWithImports.ts + Part of 'files' list in tsconfig.json +d/da/daa/daaa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json +d/da/daa/daaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +d/da/daa/fileWithImports.ts + Part of 'files' list in tsconfig.json +d/da/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/eaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/eaa/eaaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json +f/fa/faa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json +f/fa/faa/faaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +[HH:MM:SS AM] Found 14 errors. Watching for file changes. + + + +//// [/home/src/workspaces/project/randomFileForImport.js] file written with same contents + + +Program root files: [ + "/home/src/workspaces/project/main.ts", + "/home/src/workspaces/project/fileWithImports.ts", + "/home/src/workspaces/project/randomFileForImport.ts", + "/home/src/workspaces/project/a/fileWithImports.ts", + "/home/src/workspaces/project/b/ba/fileWithImports.ts", + "/home/src/workspaces/project/b/randomFileForImport.ts", + "/home/src/workspaces/project/c/ca/fileWithImports.ts", + "/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts", + "/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts", + "/home/src/workspaces/project/c/cb/fileWithImports.ts", + "/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts", + "/home/src/workspaces/project/d/da/daa/fileWithImports.ts", + "/home/src/workspaces/project/d/da/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts" +] +Program options: { + "traceResolution": true, + "watch": true, + "project": "/home/src/workspaces/project/tsconfig.json", + "explainFiles": true, + "extendedDiagnostics": true, + "configFilePath": "/home/src/workspaces/project/tsconfig.json" +} +Program structureReused: SafeModules +Program files:: +/home/src/tslibs/TS/Lib/lib.d.ts +/home/src/workspaces/project/main.ts +/home/src/workspaces/project/node_modules/pkg0/index.d.ts +/home/src/workspaces/project/fileWithImports.ts +/home/src/workspaces/project/randomFileForImport.ts +/home/src/workspaces/project/a/fileWithImports.ts +/home/src/workspaces/project/b/ba/fileWithImports.ts +/home/src/workspaces/project/b/randomFileForImport.ts +/home/src/workspaces/project/c/ca/fileWithImports.ts +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts +/home/src/workspaces/project/c/cb/fileWithImports.ts +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts +/home/src/workspaces/project/d/da/daa/fileWithImports.ts +/home/src/workspaces/project/d/da/fileWithImports.ts +/home/src/workspaces/project/e/ea/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts + +Semantic diagnostics in builder refreshed for:: +/home/src/workspaces/project/randomFileForImport.ts + +Shape signatures in builder refreshed for:: +/home/src/workspaces/project/randomfileforimport.ts (computed .d.ts) + +exitCode:: ExitStatus.undefined + +Change:: modify b/randomFileForImport by adding unresolved import + +Input:: +//// [/home/src/workspaces/project/b/randomFileForImport.ts] +import type { ImportInterface1 } from "pkg1"; +import type { ImportInterface0 } from "pkg0"; +export const x = 10; + + +Output:: +FileWatcher:: Triggered with /home/src/workspaces/project/b/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/b/randomFileForImport.ts 250 undefined Source file +Scheduling update +Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/b/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/b/randomFileForImport.ts 250 undefined Source file + + +Timeout callback:: count: 1 +7: timerToUpdateProgram *new* + +Before running Timeout callback:: count: 1 +7: timerToUpdateProgram + +Host is moving to new time +After running Timeout callback:: count: 0 +Output:: +Synchronizing program +[HH:MM:SS AM] File change detected. Starting incremental compilation... + +CreatingProgramWith:: + roots: ["/home/src/workspaces/project/main.ts","/home/src/workspaces/project/fileWithImports.ts","/home/src/workspaces/project/randomFileForImport.ts","/home/src/workspaces/project/a/fileWithImports.ts","/home/src/workspaces/project/b/ba/fileWithImports.ts","/home/src/workspaces/project/b/randomFileForImport.ts","/home/src/workspaces/project/c/ca/fileWithImports.ts","/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts","/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts","/home/src/workspaces/project/c/cb/fileWithImports.ts","/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts","/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts","/home/src/workspaces/project/d/da/daa/fileWithImports.ts","/home/src/workspaces/project/d/da/fileWithImports.ts","/home/src/workspaces/project/e/ea/fileWithImports.ts","/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts","/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts","/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts","/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts","/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts"] + options: {"traceResolution":true,"watch":true,"project":"/home/src/workspaces/project/tsconfig.json","explainFiles":true,"extendedDiagnostics":true,"configFilePath":"/home/src/workspaces/project/tsconfig.json"} +File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was not resolved. +File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was not resolved. +======== Resolving module 'pkg1' from '/home/src/workspaces/project/b/randomFileForImport.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project/b'. +======== Module name 'pkg1' was not resolved. ======== +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. +a/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +b/ba/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +b/randomFileForImport.ts:1:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +1 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +c/ca/caa/caaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +c/ca/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +c/cb/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +d/da/daa/daaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +d/da/daa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +d/da/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +e/ea/eaa/eaaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +e/ea/eaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +e/ea/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +f/fa/faa/faaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +randomFileForImport.ts:1:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +1 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' +main.ts + Part of 'files' list in tsconfig.json +node_modules/pkg0/index.d.ts + Imported via "pkg0" from file 'fileWithImports.ts' + Imported via "pkg0" from file 'randomFileForImport.ts' + Imported via "pkg0" from file 'a/fileWithImports.ts' + Imported via "pkg0" from file 'b/ba/fileWithImports.ts' + Imported via "pkg0" from file 'b/randomFileForImport.ts' + Imported via "pkg0" from file 'c/ca/fileWithImports.ts' + Imported via "pkg0" from file 'c/ca/caa/randomFileForImport.ts' + Imported via "pkg0" from file 'c/ca/caa/caaa/fileWithImports.ts' + Imported via "pkg0" from file 'c/cb/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/daa/daaa/x/y/z/randomFileForImport.ts' + Imported via "pkg0" from file 'd/da/daa/daaa/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/daa/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/eaaa/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' + Imported via "pkg0" from file 'f/fa/faa/faaa/fileWithImports.ts' +fileWithImports.ts + Part of 'files' list in tsconfig.json +randomFileForImport.ts + Part of 'files' list in tsconfig.json +a/fileWithImports.ts + Part of 'files' list in tsconfig.json +b/ba/fileWithImports.ts + Part of 'files' list in tsconfig.json +b/randomFileForImport.ts + Part of 'files' list in tsconfig.json +c/ca/fileWithImports.ts + Part of 'files' list in tsconfig.json +c/ca/caa/randomFileForImport.ts + Part of 'files' list in tsconfig.json +c/ca/caa/caaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +c/cb/fileWithImports.ts + Part of 'files' list in tsconfig.json +d/da/daa/daaa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json +d/da/daa/daaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +d/da/daa/fileWithImports.ts + Part of 'files' list in tsconfig.json +d/da/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/eaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/eaa/eaaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json +f/fa/faa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json +f/fa/faa/faaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +[HH:MM:SS AM] Found 15 errors. Watching for file changes. + + + +//// [/home/src/workspaces/project/b/randomFileForImport.js] file written with same contents + + +Program root files: [ + "/home/src/workspaces/project/main.ts", + "/home/src/workspaces/project/fileWithImports.ts", + "/home/src/workspaces/project/randomFileForImport.ts", + "/home/src/workspaces/project/a/fileWithImports.ts", + "/home/src/workspaces/project/b/ba/fileWithImports.ts", + "/home/src/workspaces/project/b/randomFileForImport.ts", + "/home/src/workspaces/project/c/ca/fileWithImports.ts", + "/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts", + "/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts", + "/home/src/workspaces/project/c/cb/fileWithImports.ts", + "/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts", + "/home/src/workspaces/project/d/da/daa/fileWithImports.ts", + "/home/src/workspaces/project/d/da/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts" +] +Program options: { + "traceResolution": true, + "watch": true, + "project": "/home/src/workspaces/project/tsconfig.json", + "explainFiles": true, + "extendedDiagnostics": true, + "configFilePath": "/home/src/workspaces/project/tsconfig.json" +} +Program structureReused: SafeModules +Program files:: +/home/src/tslibs/TS/Lib/lib.d.ts +/home/src/workspaces/project/main.ts +/home/src/workspaces/project/node_modules/pkg0/index.d.ts +/home/src/workspaces/project/fileWithImports.ts +/home/src/workspaces/project/randomFileForImport.ts +/home/src/workspaces/project/a/fileWithImports.ts +/home/src/workspaces/project/b/ba/fileWithImports.ts +/home/src/workspaces/project/b/randomFileForImport.ts +/home/src/workspaces/project/c/ca/fileWithImports.ts +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts +/home/src/workspaces/project/c/cb/fileWithImports.ts +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts +/home/src/workspaces/project/d/da/daa/fileWithImports.ts +/home/src/workspaces/project/d/da/fileWithImports.ts +/home/src/workspaces/project/e/ea/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts + +Semantic diagnostics in builder refreshed for:: +/home/src/workspaces/project/b/randomFileForImport.ts + +Shape signatures in builder refreshed for:: +/home/src/workspaces/project/b/randomfileforimport.ts (computed .d.ts) + +exitCode:: ExitStatus.undefined + +Change:: modify c/ca/caa/randomFileForImport by adding unresolved import + +Input:: +//// [/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts] +import type { ImportInterface1 } from "pkg1"; +import type { ImportInterface0 } from "pkg0"; +export const x = 10; + + +Output:: +FileWatcher:: Triggered with /home/src/workspaces/project/c/ca/caa/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/c/ca/caa/randomFileForImport.ts 250 undefined Source file +Scheduling update +Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/c/ca/caa/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/c/ca/caa/randomFileForImport.ts 250 undefined Source file + + +Timeout callback:: count: 1 +8: timerToUpdateProgram *new* + +Before running Timeout callback:: count: 1 +8: timerToUpdateProgram + +Host is moving to new time +After running Timeout callback:: count: 0 +Output:: +Synchronizing program +[HH:MM:SS AM] File change detected. Starting incremental compilation... + +CreatingProgramWith:: + roots: ["/home/src/workspaces/project/main.ts","/home/src/workspaces/project/fileWithImports.ts","/home/src/workspaces/project/randomFileForImport.ts","/home/src/workspaces/project/a/fileWithImports.ts","/home/src/workspaces/project/b/ba/fileWithImports.ts","/home/src/workspaces/project/b/randomFileForImport.ts","/home/src/workspaces/project/c/ca/fileWithImports.ts","/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts","/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts","/home/src/workspaces/project/c/cb/fileWithImports.ts","/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts","/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts","/home/src/workspaces/project/d/da/daa/fileWithImports.ts","/home/src/workspaces/project/d/da/fileWithImports.ts","/home/src/workspaces/project/e/ea/fileWithImports.ts","/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts","/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts","/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts","/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts","/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts"] + options: {"traceResolution":true,"watch":true,"project":"/home/src/workspaces/project/tsconfig.json","explainFiles":true,"extendedDiagnostics":true,"configFilePath":"/home/src/workspaces/project/tsconfig.json"} +File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was not resolved. +File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/b/randomFileForImport.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was not resolved. +======== Resolving module 'pkg1' from '/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project/c/ca/caa'. +======== Module name 'pkg1' was not resolved. ======== +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. +a/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +b/ba/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +b/randomFileForImport.ts:1:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +1 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +c/ca/caa/caaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +c/ca/caa/randomFileForImport.ts:1:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +1 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +c/ca/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +c/cb/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +d/da/daa/daaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +d/da/daa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +d/da/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +e/ea/eaa/eaaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +e/ea/eaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +e/ea/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +f/fa/faa/faaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +randomFileForImport.ts:1:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +1 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' +main.ts + Part of 'files' list in tsconfig.json +node_modules/pkg0/index.d.ts + Imported via "pkg0" from file 'fileWithImports.ts' + Imported via "pkg0" from file 'randomFileForImport.ts' + Imported via "pkg0" from file 'a/fileWithImports.ts' + Imported via "pkg0" from file 'b/ba/fileWithImports.ts' + Imported via "pkg0" from file 'b/randomFileForImport.ts' + Imported via "pkg0" from file 'c/ca/fileWithImports.ts' + Imported via "pkg0" from file 'c/ca/caa/randomFileForImport.ts' + Imported via "pkg0" from file 'c/ca/caa/caaa/fileWithImports.ts' + Imported via "pkg0" from file 'c/cb/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/daa/daaa/x/y/z/randomFileForImport.ts' + Imported via "pkg0" from file 'd/da/daa/daaa/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/daa/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/eaaa/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' + Imported via "pkg0" from file 'f/fa/faa/faaa/fileWithImports.ts' +fileWithImports.ts + Part of 'files' list in tsconfig.json +randomFileForImport.ts + Part of 'files' list in tsconfig.json +a/fileWithImports.ts + Part of 'files' list in tsconfig.json +b/ba/fileWithImports.ts + Part of 'files' list in tsconfig.json +b/randomFileForImport.ts + Part of 'files' list in tsconfig.json +c/ca/fileWithImports.ts + Part of 'files' list in tsconfig.json +c/ca/caa/randomFileForImport.ts + Part of 'files' list in tsconfig.json +c/ca/caa/caaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +c/cb/fileWithImports.ts + Part of 'files' list in tsconfig.json +d/da/daa/daaa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json +d/da/daa/daaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +d/da/daa/fileWithImports.ts + Part of 'files' list in tsconfig.json +d/da/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/eaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/eaa/eaaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json +f/fa/faa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json +f/fa/faa/faaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +[HH:MM:SS AM] Found 16 errors. Watching for file changes. + + + +//// [/home/src/workspaces/project/c/ca/caa/randomFileForImport.js] file written with same contents + + +Program root files: [ + "/home/src/workspaces/project/main.ts", + "/home/src/workspaces/project/fileWithImports.ts", + "/home/src/workspaces/project/randomFileForImport.ts", + "/home/src/workspaces/project/a/fileWithImports.ts", + "/home/src/workspaces/project/b/ba/fileWithImports.ts", + "/home/src/workspaces/project/b/randomFileForImport.ts", + "/home/src/workspaces/project/c/ca/fileWithImports.ts", + "/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts", + "/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts", + "/home/src/workspaces/project/c/cb/fileWithImports.ts", + "/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts", + "/home/src/workspaces/project/d/da/daa/fileWithImports.ts", + "/home/src/workspaces/project/d/da/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts" +] +Program options: { + "traceResolution": true, + "watch": true, + "project": "/home/src/workspaces/project/tsconfig.json", + "explainFiles": true, + "extendedDiagnostics": true, + "configFilePath": "/home/src/workspaces/project/tsconfig.json" +} +Program structureReused: SafeModules +Program files:: +/home/src/tslibs/TS/Lib/lib.d.ts +/home/src/workspaces/project/main.ts +/home/src/workspaces/project/node_modules/pkg0/index.d.ts +/home/src/workspaces/project/fileWithImports.ts +/home/src/workspaces/project/randomFileForImport.ts +/home/src/workspaces/project/a/fileWithImports.ts +/home/src/workspaces/project/b/ba/fileWithImports.ts +/home/src/workspaces/project/b/randomFileForImport.ts +/home/src/workspaces/project/c/ca/fileWithImports.ts +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts +/home/src/workspaces/project/c/cb/fileWithImports.ts +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts +/home/src/workspaces/project/d/da/daa/fileWithImports.ts +/home/src/workspaces/project/d/da/fileWithImports.ts +/home/src/workspaces/project/e/ea/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts + +Semantic diagnostics in builder refreshed for:: +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts + +Shape signatures in builder refreshed for:: +/home/src/workspaces/project/c/ca/caa/randomfileforimport.ts (computed .d.ts) + +exitCode:: ExitStatus.undefined + +Change:: modify d/da/daa/daaa/x/y/z/randomFileForImport by adding unresolved import + +Input:: +//// [/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts] +import type { ImportInterface1 } from "pkg1"; +import type { ImportInterface0 } from "pkg0"; +export const x = 10; + + +Output:: +FileWatcher:: Triggered with /home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts 250 undefined Source file +Scheduling update +Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts 250 undefined Source file + + +Timeout callback:: count: 1 +9: timerToUpdateProgram *new* + +Before running Timeout callback:: count: 1 +9: timerToUpdateProgram + +Host is moving to new time +After running Timeout callback:: count: 0 +Output:: +Synchronizing program +[HH:MM:SS AM] File change detected. Starting incremental compilation... + +CreatingProgramWith:: + roots: ["/home/src/workspaces/project/main.ts","/home/src/workspaces/project/fileWithImports.ts","/home/src/workspaces/project/randomFileForImport.ts","/home/src/workspaces/project/a/fileWithImports.ts","/home/src/workspaces/project/b/ba/fileWithImports.ts","/home/src/workspaces/project/b/randomFileForImport.ts","/home/src/workspaces/project/c/ca/fileWithImports.ts","/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts","/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts","/home/src/workspaces/project/c/cb/fileWithImports.ts","/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts","/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts","/home/src/workspaces/project/d/da/daa/fileWithImports.ts","/home/src/workspaces/project/d/da/fileWithImports.ts","/home/src/workspaces/project/e/ea/fileWithImports.ts","/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts","/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts","/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts","/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts","/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts"] + options: {"traceResolution":true,"watch":true,"project":"/home/src/workspaces/project/tsconfig.json","explainFiles":true,"extendedDiagnostics":true,"configFilePath":"/home/src/workspaces/project/tsconfig.json"} +File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was not resolved. +File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/b/randomFileForImport.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was not resolved. +======== Resolving module 'pkg1' from '/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Directory '/home/src/workspaces/project/d/da/daa/daaa/x/y/z/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/d/da/daa/daaa/x/y/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/d/da/daa/daaa/x/node_modules' does not exist, skipping all lookups in it. +Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project/d/da/daa/daaa'. +======== Module name 'pkg1' was not resolved. ======== +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. +a/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +b/ba/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +b/randomFileForImport.ts:1:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +1 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +c/ca/caa/caaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +c/ca/caa/randomFileForImport.ts:1:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +1 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +c/ca/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +c/cb/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +d/da/daa/daaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +d/da/daa/daaa/x/y/z/randomFileForImport.ts:1:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +1 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +d/da/daa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +d/da/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +e/ea/eaa/eaaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +e/ea/eaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +e/ea/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +f/fa/faa/faaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +randomFileForImport.ts:1:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +1 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' +main.ts + Part of 'files' list in tsconfig.json +node_modules/pkg0/index.d.ts + Imported via "pkg0" from file 'fileWithImports.ts' + Imported via "pkg0" from file 'randomFileForImport.ts' + Imported via "pkg0" from file 'a/fileWithImports.ts' + Imported via "pkg0" from file 'b/ba/fileWithImports.ts' + Imported via "pkg0" from file 'b/randomFileForImport.ts' + Imported via "pkg0" from file 'c/ca/fileWithImports.ts' + Imported via "pkg0" from file 'c/ca/caa/randomFileForImport.ts' + Imported via "pkg0" from file 'c/ca/caa/caaa/fileWithImports.ts' + Imported via "pkg0" from file 'c/cb/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/daa/daaa/x/y/z/randomFileForImport.ts' + Imported via "pkg0" from file 'd/da/daa/daaa/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/daa/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/eaaa/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' + Imported via "pkg0" from file 'f/fa/faa/faaa/fileWithImports.ts' +fileWithImports.ts + Part of 'files' list in tsconfig.json +randomFileForImport.ts + Part of 'files' list in tsconfig.json +a/fileWithImports.ts + Part of 'files' list in tsconfig.json +b/ba/fileWithImports.ts + Part of 'files' list in tsconfig.json +b/randomFileForImport.ts + Part of 'files' list in tsconfig.json +c/ca/fileWithImports.ts + Part of 'files' list in tsconfig.json +c/ca/caa/randomFileForImport.ts + Part of 'files' list in tsconfig.json +c/ca/caa/caaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +c/cb/fileWithImports.ts + Part of 'files' list in tsconfig.json +d/da/daa/daaa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json +d/da/daa/daaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +d/da/daa/fileWithImports.ts + Part of 'files' list in tsconfig.json +d/da/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/eaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/eaa/eaaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json +f/fa/faa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json +f/fa/faa/faaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +[HH:MM:SS AM] Found 17 errors. Watching for file changes. + + + +//// [/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.js] file written with same contents + + +Program root files: [ + "/home/src/workspaces/project/main.ts", + "/home/src/workspaces/project/fileWithImports.ts", + "/home/src/workspaces/project/randomFileForImport.ts", + "/home/src/workspaces/project/a/fileWithImports.ts", + "/home/src/workspaces/project/b/ba/fileWithImports.ts", + "/home/src/workspaces/project/b/randomFileForImport.ts", + "/home/src/workspaces/project/c/ca/fileWithImports.ts", + "/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts", + "/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts", + "/home/src/workspaces/project/c/cb/fileWithImports.ts", + "/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts", + "/home/src/workspaces/project/d/da/daa/fileWithImports.ts", + "/home/src/workspaces/project/d/da/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts" +] +Program options: { + "traceResolution": true, + "watch": true, + "project": "/home/src/workspaces/project/tsconfig.json", + "explainFiles": true, + "extendedDiagnostics": true, + "configFilePath": "/home/src/workspaces/project/tsconfig.json" +} +Program structureReused: SafeModules +Program files:: +/home/src/tslibs/TS/Lib/lib.d.ts +/home/src/workspaces/project/main.ts +/home/src/workspaces/project/node_modules/pkg0/index.d.ts +/home/src/workspaces/project/fileWithImports.ts +/home/src/workspaces/project/randomFileForImport.ts +/home/src/workspaces/project/a/fileWithImports.ts +/home/src/workspaces/project/b/ba/fileWithImports.ts +/home/src/workspaces/project/b/randomFileForImport.ts +/home/src/workspaces/project/c/ca/fileWithImports.ts +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts +/home/src/workspaces/project/c/cb/fileWithImports.ts +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts +/home/src/workspaces/project/d/da/daa/fileWithImports.ts +/home/src/workspaces/project/d/da/fileWithImports.ts +/home/src/workspaces/project/e/ea/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts + +Semantic diagnostics in builder refreshed for:: +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts + +Shape signatures in builder refreshed for:: +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomfileforimport.ts (computed .d.ts) + +exitCode:: ExitStatus.undefined + +Change:: modify e/ea/eaa/eaaa/x/y/z/randomFileForImport by adding unresolved import + +Input:: +//// [/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts] +import type { ImportInterface1 } from "pkg1"; +import type { ImportInterface0 } from "pkg0"; +export const x = 10; + + +Output:: +FileWatcher:: Triggered with /home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts 250 undefined Source file +Scheduling update +Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts 250 undefined Source file + + +Timeout callback:: count: 1 +10: timerToUpdateProgram *new* + +Before running Timeout callback:: count: 1 +10: timerToUpdateProgram + +Host is moving to new time +After running Timeout callback:: count: 0 +Output:: +Synchronizing program +[HH:MM:SS AM] File change detected. Starting incremental compilation... + +CreatingProgramWith:: + roots: ["/home/src/workspaces/project/main.ts","/home/src/workspaces/project/fileWithImports.ts","/home/src/workspaces/project/randomFileForImport.ts","/home/src/workspaces/project/a/fileWithImports.ts","/home/src/workspaces/project/b/ba/fileWithImports.ts","/home/src/workspaces/project/b/randomFileForImport.ts","/home/src/workspaces/project/c/ca/fileWithImports.ts","/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts","/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts","/home/src/workspaces/project/c/cb/fileWithImports.ts","/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts","/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts","/home/src/workspaces/project/d/da/daa/fileWithImports.ts","/home/src/workspaces/project/d/da/fileWithImports.ts","/home/src/workspaces/project/e/ea/fileWithImports.ts","/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts","/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts","/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts","/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts","/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts"] + options: {"traceResolution":true,"watch":true,"project":"/home/src/workspaces/project/tsconfig.json","explainFiles":true,"extendedDiagnostics":true,"configFilePath":"/home/src/workspaces/project/tsconfig.json"} +File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was not resolved. +File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/b/randomFileForImport.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. +======== Resolving module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Directory '/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/e/ea/eaa/eaaa/x/node_modules' does not exist, skipping all lookups in it. +Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project/e/ea/eaa/eaaa'. +======== Module name 'pkg1' was not resolved. ======== +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. +a/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +b/ba/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +b/randomFileForImport.ts:1:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +1 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +c/ca/caa/caaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +c/ca/caa/randomFileForImport.ts:1:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +1 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +c/ca/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +c/cb/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +d/da/daa/daaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +d/da/daa/daaa/x/y/z/randomFileForImport.ts:1:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +1 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +d/da/daa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +d/da/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +e/ea/eaa/eaaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts:1:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +1 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +e/ea/eaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +e/ea/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +f/fa/faa/faaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +randomFileForImport.ts:1:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +1 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' +main.ts + Part of 'files' list in tsconfig.json +node_modules/pkg0/index.d.ts + Imported via "pkg0" from file 'fileWithImports.ts' + Imported via "pkg0" from file 'randomFileForImport.ts' + Imported via "pkg0" from file 'a/fileWithImports.ts' + Imported via "pkg0" from file 'b/ba/fileWithImports.ts' + Imported via "pkg0" from file 'b/randomFileForImport.ts' + Imported via "pkg0" from file 'c/ca/fileWithImports.ts' + Imported via "pkg0" from file 'c/ca/caa/randomFileForImport.ts' + Imported via "pkg0" from file 'c/ca/caa/caaa/fileWithImports.ts' + Imported via "pkg0" from file 'c/cb/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/daa/daaa/x/y/z/randomFileForImport.ts' + Imported via "pkg0" from file 'd/da/daa/daaa/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/daa/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/eaaa/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' + Imported via "pkg0" from file 'f/fa/faa/faaa/fileWithImports.ts' +fileWithImports.ts + Part of 'files' list in tsconfig.json +randomFileForImport.ts + Part of 'files' list in tsconfig.json +a/fileWithImports.ts + Part of 'files' list in tsconfig.json +b/ba/fileWithImports.ts + Part of 'files' list in tsconfig.json +b/randomFileForImport.ts + Part of 'files' list in tsconfig.json +c/ca/fileWithImports.ts + Part of 'files' list in tsconfig.json +c/ca/caa/randomFileForImport.ts + Part of 'files' list in tsconfig.json +c/ca/caa/caaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +c/cb/fileWithImports.ts + Part of 'files' list in tsconfig.json +d/da/daa/daaa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json +d/da/daa/daaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +d/da/daa/fileWithImports.ts + Part of 'files' list in tsconfig.json +d/da/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/eaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/eaa/eaaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json +f/fa/faa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json +f/fa/faa/faaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +[HH:MM:SS AM] Found 18 errors. Watching for file changes. + + + +//// [/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.js] file written with same contents + + +Program root files: [ + "/home/src/workspaces/project/main.ts", + "/home/src/workspaces/project/fileWithImports.ts", + "/home/src/workspaces/project/randomFileForImport.ts", + "/home/src/workspaces/project/a/fileWithImports.ts", + "/home/src/workspaces/project/b/ba/fileWithImports.ts", + "/home/src/workspaces/project/b/randomFileForImport.ts", + "/home/src/workspaces/project/c/ca/fileWithImports.ts", + "/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts", + "/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts", + "/home/src/workspaces/project/c/cb/fileWithImports.ts", + "/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts", + "/home/src/workspaces/project/d/da/daa/fileWithImports.ts", + "/home/src/workspaces/project/d/da/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts" +] +Program options: { + "traceResolution": true, + "watch": true, + "project": "/home/src/workspaces/project/tsconfig.json", + "explainFiles": true, + "extendedDiagnostics": true, + "configFilePath": "/home/src/workspaces/project/tsconfig.json" +} +Program structureReused: SafeModules +Program files:: +/home/src/tslibs/TS/Lib/lib.d.ts +/home/src/workspaces/project/main.ts +/home/src/workspaces/project/node_modules/pkg0/index.d.ts +/home/src/workspaces/project/fileWithImports.ts +/home/src/workspaces/project/randomFileForImport.ts +/home/src/workspaces/project/a/fileWithImports.ts +/home/src/workspaces/project/b/ba/fileWithImports.ts +/home/src/workspaces/project/b/randomFileForImport.ts +/home/src/workspaces/project/c/ca/fileWithImports.ts +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts +/home/src/workspaces/project/c/cb/fileWithImports.ts +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts +/home/src/workspaces/project/d/da/daa/fileWithImports.ts +/home/src/workspaces/project/d/da/fileWithImports.ts +/home/src/workspaces/project/e/ea/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts + +Semantic diagnostics in builder refreshed for:: +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts + +Shape signatures in builder refreshed for:: +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomfileforimport.ts (computed .d.ts) + +exitCode:: ExitStatus.undefined + +Change:: modify f/fa/faa/x/y/z/randomFileForImport by adding import + +Input:: +//// [/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts] +import type { ImportInterface0 } from "pkg0"; +export const x = 10; + + +Output:: +FileWatcher:: Triggered with /home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts 250 undefined Source file +Scheduling update +Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts 250 undefined Source file + + +Timeout callback:: count: 1 +11: timerToUpdateProgram *new* + +Before running Timeout callback:: count: 1 +11: timerToUpdateProgram + +Host is moving to new time +After running Timeout callback:: count: 0 +Output:: +Synchronizing program +[HH:MM:SS AM] File change detected. Starting incremental compilation... + +CreatingProgramWith:: + roots: ["/home/src/workspaces/project/main.ts","/home/src/workspaces/project/fileWithImports.ts","/home/src/workspaces/project/randomFileForImport.ts","/home/src/workspaces/project/a/fileWithImports.ts","/home/src/workspaces/project/b/ba/fileWithImports.ts","/home/src/workspaces/project/b/randomFileForImport.ts","/home/src/workspaces/project/c/ca/fileWithImports.ts","/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts","/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts","/home/src/workspaces/project/c/cb/fileWithImports.ts","/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts","/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts","/home/src/workspaces/project/d/da/daa/fileWithImports.ts","/home/src/workspaces/project/d/da/fileWithImports.ts","/home/src/workspaces/project/e/ea/fileWithImports.ts","/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts","/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts","/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts","/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts","/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts"] + options: {"traceResolution":true,"watch":true,"project":"/home/src/workspaces/project/tsconfig.json","explainFiles":true,"extendedDiagnostics":true,"configFilePath":"/home/src/workspaces/project/tsconfig.json"} +File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was not resolved. +File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/b/randomFileForImport.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' of old program, it was not resolved. +======== Resolving module 'pkg0' from '/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Directory '/home/src/workspaces/project/f/fa/faa/x/y/z/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/f/fa/faa/x/y/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/f/fa/faa/x/node_modules' does not exist, skipping all lookups in it. +Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project/f/fa/faa'. +======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. +a/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +b/ba/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +b/randomFileForImport.ts:1:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +1 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +c/ca/caa/caaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +c/ca/caa/randomFileForImport.ts:1:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +1 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +c/ca/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +c/cb/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +d/da/daa/daaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +d/da/daa/daaa/x/y/z/randomFileForImport.ts:1:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +1 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +d/da/daa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +d/da/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +e/ea/eaa/eaaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts:1:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +1 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +e/ea/eaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +e/ea/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +f/fa/faa/faaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +randomFileForImport.ts:1:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +1 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' +main.ts + Part of 'files' list in tsconfig.json +node_modules/pkg0/index.d.ts + Imported via "pkg0" from file 'fileWithImports.ts' + Imported via "pkg0" from file 'randomFileForImport.ts' + Imported via "pkg0" from file 'a/fileWithImports.ts' + Imported via "pkg0" from file 'b/ba/fileWithImports.ts' + Imported via "pkg0" from file 'b/randomFileForImport.ts' + Imported via "pkg0" from file 'c/ca/fileWithImports.ts' + Imported via "pkg0" from file 'c/ca/caa/randomFileForImport.ts' + Imported via "pkg0" from file 'c/ca/caa/caaa/fileWithImports.ts' + Imported via "pkg0" from file 'c/cb/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/daa/daaa/x/y/z/randomFileForImport.ts' + Imported via "pkg0" from file 'd/da/daa/daaa/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/daa/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/eaaa/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' + Imported via "pkg0" from file 'f/fa/faa/x/y/z/randomFileForImport.ts' + Imported via "pkg0" from file 'f/fa/faa/faaa/fileWithImports.ts' +fileWithImports.ts + Part of 'files' list in tsconfig.json +randomFileForImport.ts + Part of 'files' list in tsconfig.json +a/fileWithImports.ts + Part of 'files' list in tsconfig.json +b/ba/fileWithImports.ts + Part of 'files' list in tsconfig.json +b/randomFileForImport.ts + Part of 'files' list in tsconfig.json +c/ca/fileWithImports.ts + Part of 'files' list in tsconfig.json +c/ca/caa/randomFileForImport.ts + Part of 'files' list in tsconfig.json +c/ca/caa/caaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +c/cb/fileWithImports.ts + Part of 'files' list in tsconfig.json +d/da/daa/daaa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json +d/da/daa/daaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +d/da/daa/fileWithImports.ts + Part of 'files' list in tsconfig.json +d/da/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/eaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/eaa/eaaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json +f/fa/faa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json +f/fa/faa/faaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +[HH:MM:SS AM] Found 18 errors. Watching for file changes. + + + +//// [/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.js] file written with same contents + + +Program root files: [ + "/home/src/workspaces/project/main.ts", + "/home/src/workspaces/project/fileWithImports.ts", + "/home/src/workspaces/project/randomFileForImport.ts", + "/home/src/workspaces/project/a/fileWithImports.ts", + "/home/src/workspaces/project/b/ba/fileWithImports.ts", + "/home/src/workspaces/project/b/randomFileForImport.ts", + "/home/src/workspaces/project/c/ca/fileWithImports.ts", + "/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts", + "/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts", + "/home/src/workspaces/project/c/cb/fileWithImports.ts", + "/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts", + "/home/src/workspaces/project/d/da/daa/fileWithImports.ts", + "/home/src/workspaces/project/d/da/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts" +] +Program options: { + "traceResolution": true, + "watch": true, + "project": "/home/src/workspaces/project/tsconfig.json", + "explainFiles": true, + "extendedDiagnostics": true, + "configFilePath": "/home/src/workspaces/project/tsconfig.json" +} +Program structureReused: SafeModules +Program files:: +/home/src/tslibs/TS/Lib/lib.d.ts +/home/src/workspaces/project/main.ts +/home/src/workspaces/project/node_modules/pkg0/index.d.ts +/home/src/workspaces/project/fileWithImports.ts +/home/src/workspaces/project/randomFileForImport.ts +/home/src/workspaces/project/a/fileWithImports.ts +/home/src/workspaces/project/b/ba/fileWithImports.ts +/home/src/workspaces/project/b/randomFileForImport.ts +/home/src/workspaces/project/c/ca/fileWithImports.ts +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts +/home/src/workspaces/project/c/cb/fileWithImports.ts +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts +/home/src/workspaces/project/d/da/daa/fileWithImports.ts +/home/src/workspaces/project/d/da/fileWithImports.ts +/home/src/workspaces/project/e/ea/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts + +Semantic diagnostics in builder refreshed for:: +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts + +Shape signatures in builder refreshed for:: +/home/src/workspaces/project/f/fa/faa/x/y/z/randomfileforimport.ts (computed .d.ts) + +exitCode:: ExitStatus.undefined + +Change:: modify f/fa/faa/x/y/z/randomFileForImport by adding unresolved import + +Input:: +//// [/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts] +import type { ImportInterface1 } from "pkg1"; +import type { ImportInterface0 } from "pkg0"; +export const x = 10; + + +Output:: +FileWatcher:: Triggered with /home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts 250 undefined Source file +Scheduling update +Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts 250 undefined Source file + + +Timeout callback:: count: 1 +12: timerToUpdateProgram *new* + +Before running Timeout callback:: count: 1 +12: timerToUpdateProgram + +Host is moving to new time +After running Timeout callback:: count: 0 +Output:: +Synchronizing program +[HH:MM:SS AM] File change detected. Starting incremental compilation... + +CreatingProgramWith:: + roots: ["/home/src/workspaces/project/main.ts","/home/src/workspaces/project/fileWithImports.ts","/home/src/workspaces/project/randomFileForImport.ts","/home/src/workspaces/project/a/fileWithImports.ts","/home/src/workspaces/project/b/ba/fileWithImports.ts","/home/src/workspaces/project/b/randomFileForImport.ts","/home/src/workspaces/project/c/ca/fileWithImports.ts","/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts","/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts","/home/src/workspaces/project/c/cb/fileWithImports.ts","/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts","/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts","/home/src/workspaces/project/d/da/daa/fileWithImports.ts","/home/src/workspaces/project/d/da/fileWithImports.ts","/home/src/workspaces/project/e/ea/fileWithImports.ts","/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts","/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts","/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts","/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts","/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts"] + options: {"traceResolution":true,"watch":true,"project":"/home/src/workspaces/project/tsconfig.json","explainFiles":true,"extendedDiagnostics":true,"configFilePath":"/home/src/workspaces/project/tsconfig.json"} +File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was not resolved. +File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/b/randomFileForImport.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' of old program, it was not resolved. +======== Resolving module 'pkg1' from '/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Directory '/home/src/workspaces/project/f/fa/faa/x/y/z/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/f/fa/faa/x/y/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/f/fa/faa/x/node_modules' does not exist, skipping all lookups in it. +Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project/f/fa/faa'. +======== Module name 'pkg1' was not resolved. ======== +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. +a/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +b/ba/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +b/randomFileForImport.ts:1:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +1 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +c/ca/caa/caaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +c/ca/caa/randomFileForImport.ts:1:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +1 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +c/ca/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +c/cb/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +d/da/daa/daaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +d/da/daa/daaa/x/y/z/randomFileForImport.ts:1:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +1 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +d/da/daa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +d/da/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +e/ea/eaa/eaaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts:1:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +1 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +e/ea/eaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +e/ea/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +f/fa/faa/faaa/fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +f/fa/faa/x/y/z/randomFileForImport.ts:1:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +1 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +fileWithImports.ts:2:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +2 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +randomFileForImport.ts:1:39 - error TS2307: Cannot find module 'pkg1' or its corresponding type declarations. + +1 import type { ImportInterface1 } from "pkg1"; +   ~~~~~~ + +../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' +main.ts + Part of 'files' list in tsconfig.json +node_modules/pkg0/index.d.ts + Imported via "pkg0" from file 'fileWithImports.ts' + Imported via "pkg0" from file 'randomFileForImport.ts' + Imported via "pkg0" from file 'a/fileWithImports.ts' + Imported via "pkg0" from file 'b/ba/fileWithImports.ts' + Imported via "pkg0" from file 'b/randomFileForImport.ts' + Imported via "pkg0" from file 'c/ca/fileWithImports.ts' + Imported via "pkg0" from file 'c/ca/caa/randomFileForImport.ts' + Imported via "pkg0" from file 'c/ca/caa/caaa/fileWithImports.ts' + Imported via "pkg0" from file 'c/cb/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/daa/daaa/x/y/z/randomFileForImport.ts' + Imported via "pkg0" from file 'd/da/daa/daaa/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/daa/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/eaaa/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' + Imported via "pkg0" from file 'f/fa/faa/x/y/z/randomFileForImport.ts' + Imported via "pkg0" from file 'f/fa/faa/faaa/fileWithImports.ts' +fileWithImports.ts + Part of 'files' list in tsconfig.json +randomFileForImport.ts + Part of 'files' list in tsconfig.json +a/fileWithImports.ts + Part of 'files' list in tsconfig.json +b/ba/fileWithImports.ts + Part of 'files' list in tsconfig.json +b/randomFileForImport.ts + Part of 'files' list in tsconfig.json +c/ca/fileWithImports.ts + Part of 'files' list in tsconfig.json +c/ca/caa/randomFileForImport.ts + Part of 'files' list in tsconfig.json +c/ca/caa/caaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +c/cb/fileWithImports.ts + Part of 'files' list in tsconfig.json +d/da/daa/daaa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json +d/da/daa/daaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +d/da/daa/fileWithImports.ts + Part of 'files' list in tsconfig.json +d/da/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/eaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/eaa/eaaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json +f/fa/faa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json +f/fa/faa/faaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +[HH:MM:SS AM] Found 19 errors. Watching for file changes. + + + +//// [/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.js] file written with same contents + + +Program root files: [ + "/home/src/workspaces/project/main.ts", + "/home/src/workspaces/project/fileWithImports.ts", + "/home/src/workspaces/project/randomFileForImport.ts", + "/home/src/workspaces/project/a/fileWithImports.ts", + "/home/src/workspaces/project/b/ba/fileWithImports.ts", + "/home/src/workspaces/project/b/randomFileForImport.ts", + "/home/src/workspaces/project/c/ca/fileWithImports.ts", + "/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts", + "/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts", + "/home/src/workspaces/project/c/cb/fileWithImports.ts", + "/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts", + "/home/src/workspaces/project/d/da/daa/fileWithImports.ts", + "/home/src/workspaces/project/d/da/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts" +] +Program options: { + "traceResolution": true, + "watch": true, + "project": "/home/src/workspaces/project/tsconfig.json", + "explainFiles": true, + "extendedDiagnostics": true, + "configFilePath": "/home/src/workspaces/project/tsconfig.json" +} +Program structureReused: SafeModules +Program files:: +/home/src/tslibs/TS/Lib/lib.d.ts +/home/src/workspaces/project/main.ts +/home/src/workspaces/project/node_modules/pkg0/index.d.ts +/home/src/workspaces/project/fileWithImports.ts +/home/src/workspaces/project/randomFileForImport.ts +/home/src/workspaces/project/a/fileWithImports.ts +/home/src/workspaces/project/b/ba/fileWithImports.ts +/home/src/workspaces/project/b/randomFileForImport.ts +/home/src/workspaces/project/c/ca/fileWithImports.ts +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts +/home/src/workspaces/project/c/cb/fileWithImports.ts +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts +/home/src/workspaces/project/d/da/daa/fileWithImports.ts +/home/src/workspaces/project/d/da/fileWithImports.ts +/home/src/workspaces/project/e/ea/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts + +Semantic diagnostics in builder refreshed for:: +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts + +Shape signatures in builder refreshed for:: +/home/src/workspaces/project/f/fa/faa/x/y/z/randomfileforimport.ts (computed .d.ts) + +exitCode:: ExitStatus.undefined + +Change:: add file for unresolved import and random edit + +Input:: +//// [/home/src/workspaces/project/randomFileForImport.ts] +import type { ImportInterface1 } from "pkg1"; +import type { ImportInterface0 } from "pkg0"; +export const x = 10;export const y = 10; + +//// [/home/src/workspaces/project/node_modules/pkg1/index.d.ts] +export interface ImportInterface1 {} + + +Output:: +DirectoryWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg1 :: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Failed Lookup Locations +Scheduling invalidateFailedLookup +Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg1 :: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Failed Lookup Locations +DirectoryWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg1/index.d.ts :: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Failed Lookup Locations +Scheduling invalidateFailedLookup, Cancelled earlier one +Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg1/index.d.ts :: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Failed Lookup Locations +FileWatcher:: Triggered with /home/src/workspaces/project/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/randomFileForImport.ts 250 undefined Source file +Scheduling update +Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/randomFileForImport.ts 250 undefined Source file + + +Timeout callback:: count: 2 +14: timerToInvalidateFailedLookupResolutions *new* +15: timerToUpdateProgram *new* + +Before running Timeout callback:: count: 2 +14: timerToInvalidateFailedLookupResolutions +15: timerToUpdateProgram + +After running Timeout callback:: count: 1 +Output:: +Scheduling update + + + +Timeout callback:: count: 1 +15: timerToUpdateProgram *deleted* +16: timerToUpdateProgram *new* + +Before running Timeout callback:: count: 1 +16: timerToUpdateProgram + +Host is moving to new time +After running Timeout callback:: count: 0 +Output:: +Synchronizing program +[HH:MM:SS AM] File change detected. Starting incremental compilation... + +CreatingProgramWith:: + roots: ["/home/src/workspaces/project/main.ts","/home/src/workspaces/project/fileWithImports.ts","/home/src/workspaces/project/randomFileForImport.ts","/home/src/workspaces/project/a/fileWithImports.ts","/home/src/workspaces/project/b/ba/fileWithImports.ts","/home/src/workspaces/project/b/randomFileForImport.ts","/home/src/workspaces/project/c/ca/fileWithImports.ts","/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts","/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts","/home/src/workspaces/project/c/cb/fileWithImports.ts","/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts","/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts","/home/src/workspaces/project/d/da/daa/fileWithImports.ts","/home/src/workspaces/project/d/da/fileWithImports.ts","/home/src/workspaces/project/e/ea/fileWithImports.ts","/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts","/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts","/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts","/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts","/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts"] + options: {"traceResolution":true,"watch":true,"project":"/home/src/workspaces/project/tsconfig.json","explainFiles":true,"extendedDiagnostics":true,"configFilePath":"/home/src/workspaces/project/tsconfig.json"} +File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +======== Resolving module 'pkg1' from '/home/src/workspaces/project/fileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +File '/home/src/workspaces/project/node_modules/pkg1/package.json' does not exist. +File '/home/src/workspaces/project/node_modules/pkg1.ts' does not exist. +File '/home/src/workspaces/project/node_modules/pkg1.tsx' does not exist. +File '/home/src/workspaces/project/node_modules/pkg1.d.ts' does not exist. +File '/home/src/workspaces/project/node_modules/pkg1/index.ts' does not exist. +File '/home/src/workspaces/project/node_modules/pkg1/index.tsx' does not exist. +File '/home/src/workspaces/project/node_modules/pkg1/index.d.ts' exists - use it as a name resolution result. +Resolving real path for '/home/src/workspaces/project/node_modules/pkg1/index.d.ts', result '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. +======== Module name 'pkg1' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. ======== +File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/pkg1/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/pkg1/index.d.ts 250 undefined Source file +======== Resolving module 'pkg1' from '/home/src/workspaces/project/randomFileForImport.ts'. ======== +Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project'. +======== Module name 'pkg1' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. ======== +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +======== Resolving module 'pkg1' from '/home/src/workspaces/project/a/fileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Directory '/home/src/workspaces/project/a/node_modules' does not exist, skipping all lookups in it. +Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project'. +======== Module name 'pkg1' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. ======== +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +======== Resolving module 'pkg1' from '/home/src/workspaces/project/b/ba/fileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Directory '/home/src/workspaces/project/b/ba/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/b/node_modules' does not exist, skipping all lookups in it. +Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project'. +======== Module name 'pkg1' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. ======== +======== Resolving module 'pkg1' from '/home/src/workspaces/project/b/randomFileForImport.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project/b'. +======== Module name 'pkg1' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. ======== +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +======== Resolving module 'pkg1' from '/home/src/workspaces/project/c/ca/fileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Directory '/home/src/workspaces/project/c/ca/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/c/node_modules' does not exist, skipping all lookups in it. +Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project'. +======== Module name 'pkg1' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. ======== +======== Resolving module 'pkg1' from '/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Directory '/home/src/workspaces/project/c/ca/caa/node_modules' does not exist, skipping all lookups in it. +Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project/c/ca'. +======== Module name 'pkg1' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. ======== +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +======== Resolving module 'pkg1' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Directory '/home/src/workspaces/project/c/ca/caa/caaa/node_modules' does not exist, skipping all lookups in it. +Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project/c/ca/caa'. +======== Module name 'pkg1' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. ======== +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +======== Resolving module 'pkg1' from '/home/src/workspaces/project/c/cb/fileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Directory '/home/src/workspaces/project/c/cb/node_modules' does not exist, skipping all lookups in it. +Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project/c'. +======== Module name 'pkg1' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. ======== +======== Resolving module 'pkg1' from '/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Directory '/home/src/workspaces/project/d/da/daa/daaa/x/y/z/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/d/da/daa/daaa/x/y/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/d/da/daa/daaa/x/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/d/da/daa/daaa/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/d/da/daa/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/d/da/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/d/node_modules' does not exist, skipping all lookups in it. +Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project'. +======== Module name 'pkg1' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. ======== +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +======== Resolving module 'pkg1' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project/d/da/daa/daaa'. +======== Module name 'pkg1' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. ======== +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +======== Resolving module 'pkg1' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project/d/da/daa'. +======== Module name 'pkg1' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. ======== +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +======== Resolving module 'pkg1' from '/home/src/workspaces/project/d/da/fileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project/d/da'. +======== Module name 'pkg1' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. ======== +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +======== Resolving module 'pkg1' from '/home/src/workspaces/project/e/ea/fileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Directory '/home/src/workspaces/project/e/ea/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/e/node_modules' does not exist, skipping all lookups in it. +Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project'. +======== Module name 'pkg1' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. ======== +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +======== Resolving module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Directory '/home/src/workspaces/project/e/ea/eaa/node_modules' does not exist, skipping all lookups in it. +Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project/e/ea'. +======== Module name 'pkg1' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. ======== +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +======== Resolving module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Directory '/home/src/workspaces/project/e/ea/eaa/eaaa/node_modules' does not exist, skipping all lookups in it. +Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project/e/ea/eaa'. +======== Module name 'pkg1' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. ======== +======== Resolving module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Directory '/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/e/ea/eaa/eaaa/x/node_modules' does not exist, skipping all lookups in it. +Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project/e/ea/eaa/eaaa'. +======== Module name 'pkg1' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. ======== +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +======== Resolving module 'pkg1' from '/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Directory '/home/src/workspaces/project/f/fa/faa/x/y/z/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/f/fa/faa/x/y/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/f/fa/faa/x/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/f/fa/faa/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/f/fa/node_modules' does not exist, skipping all lookups in it. +Directory '/home/src/workspaces/project/f/node_modules' does not exist, skipping all lookups in it. +Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project'. +======== Module name 'pkg1' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. ======== +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +======== Resolving module 'pkg1' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts'. ======== +Module resolution kind is not specified, using 'Node10'. +Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Directory '/home/src/workspaces/project/f/fa/faa/faaa/node_modules' does not exist, skipping all lookups in it. +Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project/f/fa/faa'. +======== Module name 'pkg1' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. ======== +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/pkg1/package.json 2000 undefined File location affecting resolution +DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Failed Lookup Locations +../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' +main.ts + Part of 'files' list in tsconfig.json +node_modules/pkg0/index.d.ts + Imported via "pkg0" from file 'fileWithImports.ts' + Imported via "pkg0" from file 'randomFileForImport.ts' + Imported via "pkg0" from file 'a/fileWithImports.ts' + Imported via "pkg0" from file 'b/ba/fileWithImports.ts' + Imported via "pkg0" from file 'b/randomFileForImport.ts' + Imported via "pkg0" from file 'c/ca/fileWithImports.ts' + Imported via "pkg0" from file 'c/ca/caa/randomFileForImport.ts' + Imported via "pkg0" from file 'c/ca/caa/caaa/fileWithImports.ts' + Imported via "pkg0" from file 'c/cb/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/daa/daaa/x/y/z/randomFileForImport.ts' + Imported via "pkg0" from file 'd/da/daa/daaa/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/daa/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/eaaa/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' + Imported via "pkg0" from file 'f/fa/faa/x/y/z/randomFileForImport.ts' + Imported via "pkg0" from file 'f/fa/faa/faaa/fileWithImports.ts' +node_modules/pkg1/index.d.ts + Imported via "pkg1" from file 'fileWithImports.ts' + Imported via "pkg1" from file 'randomFileForImport.ts' + Imported via "pkg1" from file 'a/fileWithImports.ts' + Imported via "pkg1" from file 'b/ba/fileWithImports.ts' + Imported via "pkg1" from file 'b/randomFileForImport.ts' + Imported via "pkg1" from file 'c/ca/fileWithImports.ts' + Imported via "pkg1" from file 'c/ca/caa/randomFileForImport.ts' + Imported via "pkg1" from file 'c/ca/caa/caaa/fileWithImports.ts' + Imported via "pkg1" from file 'c/cb/fileWithImports.ts' + Imported via "pkg1" from file 'd/da/daa/daaa/x/y/z/randomFileForImport.ts' + Imported via "pkg1" from file 'd/da/daa/daaa/fileWithImports.ts' + Imported via "pkg1" from file 'd/da/daa/fileWithImports.ts' + Imported via "pkg1" from file 'd/da/fileWithImports.ts' + Imported via "pkg1" from file 'e/ea/fileWithImports.ts' + Imported via "pkg1" from file 'e/ea/eaa/fileWithImports.ts' + Imported via "pkg1" from file 'e/ea/eaa/eaaa/fileWithImports.ts' + Imported via "pkg1" from file 'e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' + Imported via "pkg1" from file 'f/fa/faa/x/y/z/randomFileForImport.ts' + Imported via "pkg1" from file 'f/fa/faa/faaa/fileWithImports.ts' +fileWithImports.ts + Part of 'files' list in tsconfig.json +randomFileForImport.ts + Part of 'files' list in tsconfig.json +a/fileWithImports.ts + Part of 'files' list in tsconfig.json +b/ba/fileWithImports.ts + Part of 'files' list in tsconfig.json +b/randomFileForImport.ts + Part of 'files' list in tsconfig.json +c/ca/fileWithImports.ts + Part of 'files' list in tsconfig.json +c/ca/caa/randomFileForImport.ts + Part of 'files' list in tsconfig.json +c/ca/caa/caaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +c/cb/fileWithImports.ts + Part of 'files' list in tsconfig.json +d/da/daa/daaa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json +d/da/daa/daaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +d/da/daa/fileWithImports.ts + Part of 'files' list in tsconfig.json +d/da/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/eaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/eaa/eaaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json +f/fa/faa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json +f/fa/faa/faaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +[HH:MM:SS AM] Found 0 errors. Watching for file changes. + + + +//// [/home/src/workspaces/project/fileWithImports.js] file written with same contents +//// [/home/src/workspaces/project/randomFileForImport.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.y = exports.x = void 0; +exports.x = 10; +exports.y = 10; + + +//// [/home/src/workspaces/project/a/fileWithImports.js] file written with same contents +//// [/home/src/workspaces/project/b/ba/fileWithImports.js] file written with same contents +//// [/home/src/workspaces/project/b/randomFileForImport.js] file written with same contents +//// [/home/src/workspaces/project/c/ca/fileWithImports.js] file written with same contents +//// [/home/src/workspaces/project/c/ca/caa/randomFileForImport.js] file written with same contents +//// [/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.js] file written with same contents +//// [/home/src/workspaces/project/c/cb/fileWithImports.js] file written with same contents +//// [/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.js] file written with same contents +//// [/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.js] file written with same contents +//// [/home/src/workspaces/project/d/da/daa/fileWithImports.js] file written with same contents +//// [/home/src/workspaces/project/d/da/fileWithImports.js] file written with same contents +//// [/home/src/workspaces/project/e/ea/fileWithImports.js] file written with same contents +//// [/home/src/workspaces/project/e/ea/eaa/fileWithImports.js] file written with same contents +//// [/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.js] file written with same contents +//// [/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.js] file written with same contents +//// [/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.js] file written with same contents +//// [/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.js] file written with same contents + +PolledWatches:: +/home/src/workspaces/node_modules/@types: + {"pollingInterval":500} +/home/src/workspaces/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/@types: + {"pollingInterval":500} +/home/src/workspaces/project/node_modules/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/pkg0/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/pkg1/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/package.json: + {"pollingInterval":2000} + +PolledWatches *deleted*:: +/home/src/workspaces/node_modules: + {"pollingInterval":500} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/home/src/workspaces/project/a/fileWithImports.ts: + {} +/home/src/workspaces/project/b/ba/fileWithImports.ts: + {} +/home/src/workspaces/project/b/randomFileForImport.ts: + {} +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts: + {} +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts: + {} +/home/src/workspaces/project/c/ca/fileWithImports.ts: + {} +/home/src/workspaces/project/c/cb/fileWithImports.ts: + {} +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts: + {} +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts: + {} +/home/src/workspaces/project/d/da/daa/fileWithImports.ts: + {} +/home/src/workspaces/project/d/da/fileWithImports.ts: + {} +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts: + {} +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts: + {} +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts: + {} +/home/src/workspaces/project/e/ea/fileWithImports.ts: + {} +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts: + {} +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts: + {} +/home/src/workspaces/project/fileWithImports.ts: + {} +/home/src/workspaces/project/main.ts: + {} +/home/src/workspaces/project/node_modules/pkg0/index.d.ts: + {} +/home/src/workspaces/project/node_modules/pkg1/index.d.ts: *new* + {} +/home/src/workspaces/project/randomFileForImport.ts: + {} +/home/src/workspaces/project/tsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/workspaces/project/a: + {} +/home/src/workspaces/project/b: + {} +/home/src/workspaces/project/c: + {} +/home/src/workspaces/project/d: + {} +/home/src/workspaces/project/e: + {} +/home/src/workspaces/project/f: + {} +/home/src/workspaces/project/node_modules: + {} + + +Program root files: [ + "/home/src/workspaces/project/main.ts", + "/home/src/workspaces/project/fileWithImports.ts", + "/home/src/workspaces/project/randomFileForImport.ts", + "/home/src/workspaces/project/a/fileWithImports.ts", + "/home/src/workspaces/project/b/ba/fileWithImports.ts", + "/home/src/workspaces/project/b/randomFileForImport.ts", + "/home/src/workspaces/project/c/ca/fileWithImports.ts", + "/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts", + "/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts", + "/home/src/workspaces/project/c/cb/fileWithImports.ts", + "/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts", + "/home/src/workspaces/project/d/da/daa/fileWithImports.ts", + "/home/src/workspaces/project/d/da/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts" +] +Program options: { + "traceResolution": true, + "watch": true, + "project": "/home/src/workspaces/project/tsconfig.json", + "explainFiles": true, + "extendedDiagnostics": true, + "configFilePath": "/home/src/workspaces/project/tsconfig.json" +} +Program structureReused: SafeModules +Program files:: +/home/src/tslibs/TS/Lib/lib.d.ts +/home/src/workspaces/project/main.ts +/home/src/workspaces/project/node_modules/pkg0/index.d.ts +/home/src/workspaces/project/node_modules/pkg1/index.d.ts +/home/src/workspaces/project/fileWithImports.ts +/home/src/workspaces/project/randomFileForImport.ts +/home/src/workspaces/project/a/fileWithImports.ts +/home/src/workspaces/project/b/ba/fileWithImports.ts +/home/src/workspaces/project/b/randomFileForImport.ts +/home/src/workspaces/project/c/ca/fileWithImports.ts +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts +/home/src/workspaces/project/c/cb/fileWithImports.ts +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts +/home/src/workspaces/project/d/da/daa/fileWithImports.ts +/home/src/workspaces/project/d/da/fileWithImports.ts +/home/src/workspaces/project/e/ea/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts + +Semantic diagnostics in builder refreshed for:: +/home/src/workspaces/project/node_modules/pkg1/index.d.ts +/home/src/workspaces/project/fileWithImports.ts +/home/src/workspaces/project/randomFileForImport.ts +/home/src/workspaces/project/a/fileWithImports.ts +/home/src/workspaces/project/b/ba/fileWithImports.ts +/home/src/workspaces/project/b/randomFileForImport.ts +/home/src/workspaces/project/c/ca/fileWithImports.ts +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts +/home/src/workspaces/project/c/cb/fileWithImports.ts +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts +/home/src/workspaces/project/d/da/daa/fileWithImports.ts +/home/src/workspaces/project/d/da/fileWithImports.ts +/home/src/workspaces/project/e/ea/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts + +Shape signatures in builder refreshed for:: +/home/src/workspaces/project/node_modules/pkg1/index.d.ts (used version) +/home/src/workspaces/project/f/fa/faa/faaa/filewithimports.ts (computed .d.ts) +/home/src/workspaces/project/f/fa/faa/x/y/z/randomfileforimport.ts (computed .d.ts) +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomfileforimport.ts (computed .d.ts) +/home/src/workspaces/project/e/ea/eaa/eaaa/filewithimports.ts (computed .d.ts) +/home/src/workspaces/project/e/ea/eaa/filewithimports.ts (computed .d.ts) +/home/src/workspaces/project/e/ea/filewithimports.ts (computed .d.ts) +/home/src/workspaces/project/d/da/filewithimports.ts (computed .d.ts) +/home/src/workspaces/project/d/da/daa/filewithimports.ts (computed .d.ts) +/home/src/workspaces/project/d/da/daa/daaa/filewithimports.ts (computed .d.ts) +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomfileforimport.ts (computed .d.ts) +/home/src/workspaces/project/c/cb/filewithimports.ts (computed .d.ts) +/home/src/workspaces/project/c/ca/caa/caaa/filewithimports.ts (computed .d.ts) +/home/src/workspaces/project/c/ca/caa/randomfileforimport.ts (computed .d.ts) +/home/src/workspaces/project/c/ca/filewithimports.ts (computed .d.ts) +/home/src/workspaces/project/b/randomfileforimport.ts (computed .d.ts) +/home/src/workspaces/project/b/ba/filewithimports.ts (computed .d.ts) +/home/src/workspaces/project/a/filewithimports.ts (computed .d.ts) +/home/src/workspaces/project/randomfileforimport.ts (computed .d.ts) +/home/src/workspaces/project/filewithimports.ts (computed .d.ts) + +exitCode:: ExitStatus.undefined + +Change:: delete file b/ba/fileWithImports.ts + +Input:: +//// [/home/src/workspaces/project/tsconfig.json] +{ + "compilerOptions": { + "traceResolution": true + }, + "files": [ + "main.ts", + "fileWithImports.ts", + "randomFileForImport.ts", + "a/fileWithImports.ts", + "b/randomFileForImport.ts", + "c/ca/fileWithImports.ts", + "c/ca/caa/randomFileForImport.ts", + "c/ca/caa/caaa/fileWithImports.ts", + "c/cb/fileWithImports.ts", + "d/da/daa/daaa/x/y/z/randomFileForImport.ts", + "d/da/daa/daaa/fileWithImports.ts", + "d/da/daa/fileWithImports.ts", + "d/da/fileWithImports.ts", + "e/ea/fileWithImports.ts", + "e/ea/eaa/fileWithImports.ts", + "e/ea/eaa/eaaa/fileWithImports.ts", + "e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts", + "f/fa/faa/x/y/z/randomFileForImport.ts", + "f/fa/faa/faaa/fileWithImports.ts" + ] +} + +//// [/home/src/workspaces/project/b/ba/fileWithImports.ts] deleted + +Output:: +FileWatcher:: Triggered with /home/src/workspaces/project/b/ba/fileWithImports.ts 2:: WatchInfo: /home/src/workspaces/project/b/ba/fileWithImports.ts 250 undefined Source file +Scheduling update +Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/b/ba/fileWithImports.ts 2:: WatchInfo: /home/src/workspaces/project/b/ba/fileWithImports.ts 250 undefined Source file +DirectoryWatcher:: Triggered with /home/src/workspaces/project/b/ba/fileWithImports.ts :: WatchInfo: /home/src/workspaces/project/b 1 undefined Failed Lookup Locations +Scheduling invalidateFailedLookup +Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/b/ba/fileWithImports.ts :: WatchInfo: /home/src/workspaces/project/b 1 undefined Failed Lookup Locations +FileWatcher:: Triggered with /home/src/workspaces/project/tsconfig.json 1:: WatchInfo: /home/src/workspaces/project/tsconfig.json 2000 undefined Config file +Scheduling update +Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/tsconfig.json 1:: WatchInfo: /home/src/workspaces/project/tsconfig.json 2000 undefined Config file + + +Timeout callback:: count: 2 +18: timerToInvalidateFailedLookupResolutions *new* +19: timerToUpdateProgram *new* + +Before running Timeout callback:: count: 2 +18: timerToInvalidateFailedLookupResolutions +19: timerToUpdateProgram + +Host is moving to new time +After running Timeout callback:: count: 0 +Output:: +Reloading config file: /home/src/workspaces/project/tsconfig.json +Synchronizing program +[HH:MM:SS AM] File change detected. Starting incremental compilation... + +CreatingProgramWith:: + roots: ["/home/src/workspaces/project/main.ts","/home/src/workspaces/project/fileWithImports.ts","/home/src/workspaces/project/randomFileForImport.ts","/home/src/workspaces/project/a/fileWithImports.ts","/home/src/workspaces/project/b/randomFileForImport.ts","/home/src/workspaces/project/c/ca/fileWithImports.ts","/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts","/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts","/home/src/workspaces/project/c/cb/fileWithImports.ts","/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts","/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts","/home/src/workspaces/project/d/da/daa/fileWithImports.ts","/home/src/workspaces/project/d/da/fileWithImports.ts","/home/src/workspaces/project/e/ea/fileWithImports.ts","/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts","/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts","/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts","/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts","/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts"] + options: {"traceResolution":true,"watch":true,"project":"/home/src/workspaces/project/tsconfig.json","explainFiles":true,"extendedDiagnostics":true,"configFilePath":"/home/src/workspaces/project/tsconfig.json"} +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. +File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/pkg1/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. +FileWatcher:: Close:: WatchInfo: /home/src/workspaces/project/b/ba/fileWithImports.ts 250 undefined Source file +../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' +main.ts + Part of 'files' list in tsconfig.json +node_modules/pkg0/index.d.ts + Imported via "pkg0" from file 'fileWithImports.ts' + Imported via "pkg0" from file 'randomFileForImport.ts' + Imported via "pkg0" from file 'a/fileWithImports.ts' + Imported via "pkg0" from file 'b/randomFileForImport.ts' + Imported via "pkg0" from file 'c/ca/fileWithImports.ts' + Imported via "pkg0" from file 'c/ca/caa/randomFileForImport.ts' + Imported via "pkg0" from file 'c/ca/caa/caaa/fileWithImports.ts' + Imported via "pkg0" from file 'c/cb/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/daa/daaa/x/y/z/randomFileForImport.ts' + Imported via "pkg0" from file 'd/da/daa/daaa/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/daa/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/eaaa/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' + Imported via "pkg0" from file 'f/fa/faa/x/y/z/randomFileForImport.ts' + Imported via "pkg0" from file 'f/fa/faa/faaa/fileWithImports.ts' +node_modules/pkg1/index.d.ts + Imported via "pkg1" from file 'fileWithImports.ts' + Imported via "pkg1" from file 'randomFileForImport.ts' + Imported via "pkg1" from file 'a/fileWithImports.ts' + Imported via "pkg1" from file 'b/randomFileForImport.ts' + Imported via "pkg1" from file 'c/ca/fileWithImports.ts' + Imported via "pkg1" from file 'c/ca/caa/randomFileForImport.ts' + Imported via "pkg1" from file 'c/ca/caa/caaa/fileWithImports.ts' + Imported via "pkg1" from file 'c/cb/fileWithImports.ts' + Imported via "pkg1" from file 'd/da/daa/daaa/x/y/z/randomFileForImport.ts' + Imported via "pkg1" from file 'd/da/daa/daaa/fileWithImports.ts' + Imported via "pkg1" from file 'd/da/daa/fileWithImports.ts' + Imported via "pkg1" from file 'd/da/fileWithImports.ts' + Imported via "pkg1" from file 'e/ea/fileWithImports.ts' + Imported via "pkg1" from file 'e/ea/eaa/fileWithImports.ts' + Imported via "pkg1" from file 'e/ea/eaa/eaaa/fileWithImports.ts' + Imported via "pkg1" from file 'e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' + Imported via "pkg1" from file 'f/fa/faa/x/y/z/randomFileForImport.ts' + Imported via "pkg1" from file 'f/fa/faa/faaa/fileWithImports.ts' +fileWithImports.ts + Part of 'files' list in tsconfig.json +randomFileForImport.ts + Part of 'files' list in tsconfig.json +a/fileWithImports.ts + Part of 'files' list in tsconfig.json +b/randomFileForImport.ts + Part of 'files' list in tsconfig.json +c/ca/fileWithImports.ts + Part of 'files' list in tsconfig.json +c/ca/caa/randomFileForImport.ts + Part of 'files' list in tsconfig.json +c/ca/caa/caaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +c/cb/fileWithImports.ts + Part of 'files' list in tsconfig.json +d/da/daa/daaa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json +d/da/daa/daaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +d/da/daa/fileWithImports.ts + Part of 'files' list in tsconfig.json +d/da/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/eaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/eaa/eaaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json +f/fa/faa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json +f/fa/faa/faaa/fileWithImports.ts + Part of 'files' list in tsconfig.json +[HH:MM:SS AM] Found 0 errors. Watching for file changes. + + + + +PolledWatches:: +/home/src/workspaces/node_modules/@types: + {"pollingInterval":500} +/home/src/workspaces/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/@types: + {"pollingInterval":500} +/home/src/workspaces/project/node_modules/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/pkg0/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/pkg1/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/home/src/workspaces/project/a/fileWithImports.ts: + {} +/home/src/workspaces/project/b/randomFileForImport.ts: + {} +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts: + {} +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts: + {} +/home/src/workspaces/project/c/ca/fileWithImports.ts: + {} +/home/src/workspaces/project/c/cb/fileWithImports.ts: + {} +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts: + {} +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts: + {} +/home/src/workspaces/project/d/da/daa/fileWithImports.ts: + {} +/home/src/workspaces/project/d/da/fileWithImports.ts: + {} +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts: + {} +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts: + {} +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts: + {} +/home/src/workspaces/project/e/ea/fileWithImports.ts: + {} +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts: + {} +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts: + {} +/home/src/workspaces/project/fileWithImports.ts: + {} +/home/src/workspaces/project/main.ts: + {} +/home/src/workspaces/project/node_modules/pkg0/index.d.ts: + {} +/home/src/workspaces/project/node_modules/pkg1/index.d.ts: + {} +/home/src/workspaces/project/randomFileForImport.ts: + {} +/home/src/workspaces/project/tsconfig.json: + {} + +FsWatches *deleted*:: +/home/src/workspaces/project/b/ba/fileWithImports.ts: + {} + +FsWatchesRecursive:: +/home/src/workspaces/project/a: + {} +/home/src/workspaces/project/b: + {} +/home/src/workspaces/project/c: + {} +/home/src/workspaces/project/d: + {} +/home/src/workspaces/project/e: + {} +/home/src/workspaces/project/f: + {} +/home/src/workspaces/project/node_modules: + {} + + +Program root files: [ + "/home/src/workspaces/project/main.ts", + "/home/src/workspaces/project/fileWithImports.ts", + "/home/src/workspaces/project/randomFileForImport.ts", + "/home/src/workspaces/project/a/fileWithImports.ts", + "/home/src/workspaces/project/b/randomFileForImport.ts", + "/home/src/workspaces/project/c/ca/fileWithImports.ts", + "/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts", + "/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts", + "/home/src/workspaces/project/c/cb/fileWithImports.ts", + "/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts", + "/home/src/workspaces/project/d/da/daa/fileWithImports.ts", + "/home/src/workspaces/project/d/da/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts" +] +Program options: { + "traceResolution": true, + "watch": true, + "project": "/home/src/workspaces/project/tsconfig.json", + "explainFiles": true, + "extendedDiagnostics": true, + "configFilePath": "/home/src/workspaces/project/tsconfig.json" +} +Program structureReused: Not +Program files:: +/home/src/tslibs/TS/Lib/lib.d.ts +/home/src/workspaces/project/main.ts +/home/src/workspaces/project/node_modules/pkg0/index.d.ts +/home/src/workspaces/project/node_modules/pkg1/index.d.ts +/home/src/workspaces/project/fileWithImports.ts +/home/src/workspaces/project/randomFileForImport.ts +/home/src/workspaces/project/a/fileWithImports.ts +/home/src/workspaces/project/b/randomFileForImport.ts +/home/src/workspaces/project/c/ca/fileWithImports.ts +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts +/home/src/workspaces/project/c/cb/fileWithImports.ts +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts +/home/src/workspaces/project/d/da/daa/fileWithImports.ts +/home/src/workspaces/project/d/da/fileWithImports.ts +/home/src/workspaces/project/e/ea/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts + +Semantic diagnostics in builder refreshed for:: + +No shapes updated in the builder:: + +exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/resolutionCache/project-with-package-json-scope.js b/tests/baselines/reference/tscWatch/resolutionCache/project-with-package-json-scope.js new file mode 100644 index 0000000000000..92eb4414ec6c6 --- /dev/null +++ b/tests/baselines/reference/tscWatch/resolutionCache/project-with-package-json-scope.js @@ -0,0 +1,6336 @@ +currentDirectory:: /home/src/workspaces/project useCaseSensitiveFileNames:: false +Input:: +//// [/home/src/workspaces/project/src/tsconfig.json] +{ + "compilerOptions": { + "target": "es2016", + "composite": true, + "module": "node16", + "outDir": "../out", + "traceResolution": true + }, + "files": [ + "main.ts", + "fileA.ts", + "fileB.mts", + "randomFile.ts", + "a/randomFile.ts", + "b/ba/randomFile.ts", + "b/randomFile.ts", + "c/ca/randomFile.ts", + "c/ca/caa/randomFile.ts", + "c/ca/caa/caaa/randomFile.ts", + "c/cb/randomFile.ts", + "d/da/daa/daaa/x/y/z/randomFile.ts", + "d/da/daa/daaa/randomFile.ts", + "d/da/daa/randomFile.ts", + "d/da/randomFile.ts", + "e/ea/randomFile.ts", + "e/ea/eaa/randomFile.ts", + "e/ea/eaa/eaaa/randomFile.ts", + "e/ea/eaa/eaaa/x/y/z/randomFile.ts", + "f/fa/faa/x/y/z/randomFile.ts", + "f/fa/faa/faaa/randomFile.ts" + ] +} + +//// [/home/src/workspaces/project/src/main.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/fileA.ts] +import { foo } from "./fileB.mjs"; +foo(); + + +//// [/home/src/workspaces/project/src/fileB.mts] +export function foo() {} + +//// [/home/src/workspaces/project/src/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/a/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/b/ba/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/b/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/c/ca/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/c/ca/caa/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/c/cb/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/d/da/daa/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/d/da/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/e/ea/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/e/ea/eaa/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/package.json] +{ + "name": "app", + "version": "1.0.0" +} + +//// [/home/src/tslibs/TS/Lib/lib.d.ts] +/// +interface Boolean {} +interface Function {} +interface CallableFunction {} +interface NewableFunction {} +interface IArguments {} +interface Number { toExponential: any; } +interface Object {} +interface RegExp {} +interface String { charAt: any; } +interface Array { length: number; [n: number]: T; } +interface ReadonlyArray {} +declare const console: { log(msg: any): void; }; + + +/home/src/tslibs/TS/Lib/tsc.js -w -p /home/src/workspaces/project/src/tsconfig.json --explainFiles --extendedDiagnostics +Output:: +[HH:MM:SS AM] Starting compilation in watch mode... + +Current directory: /home/src/workspaces/project CaseSensitiveFileNames: false +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/tsconfig.json 2000 undefined Config file +Synchronizing program +CreatingProgramWith:: + roots: ["/home/src/workspaces/project/src/main.ts","/home/src/workspaces/project/src/fileA.ts","/home/src/workspaces/project/src/fileB.mts","/home/src/workspaces/project/src/randomFile.ts","/home/src/workspaces/project/src/a/randomFile.ts","/home/src/workspaces/project/src/b/ba/randomFile.ts","/home/src/workspaces/project/src/b/randomFile.ts","/home/src/workspaces/project/src/c/ca/randomFile.ts","/home/src/workspaces/project/src/c/ca/caa/randomFile.ts","/home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts","/home/src/workspaces/project/src/c/cb/randomFile.ts","/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts","/home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts","/home/src/workspaces/project/src/d/da/daa/randomFile.ts","/home/src/workspaces/project/src/d/da/randomFile.ts","/home/src/workspaces/project/src/e/ea/randomFile.ts","/home/src/workspaces/project/src/e/ea/eaa/randomFile.ts","/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts","/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts","/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts","/home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts"] + options: {"target":3,"composite":true,"module":100,"outDir":"/home/src/workspaces/project/out","traceResolution":true,"watch":true,"project":"/home/src/workspaces/project/src/tsconfig.json","explainFiles":true,"extendedDiagnostics":true,"configFilePath":"/home/src/workspaces/project/src/tsconfig.json"} +File '/home/src/workspaces/project/src/package.json' does not exist. +Found 'package.json' at '/home/src/workspaces/project/package.json'. +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/main.ts 250 undefined Source file +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/fileA.ts 250 undefined Source file +======== Resolving module './fileB.mjs' from '/home/src/workspaces/project/src/fileA.ts'. ======== +Module resolution kind is not specified, using 'Node16'. +Resolving in CJS mode with conditions 'require', 'types', 'node'. +Loading module as file / folder, candidate module location '/home/src/workspaces/project/src/fileB.mjs', target file types: TypeScript, JavaScript, Declaration. +File name '/home/src/workspaces/project/src/fileB.mjs' has a '.mjs' extension - stripping it. +File '/home/src/workspaces/project/src/fileB.mts' exists - use it as a name resolution result. +======== Module name './fileB.mjs' was successfully resolved to '/home/src/workspaces/project/src/fileB.mts'. ======== +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/fileB.mts 250 undefined Source file +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/randomFile.ts 250 undefined Source file +File '/home/src/workspaces/project/src/a/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/a/randomFile.ts 250 undefined Source file +File '/home/src/workspaces/project/src/b/ba/package.json' does not exist. +File '/home/src/workspaces/project/src/b/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/b/ba/randomFile.ts 250 undefined Source file +File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/b/randomFile.ts 250 undefined Source file +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist. +File '/home/src/workspaces/project/src/c/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/c/ca/randomFile.ts 250 undefined Source file +File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/c/ca/caa/randomFile.ts 250 undefined Source file +File '/home/src/workspaces/project/src/c/ca/caa/caaa/package.json' does not exist. +File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts 250 undefined Source file +File '/home/src/workspaces/project/src/c/cb/package.json' does not exist. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/c/cb/randomFile.ts 250 undefined Source file +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/package.json' does not exist. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/package.json' does not exist. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/package.json' does not exist. +File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist. +File '/home/src/workspaces/project/src/d/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts 250 undefined Source file +File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts 250 undefined Source file +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/d/da/daa/randomFile.ts 250 undefined Source file +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/d/da/randomFile.ts 250 undefined Source file +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist. +File '/home/src/workspaces/project/src/e/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/e/ea/randomFile.ts 250 undefined Source file +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/e/ea/eaa/randomFile.ts 250 undefined Source file +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts 250 undefined Source file +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/package.json' does not exist. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/package.json' does not exist. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/package.json' does not exist. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts 250 undefined Source file +File '/home/src/workspaces/project/src/f/fa/faa/x/y/z/package.json' does not exist. +File '/home/src/workspaces/project/src/f/fa/faa/x/y/package.json' does not exist. +File '/home/src/workspaces/project/src/f/fa/faa/x/package.json' does not exist. +File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist. +File '/home/src/workspaces/project/src/f/fa/package.json' does not exist. +File '/home/src/workspaces/project/src/f/package.json' does not exist. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts 250 undefined Source file +File '/home/src/workspaces/project/src/f/fa/faa/faaa/package.json' does not exist. +File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts 250 undefined Source file +File '/home/src/tslibs/TS/Lib/package.json' does not exist. +File '/home/src/tslibs/TS/package.json' does not exist. +File '/home/src/tslibs/package.json' does not exist. +File '/home/src/package.json' does not exist. +File '/home/package.json' does not exist. +File '/package.json' does not exist. +FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts 250 undefined Source file +FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/tslibs/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/a/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/b/ba/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/b/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/c/ca/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/c/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/c/ca/caa/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/c/ca/caa/caaa/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/c/cb/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/d/da/daa/daaa/x/y/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/d/da/daa/daaa/x/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/d/da/daa/daaa/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/d/da/daa/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/d/da/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/d/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/e/ea/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/e/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/e/ea/eaa/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/e/ea/eaa/eaaa/x/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/f/fa/faa/x/y/z/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/f/fa/faa/x/y/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/f/fa/faa/x/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/f/fa/faa/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/f/fa/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/f/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/f/fa/faa/faaa/package.json 2000 undefined File location affecting resolution +DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/node_modules/@types 1 undefined Type roots +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/node_modules/@types 1 undefined Type roots +DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Type roots +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Type roots +DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Type roots +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Type roots +src/fileA.ts:1:21 - error TS1479: The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import("./fileB.mjs")' call instead. + To convert this file to an ECMAScript module, change its file extension to '.mts', or add the field `"type": "module"` to '/home/src/workspaces/project/package.json'. + +1 import { foo } from "./fileB.mjs"; +   ~~~~~~~~~~~~~ + +../../tslibs/TS/Lib/lib.es2016.full.d.ts + Default library for target 'es2016' +src/main.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/fileB.mts + Imported via "./fileB.mjs" from file 'src/fileA.ts' + Part of 'files' list in tsconfig.json +src/fileA.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/a/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/b/ba/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/b/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/c/ca/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/c/ca/caa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/c/ca/caa/caaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/c/cb/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/d/da/daa/daaa/x/y/z/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/d/da/daa/daaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/d/da/daa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/d/da/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/e/ea/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/e/ea/eaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/e/ea/eaa/eaaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/e/ea/eaa/eaaa/x/y/z/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/f/fa/faa/x/y/z/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/f/fa/faa/faaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +[HH:MM:SS AM] Found 1 error. Watching for file changes. + + + +//// [/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts] *Lib* + +//// [/home/src/workspaces/project/out/main.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/main.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/out/fileB.mjs] +export function foo() { } + + +//// [/home/src/workspaces/project/out/fileB.d.mts] +export declare function foo(): void; + + +//// [/home/src/workspaces/project/out/fileA.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +const fileB_mjs_1 = require("./fileB.mjs"); +(0, fileB_mjs_1.foo)(); + + +//// [/home/src/workspaces/project/out/fileA.d.ts] +export {}; + + +//// [/home/src/workspaces/project/out/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/randomFile.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/out/a/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/a/randomFile.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/out/b/ba/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/b/ba/randomFile.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/out/b/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/b/randomFile.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/out/c/ca/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/c/ca/randomFile.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/out/c/ca/caa/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/c/ca/caa/randomFile.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/out/c/ca/caa/caaa/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/c/ca/caa/caaa/randomFile.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/out/c/cb/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/c/cb/randomFile.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/out/d/da/daa/daaa/x/y/z/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/d/da/daa/daaa/x/y/z/randomFile.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/out/d/da/daa/daaa/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/d/da/daa/daaa/randomFile.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/out/d/da/daa/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/d/da/daa/randomFile.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/out/d/da/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/d/da/randomFile.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/randomFile.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/eaa/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/eaa/randomFile.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/eaa/eaaa/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/eaa/eaaa/randomFile.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/eaa/eaaa/x/y/z/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/eaa/eaaa/x/y/z/randomFile.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/out/f/fa/faa/x/y/z/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/f/fa/faa/x/y/z/randomFile.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/out/f/fa/faa/faaa/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/f/fa/faa/faaa/randomFile.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/out/tsconfig.tsbuildinfo] +{"fileNames":["../../../tslibs/ts/lib/lib.es2016.full.d.ts","../src/main.ts","../src/fileb.mts","../src/filea.ts","../src/randomfile.ts","../src/a/randomfile.ts","../src/b/ba/randomfile.ts","../src/b/randomfile.ts","../src/c/ca/randomfile.ts","../src/c/ca/caa/randomfile.ts","../src/c/ca/caa/caaa/randomfile.ts","../src/c/cb/randomfile.ts","../src/d/da/daa/daaa/x/y/z/randomfile.ts","../src/d/da/daa/daaa/randomfile.ts","../src/d/da/daa/randomfile.ts","../src/d/da/randomfile.ts","../src/e/ea/randomfile.ts","../src/e/ea/eaa/randomfile.ts","../src/e/ea/eaa/eaaa/randomfile.ts","../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts","../src/f/fa/faa/x/y/z/randomfile.ts","../src/f/fa/faa/faaa/randomfile.ts"],"fileIdsList":[[3]],"fileInfos":[{"version":"3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"3524703962-export function foo() {}","signature":"-5677608893-export declare function foo(): void;\n","impliedFormat":99},{"version":"-5325347830-import { foo } from \"./fileB.mjs\";\nfoo();\n","signature":"-3531856636-export {};\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1}],"root":[[2,22]],"options":{"composite":true,"module":100,"outDir":"./","target":3},"referencedMap":[[4,1]],"semanticDiagnosticsPerFile":[[4,[{"start":20,"length":13,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"./fileB.mjs\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}}]]],"latestChangedDtsFile":"./f/fa/faa/faaa/randomFile.d.ts","version":"FakeTSVersion"} + +//// [/home/src/workspaces/project/out/tsconfig.tsbuildinfo.readable.baseline.txt] +{ + "fileNames": [ + "../../../tslibs/ts/lib/lib.es2016.full.d.ts", + "../src/main.ts", + "../src/fileb.mts", + "../src/filea.ts", + "../src/randomfile.ts", + "../src/a/randomfile.ts", + "../src/b/ba/randomfile.ts", + "../src/b/randomfile.ts", + "../src/c/ca/randomfile.ts", + "../src/c/ca/caa/randomfile.ts", + "../src/c/ca/caa/caaa/randomfile.ts", + "../src/c/cb/randomfile.ts", + "../src/d/da/daa/daaa/x/y/z/randomfile.ts", + "../src/d/da/daa/daaa/randomfile.ts", + "../src/d/da/daa/randomfile.ts", + "../src/d/da/randomfile.ts", + "../src/e/ea/randomfile.ts", + "../src/e/ea/eaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts", + "../src/f/fa/faa/x/y/z/randomfile.ts", + "../src/f/fa/faa/faaa/randomfile.ts" + ], + "fileIdsList": [ + [ + "../src/fileb.mts" + ] + ], + "fileInfos": { + "../../../tslibs/ts/lib/lib.es2016.full.d.ts": { + "original": { + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true, + "impliedFormat": 1 + }, + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "signature": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true, + "impliedFormat": "commonjs" + }, + "../src/main.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/fileb.mts": { + "original": { + "version": "3524703962-export function foo() {}", + "signature": "-5677608893-export declare function foo(): void;\n", + "impliedFormat": 99 + }, + "version": "3524703962-export function foo() {}", + "signature": "-5677608893-export declare function foo(): void;\n", + "impliedFormat": "esnext" + }, + "../src/filea.ts": { + "original": { + "version": "-5325347830-import { foo } from \"./fileB.mjs\";\nfoo();\n", + "signature": "-3531856636-export {};\n", + "impliedFormat": 1 + }, + "version": "-5325347830-import { foo } from \"./fileB.mjs\";\nfoo();\n", + "signature": "-3531856636-export {};\n", + "impliedFormat": "commonjs" + }, + "../src/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/a/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/b/ba/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/b/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/c/ca/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/c/ca/caa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/c/ca/caa/caaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/c/cb/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/d/da/daa/daaa/x/y/z/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/d/da/daa/daaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/d/da/daa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/d/da/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/e/ea/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/e/ea/eaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/e/ea/eaa/eaaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/f/fa/faa/x/y/z/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/f/fa/faa/faaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + } + }, + "root": [ + [ + [ + 2, + 22 + ], + [ + "../src/main.ts", + "../src/fileb.mts", + "../src/filea.ts", + "../src/randomfile.ts", + "../src/a/randomfile.ts", + "../src/b/ba/randomfile.ts", + "../src/b/randomfile.ts", + "../src/c/ca/randomfile.ts", + "../src/c/ca/caa/randomfile.ts", + "../src/c/ca/caa/caaa/randomfile.ts", + "../src/c/cb/randomfile.ts", + "../src/d/da/daa/daaa/x/y/z/randomfile.ts", + "../src/d/da/daa/daaa/randomfile.ts", + "../src/d/da/daa/randomfile.ts", + "../src/d/da/randomfile.ts", + "../src/e/ea/randomfile.ts", + "../src/e/ea/eaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts", + "../src/f/fa/faa/x/y/z/randomfile.ts", + "../src/f/fa/faa/faaa/randomfile.ts" + ] + ] + ], + "options": { + "composite": true, + "module": 100, + "outDir": "./", + "target": 3 + }, + "referencedMap": { + "../src/filea.ts": [ + "../src/fileb.mts" + ] + }, + "semanticDiagnosticsPerFile": [ + [ + "../src/filea.ts", + [ + { + "start": 20, + "length": 13, + "code": 1479, + "category": 1, + "messageText": { + "messageText": "The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"./fileB.mjs\")' call instead.", + "category": 1, + "code": 1479, + "next": [ + { + "info": true + } + ] + } + } + ] + ] + ], + "latestChangedDtsFile": "./f/fa/faa/faaa/randomFile.d.ts", + "version": "FakeTSVersion", + "size": 4426 +} + + +PolledWatches:: +/home/src/tslibs/TS/Lib/package.json: *new* + {"pollingInterval":2000} +/home/src/tslibs/TS/package.json: *new* + {"pollingInterval":2000} +/home/src/tslibs/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/node_modules/@types: *new* + {"pollingInterval":500} +/home/src/workspaces/project/node_modules/@types: *new* + {"pollingInterval":500} +/home/src/workspaces/project/src/a/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/b/ba/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/b/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/c/ca/caa/caaa/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/c/ca/caa/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/c/ca/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/c/cb/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/c/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/daa/daaa/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/daa/daaa/x/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/daa/daaa/x/y/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/daa/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/eaa/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/faa/faaa/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/faa/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/faa/x/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/faa/x/y/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/faa/x/y/z/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/node_modules/@types: *new* + {"pollingInterval":500} +/home/src/workspaces/project/src/package.json: *new* + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts: *new* + {} +/home/src/workspaces/project/package.json: *new* + {} +/home/src/workspaces/project/src/a/randomFile.ts: *new* + {} +/home/src/workspaces/project/src/b/ba/randomFile.ts: *new* + {} +/home/src/workspaces/project/src/b/randomFile.ts: *new* + {} +/home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts: *new* + {} +/home/src/workspaces/project/src/c/ca/caa/randomFile.ts: *new* + {} +/home/src/workspaces/project/src/c/ca/randomFile.ts: *new* + {} +/home/src/workspaces/project/src/c/cb/randomFile.ts: *new* + {} +/home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts: *new* + {} +/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts: *new* + {} +/home/src/workspaces/project/src/d/da/daa/randomFile.ts: *new* + {} +/home/src/workspaces/project/src/d/da/randomFile.ts: *new* + {} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts: *new* + {} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts: *new* + {} +/home/src/workspaces/project/src/e/ea/eaa/randomFile.ts: *new* + {} +/home/src/workspaces/project/src/e/ea/randomFile.ts: *new* + {} +/home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts: *new* + {} +/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts: *new* + {} +/home/src/workspaces/project/src/fileA.ts: *new* + {} +/home/src/workspaces/project/src/fileB.mts: *new* + {} +/home/src/workspaces/project/src/main.ts: *new* + {} +/home/src/workspaces/project/src/randomFile.ts: *new* + {} +/home/src/workspaces/project/src/tsconfig.json: *new* + {} + +Program root files: [ + "/home/src/workspaces/project/src/main.ts", + "/home/src/workspaces/project/src/fileA.ts", + "/home/src/workspaces/project/src/fileB.mts", + "/home/src/workspaces/project/src/randomFile.ts", + "/home/src/workspaces/project/src/a/randomFile.ts", + "/home/src/workspaces/project/src/b/ba/randomFile.ts", + "/home/src/workspaces/project/src/b/randomFile.ts", + "/home/src/workspaces/project/src/c/ca/randomFile.ts", + "/home/src/workspaces/project/src/c/ca/caa/randomFile.ts", + "/home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts", + "/home/src/workspaces/project/src/c/cb/randomFile.ts", + "/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts", + "/home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts", + "/home/src/workspaces/project/src/d/da/daa/randomFile.ts", + "/home/src/workspaces/project/src/d/da/randomFile.ts", + "/home/src/workspaces/project/src/e/ea/randomFile.ts", + "/home/src/workspaces/project/src/e/ea/eaa/randomFile.ts", + "/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts", + "/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts", + "/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts", + "/home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts" +] +Program options: { + "target": 3, + "composite": true, + "module": 100, + "outDir": "/home/src/workspaces/project/out", + "traceResolution": true, + "watch": true, + "project": "/home/src/workspaces/project/src/tsconfig.json", + "explainFiles": true, + "extendedDiagnostics": true, + "configFilePath": "/home/src/workspaces/project/src/tsconfig.json" +} +Program structureReused: Not +Program files:: +/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts +/home/src/workspaces/project/src/main.ts +/home/src/workspaces/project/src/fileB.mts +/home/src/workspaces/project/src/fileA.ts +/home/src/workspaces/project/src/randomFile.ts +/home/src/workspaces/project/src/a/randomFile.ts +/home/src/workspaces/project/src/b/ba/randomFile.ts +/home/src/workspaces/project/src/b/randomFile.ts +/home/src/workspaces/project/src/c/ca/randomFile.ts +/home/src/workspaces/project/src/c/ca/caa/randomFile.ts +/home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts +/home/src/workspaces/project/src/c/cb/randomFile.ts +/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts +/home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts +/home/src/workspaces/project/src/d/da/daa/randomFile.ts +/home/src/workspaces/project/src/d/da/randomFile.ts +/home/src/workspaces/project/src/e/ea/randomFile.ts +/home/src/workspaces/project/src/e/ea/eaa/randomFile.ts +/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts +/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts +/home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts + +Semantic diagnostics in builder refreshed for:: +/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts +/home/src/workspaces/project/src/main.ts +/home/src/workspaces/project/src/fileB.mts +/home/src/workspaces/project/src/fileA.ts +/home/src/workspaces/project/src/randomFile.ts +/home/src/workspaces/project/src/a/randomFile.ts +/home/src/workspaces/project/src/b/ba/randomFile.ts +/home/src/workspaces/project/src/b/randomFile.ts +/home/src/workspaces/project/src/c/ca/randomFile.ts +/home/src/workspaces/project/src/c/ca/caa/randomFile.ts +/home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts +/home/src/workspaces/project/src/c/cb/randomFile.ts +/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts +/home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts +/home/src/workspaces/project/src/d/da/daa/randomFile.ts +/home/src/workspaces/project/src/d/da/randomFile.ts +/home/src/workspaces/project/src/e/ea/randomFile.ts +/home/src/workspaces/project/src/e/ea/eaa/randomFile.ts +/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts +/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts +/home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts + +Shape signatures in builder refreshed for:: +/home/src/tslibs/ts/lib/lib.es2016.full.d.ts (used version) +/home/src/workspaces/project/src/main.ts (computed .d.ts during emit) +/home/src/workspaces/project/src/fileb.mts (computed .d.ts during emit) +/home/src/workspaces/project/src/filea.ts (computed .d.ts during emit) +/home/src/workspaces/project/src/randomfile.ts (computed .d.ts during emit) +/home/src/workspaces/project/src/a/randomfile.ts (computed .d.ts during emit) +/home/src/workspaces/project/src/b/ba/randomfile.ts (computed .d.ts during emit) +/home/src/workspaces/project/src/b/randomfile.ts (computed .d.ts during emit) +/home/src/workspaces/project/src/c/ca/randomfile.ts (computed .d.ts during emit) +/home/src/workspaces/project/src/c/ca/caa/randomfile.ts (computed .d.ts during emit) +/home/src/workspaces/project/src/c/ca/caa/caaa/randomfile.ts (computed .d.ts during emit) +/home/src/workspaces/project/src/c/cb/randomfile.ts (computed .d.ts during emit) +/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomfile.ts (computed .d.ts during emit) +/home/src/workspaces/project/src/d/da/daa/daaa/randomfile.ts (computed .d.ts during emit) +/home/src/workspaces/project/src/d/da/daa/randomfile.ts (computed .d.ts during emit) +/home/src/workspaces/project/src/d/da/randomfile.ts (computed .d.ts during emit) +/home/src/workspaces/project/src/e/ea/randomfile.ts (computed .d.ts during emit) +/home/src/workspaces/project/src/e/ea/eaa/randomfile.ts (computed .d.ts during emit) +/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomfile.ts (computed .d.ts during emit) +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomfile.ts (computed .d.ts during emit) +/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomfile.ts (computed .d.ts during emit) +/home/src/workspaces/project/src/f/fa/faa/faaa/randomfile.ts (computed .d.ts during emit) + +exitCode:: ExitStatus.undefined + +Change:: random edit + +Input:: +//// [/home/src/workspaces/project/src/randomFile.ts] +export const x = 10;export const y = 10; + + +Output:: +FileWatcher:: Triggered with /home/src/workspaces/project/src/randomFile.ts 1:: WatchInfo: /home/src/workspaces/project/src/randomFile.ts 250 undefined Source file +Scheduling update +Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/src/randomFile.ts 1:: WatchInfo: /home/src/workspaces/project/src/randomFile.ts 250 undefined Source file + + +Timeout callback:: count: 1 +1: timerToUpdateProgram *new* + +Before running Timeout callback:: count: 1 +1: timerToUpdateProgram + +Host is moving to new time +After running Timeout callback:: count: 0 +Output:: +Synchronizing program +[HH:MM:SS AM] File change detected. Starting incremental compilation... + +CreatingProgramWith:: + roots: ["/home/src/workspaces/project/src/main.ts","/home/src/workspaces/project/src/fileA.ts","/home/src/workspaces/project/src/fileB.mts","/home/src/workspaces/project/src/randomFile.ts","/home/src/workspaces/project/src/a/randomFile.ts","/home/src/workspaces/project/src/b/ba/randomFile.ts","/home/src/workspaces/project/src/b/randomFile.ts","/home/src/workspaces/project/src/c/ca/randomFile.ts","/home/src/workspaces/project/src/c/ca/caa/randomFile.ts","/home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts","/home/src/workspaces/project/src/c/cb/randomFile.ts","/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts","/home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts","/home/src/workspaces/project/src/d/da/daa/randomFile.ts","/home/src/workspaces/project/src/d/da/randomFile.ts","/home/src/workspaces/project/src/e/ea/randomFile.ts","/home/src/workspaces/project/src/e/ea/eaa/randomFile.ts","/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts","/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts","/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts","/home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts"] + options: {"target":3,"composite":true,"module":100,"outDir":"/home/src/workspaces/project/out","traceResolution":true,"watch":true,"project":"/home/src/workspaces/project/src/tsconfig.json","explainFiles":true,"extendedDiagnostics":true,"configFilePath":"/home/src/workspaces/project/src/tsconfig.json"} +File '/home/src/tslibs/TS/Lib/package.json' does not exist according to earlier cached lookups. +File '/home/src/tslibs/TS/package.json' does not exist according to earlier cached lookups. +File '/home/src/tslibs/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/a/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/ba/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/caaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/cb/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/x/y/z/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/x/y/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/x/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/faaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +src/fileA.ts:1:21 - error TS1479: The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import("./fileB.mjs")' call instead. + To convert this file to an ECMAScript module, change its file extension to '.mts', or add the field `"type": "module"` to '/home/src/workspaces/project/package.json'. + +1 import { foo } from "./fileB.mjs"; +   ~~~~~~~~~~~~~ + +../../tslibs/TS/Lib/lib.es2016.full.d.ts + Default library for target 'es2016' +src/main.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/fileB.mts + Imported via "./fileB.mjs" from file 'src/fileA.ts' + Part of 'files' list in tsconfig.json +src/fileA.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/a/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/b/ba/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/b/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/c/ca/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/c/ca/caa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/c/ca/caa/caaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/c/cb/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/d/da/daa/daaa/x/y/z/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/d/da/daa/daaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/d/da/daa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/d/da/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/e/ea/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/e/ea/eaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/e/ea/eaa/eaaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/e/ea/eaa/eaaa/x/y/z/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/f/fa/faa/x/y/z/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/f/fa/faa/faaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +[HH:MM:SS AM] Found 1 error. Watching for file changes. + + + +//// [/home/src/workspaces/project/out/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.y = exports.x = void 0; +exports.x = 10; +exports.y = 10; + + +//// [/home/src/workspaces/project/out/randomFile.d.ts] +export declare const x = 10; +export declare const y = 10; + + +//// [/home/src/workspaces/project/out/tsconfig.tsbuildinfo] +{"fileNames":["../../../tslibs/ts/lib/lib.es2016.full.d.ts","../src/main.ts","../src/fileb.mts","../src/filea.ts","../src/randomfile.ts","../src/a/randomfile.ts","../src/b/ba/randomfile.ts","../src/b/randomfile.ts","../src/c/ca/randomfile.ts","../src/c/ca/caa/randomfile.ts","../src/c/ca/caa/caaa/randomfile.ts","../src/c/cb/randomfile.ts","../src/d/da/daa/daaa/x/y/z/randomfile.ts","../src/d/da/daa/daaa/randomfile.ts","../src/d/da/daa/randomfile.ts","../src/d/da/randomfile.ts","../src/e/ea/randomfile.ts","../src/e/ea/eaa/randomfile.ts","../src/e/ea/eaa/eaaa/randomfile.ts","../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts","../src/f/fa/faa/x/y/z/randomfile.ts","../src/f/fa/faa/faaa/randomfile.ts"],"fileIdsList":[[3]],"fileInfos":[{"version":"3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"3524703962-export function foo() {}","signature":"-5677608893-export declare function foo(): void;\n","impliedFormat":99},{"version":"-5325347830-import { foo } from \"./fileB.mjs\";\nfoo();\n","signature":"-3531856636-export {};\n","impliedFormat":1},{"version":"-9547279430-export const x = 10;export const y = 10;","signature":"-18799098802-export declare const x = 10;\nexport declare const y = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1}],"root":[[2,22]],"options":{"composite":true,"module":100,"outDir":"./","target":3},"referencedMap":[[4,1]],"semanticDiagnosticsPerFile":[[4,[{"start":20,"length":13,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"./fileB.mjs\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}}]]],"latestChangedDtsFile":"./randomFile.d.ts","version":"FakeTSVersion"} + +//// [/home/src/workspaces/project/out/tsconfig.tsbuildinfo.readable.baseline.txt] +{ + "fileNames": [ + "../../../tslibs/ts/lib/lib.es2016.full.d.ts", + "../src/main.ts", + "../src/fileb.mts", + "../src/filea.ts", + "../src/randomfile.ts", + "../src/a/randomfile.ts", + "../src/b/ba/randomfile.ts", + "../src/b/randomfile.ts", + "../src/c/ca/randomfile.ts", + "../src/c/ca/caa/randomfile.ts", + "../src/c/ca/caa/caaa/randomfile.ts", + "../src/c/cb/randomfile.ts", + "../src/d/da/daa/daaa/x/y/z/randomfile.ts", + "../src/d/da/daa/daaa/randomfile.ts", + "../src/d/da/daa/randomfile.ts", + "../src/d/da/randomfile.ts", + "../src/e/ea/randomfile.ts", + "../src/e/ea/eaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts", + "../src/f/fa/faa/x/y/z/randomfile.ts", + "../src/f/fa/faa/faaa/randomfile.ts" + ], + "fileIdsList": [ + [ + "../src/fileb.mts" + ] + ], + "fileInfos": { + "../../../tslibs/ts/lib/lib.es2016.full.d.ts": { + "original": { + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true, + "impliedFormat": 1 + }, + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "signature": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true, + "impliedFormat": "commonjs" + }, + "../src/main.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/fileb.mts": { + "original": { + "version": "3524703962-export function foo() {}", + "signature": "-5677608893-export declare function foo(): void;\n", + "impliedFormat": 99 + }, + "version": "3524703962-export function foo() {}", + "signature": "-5677608893-export declare function foo(): void;\n", + "impliedFormat": "esnext" + }, + "../src/filea.ts": { + "original": { + "version": "-5325347830-import { foo } from \"./fileB.mjs\";\nfoo();\n", + "signature": "-3531856636-export {};\n", + "impliedFormat": 1 + }, + "version": "-5325347830-import { foo } from \"./fileB.mjs\";\nfoo();\n", + "signature": "-3531856636-export {};\n", + "impliedFormat": "commonjs" + }, + "../src/randomfile.ts": { + "original": { + "version": "-9547279430-export const x = 10;export const y = 10;", + "signature": "-18799098802-export declare const x = 10;\nexport declare const y = 10;\n", + "impliedFormat": 1 + }, + "version": "-9547279430-export const x = 10;export const y = 10;", + "signature": "-18799098802-export declare const x = 10;\nexport declare const y = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/a/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/b/ba/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/b/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/c/ca/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/c/ca/caa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/c/ca/caa/caaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/c/cb/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/d/da/daa/daaa/x/y/z/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/d/da/daa/daaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/d/da/daa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/d/da/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/e/ea/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/e/ea/eaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/e/ea/eaa/eaaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/f/fa/faa/x/y/z/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/f/fa/faa/faaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + } + }, + "root": [ + [ + [ + 2, + 22 + ], + [ + "../src/main.ts", + "../src/fileb.mts", + "../src/filea.ts", + "../src/randomfile.ts", + "../src/a/randomfile.ts", + "../src/b/ba/randomfile.ts", + "../src/b/randomfile.ts", + "../src/c/ca/randomfile.ts", + "../src/c/ca/caa/randomfile.ts", + "../src/c/ca/caa/caaa/randomfile.ts", + "../src/c/cb/randomfile.ts", + "../src/d/da/daa/daaa/x/y/z/randomfile.ts", + "../src/d/da/daa/daaa/randomfile.ts", + "../src/d/da/daa/randomfile.ts", + "../src/d/da/randomfile.ts", + "../src/e/ea/randomfile.ts", + "../src/e/ea/eaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts", + "../src/f/fa/faa/x/y/z/randomfile.ts", + "../src/f/fa/faa/faaa/randomfile.ts" + ] + ] + ], + "options": { + "composite": true, + "module": 100, + "outDir": "./", + "target": 3 + }, + "referencedMap": { + "../src/filea.ts": [ + "../src/fileb.mts" + ] + }, + "semanticDiagnosticsPerFile": [ + [ + "../src/filea.ts", + [ + { + "start": 20, + "length": 13, + "code": 1479, + "category": 1, + "messageText": { + "messageText": "The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"./fileB.mjs\")' call instead.", + "category": 1, + "code": 1479, + "next": [ + { + "info": true + } + ] + } + } + ] + ] + ], + "latestChangedDtsFile": "./randomFile.d.ts", + "version": "FakeTSVersion", + "size": 4462 +} + + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + + +Program root files: [ + "/home/src/workspaces/project/src/main.ts", + "/home/src/workspaces/project/src/fileA.ts", + "/home/src/workspaces/project/src/fileB.mts", + "/home/src/workspaces/project/src/randomFile.ts", + "/home/src/workspaces/project/src/a/randomFile.ts", + "/home/src/workspaces/project/src/b/ba/randomFile.ts", + "/home/src/workspaces/project/src/b/randomFile.ts", + "/home/src/workspaces/project/src/c/ca/randomFile.ts", + "/home/src/workspaces/project/src/c/ca/caa/randomFile.ts", + "/home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts", + "/home/src/workspaces/project/src/c/cb/randomFile.ts", + "/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts", + "/home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts", + "/home/src/workspaces/project/src/d/da/daa/randomFile.ts", + "/home/src/workspaces/project/src/d/da/randomFile.ts", + "/home/src/workspaces/project/src/e/ea/randomFile.ts", + "/home/src/workspaces/project/src/e/ea/eaa/randomFile.ts", + "/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts", + "/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts", + "/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts", + "/home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts" +] +Program options: { + "target": 3, + "composite": true, + "module": 100, + "outDir": "/home/src/workspaces/project/out", + "traceResolution": true, + "watch": true, + "project": "/home/src/workspaces/project/src/tsconfig.json", + "explainFiles": true, + "extendedDiagnostics": true, + "configFilePath": "/home/src/workspaces/project/src/tsconfig.json" +} +Program structureReused: Completely +Program files:: +/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts +/home/src/workspaces/project/src/main.ts +/home/src/workspaces/project/src/fileB.mts +/home/src/workspaces/project/src/fileA.ts +/home/src/workspaces/project/src/randomFile.ts +/home/src/workspaces/project/src/a/randomFile.ts +/home/src/workspaces/project/src/b/ba/randomFile.ts +/home/src/workspaces/project/src/b/randomFile.ts +/home/src/workspaces/project/src/c/ca/randomFile.ts +/home/src/workspaces/project/src/c/ca/caa/randomFile.ts +/home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts +/home/src/workspaces/project/src/c/cb/randomFile.ts +/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts +/home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts +/home/src/workspaces/project/src/d/da/daa/randomFile.ts +/home/src/workspaces/project/src/d/da/randomFile.ts +/home/src/workspaces/project/src/e/ea/randomFile.ts +/home/src/workspaces/project/src/e/ea/eaa/randomFile.ts +/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts +/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts +/home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts + +Semantic diagnostics in builder refreshed for:: +/home/src/workspaces/project/src/randomFile.ts + +Shape signatures in builder refreshed for:: +/home/src/workspaces/project/src/randomfile.ts (computed .d.ts) + +exitCode:: ExitStatus.undefined + +Change:: Modify package json file to add type module + +Input:: +//// [/home/src/workspaces/project/package.json] +{ + "name": "app", + "version": "1.0.0", + "type": "module" +} + + +Output:: +FileWatcher:: Triggered with /home/src/workspaces/project/package.json 1:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined File location affecting resolution +Scheduling invalidateFailedLookup +Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/package.json 1:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined File location affecting resolution + + +Timeout callback:: count: 1 +2: timerToInvalidateFailedLookupResolutions *new* + +Before running Timeout callback:: count: 1 +2: timerToInvalidateFailedLookupResolutions + +Host is moving to new time +After running Timeout callback:: count: 1 +Output:: +Scheduling update + + + +Timeout callback:: count: 1 +3: timerToUpdateProgram *new* + +Before running Timeout callback:: count: 1 +3: timerToUpdateProgram + +Host is moving to new time +After running Timeout callback:: count: 0 +Output:: +Synchronizing program +[HH:MM:SS AM] File change detected. Starting incremental compilation... + +CreatingProgramWith:: + roots: ["/home/src/workspaces/project/src/main.ts","/home/src/workspaces/project/src/fileA.ts","/home/src/workspaces/project/src/fileB.mts","/home/src/workspaces/project/src/randomFile.ts","/home/src/workspaces/project/src/a/randomFile.ts","/home/src/workspaces/project/src/b/ba/randomFile.ts","/home/src/workspaces/project/src/b/randomFile.ts","/home/src/workspaces/project/src/c/ca/randomFile.ts","/home/src/workspaces/project/src/c/ca/caa/randomFile.ts","/home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts","/home/src/workspaces/project/src/c/cb/randomFile.ts","/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts","/home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts","/home/src/workspaces/project/src/d/da/daa/randomFile.ts","/home/src/workspaces/project/src/d/da/randomFile.ts","/home/src/workspaces/project/src/e/ea/randomFile.ts","/home/src/workspaces/project/src/e/ea/eaa/randomFile.ts","/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts","/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts","/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts","/home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts"] + options: {"target":3,"composite":true,"module":100,"outDir":"/home/src/workspaces/project/out","traceResolution":true,"watch":true,"project":"/home/src/workspaces/project/src/tsconfig.json","explainFiles":true,"extendedDiagnostics":true,"configFilePath":"/home/src/workspaces/project/src/tsconfig.json"} +File '/home/src/tslibs/TS/Lib/package.json' does not exist according to earlier cached lookups. +File '/home/src/tslibs/TS/package.json' does not exist according to earlier cached lookups. +File '/home/src/tslibs/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Found 'package.json' at '/home/src/workspaces/project/package.json'. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/a/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/ba/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/caaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/cb/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/x/y/z/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/x/y/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/x/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/faaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +======== Resolving module './fileB.mjs' from '/home/src/workspaces/project/src/fileA.ts'. ======== +Module resolution kind is not specified, using 'Node16'. +Resolving in ESM mode with conditions 'import', 'types', 'node'. +Loading module as file / folder, candidate module location '/home/src/workspaces/project/src/fileB.mjs', target file types: TypeScript, JavaScript, Declaration. +File name '/home/src/workspaces/project/src/fileB.mjs' has a '.mjs' extension - stripping it. +File '/home/src/workspaces/project/src/fileB.mts' exists - use it as a name resolution result. +======== Module name './fileB.mjs' was successfully resolved to '/home/src/workspaces/project/src/fileB.mts'. ======== +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/a/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/ba/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/caaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/cb/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/x/y/z/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/x/y/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/x/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/faaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/tslibs/TS/Lib/package.json' does not exist according to earlier cached lookups. +File '/home/src/tslibs/TS/package.json' does not exist according to earlier cached lookups. +File '/home/src/tslibs/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +../../tslibs/TS/Lib/lib.es2016.full.d.ts + Default library for target 'es2016' +src/main.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/fileB.mts + Imported via "./fileB.mjs" from file 'src/fileA.ts' + Part of 'files' list in tsconfig.json +src/fileA.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/a/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/b/ba/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/b/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/c/ca/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/c/ca/caa/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/c/ca/caa/caaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/c/cb/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/d/da/daa/daaa/x/y/z/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/d/da/daa/daaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/d/da/daa/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/d/da/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/e/ea/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/e/ea/eaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/e/ea/eaa/eaaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/e/ea/eaa/eaaa/x/y/z/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/f/fa/faa/x/y/z/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/f/fa/faa/faaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +[HH:MM:SS AM] Found 0 errors. Watching for file changes. + + + +//// [/home/src/workspaces/project/out/main.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/fileA.js] +import { foo } from "./fileB.mjs"; +foo(); + + +//// [/home/src/workspaces/project/out/randomFile.js] +export const x = 10; +export const y = 10; + + +//// [/home/src/workspaces/project/out/a/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/b/ba/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/b/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/c/ca/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/c/ca/caa/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/c/ca/caa/caaa/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/c/cb/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/d/da/daa/daaa/x/y/z/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/d/da/daa/daaa/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/d/da/daa/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/d/da/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/eaa/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/eaa/eaaa/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/eaa/eaaa/x/y/z/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/f/fa/faa/x/y/z/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/f/fa/faa/faaa/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/tsconfig.tsbuildinfo] +{"fileNames":["../../../tslibs/ts/lib/lib.es2016.full.d.ts","../src/main.ts","../src/fileb.mts","../src/filea.ts","../src/randomfile.ts","../src/a/randomfile.ts","../src/b/ba/randomfile.ts","../src/b/randomfile.ts","../src/c/ca/randomfile.ts","../src/c/ca/caa/randomfile.ts","../src/c/ca/caa/caaa/randomfile.ts","../src/c/cb/randomfile.ts","../src/d/da/daa/daaa/x/y/z/randomfile.ts","../src/d/da/daa/daaa/randomfile.ts","../src/d/da/daa/randomfile.ts","../src/d/da/randomfile.ts","../src/e/ea/randomfile.ts","../src/e/ea/eaa/randomfile.ts","../src/e/ea/eaa/eaaa/randomfile.ts","../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts","../src/f/fa/faa/x/y/z/randomfile.ts","../src/f/fa/faa/faaa/randomfile.ts"],"fileIdsList":[[3]],"fileInfos":[{"version":"3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"3524703962-export function foo() {}","signature":"-5677608893-export declare function foo(): void;\n","impliedFormat":99},{"version":"-5325347830-import { foo } from \"./fileB.mjs\";\nfoo();\n","signature":"-3531856636-export {};\n","impliedFormat":99},{"version":"-9547279430-export const x = 10;export const y = 10;","signature":"-18799098802-export declare const x = 10;\nexport declare const y = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99}],"root":[[2,22]],"options":{"composite":true,"module":100,"outDir":"./","target":3},"referencedMap":[[4,1]],"latestChangedDtsFile":"./randomFile.d.ts","version":"FakeTSVersion"} + +//// [/home/src/workspaces/project/out/tsconfig.tsbuildinfo.readable.baseline.txt] +{ + "fileNames": [ + "../../../tslibs/ts/lib/lib.es2016.full.d.ts", + "../src/main.ts", + "../src/fileb.mts", + "../src/filea.ts", + "../src/randomfile.ts", + "../src/a/randomfile.ts", + "../src/b/ba/randomfile.ts", + "../src/b/randomfile.ts", + "../src/c/ca/randomfile.ts", + "../src/c/ca/caa/randomfile.ts", + "../src/c/ca/caa/caaa/randomfile.ts", + "../src/c/cb/randomfile.ts", + "../src/d/da/daa/daaa/x/y/z/randomfile.ts", + "../src/d/da/daa/daaa/randomfile.ts", + "../src/d/da/daa/randomfile.ts", + "../src/d/da/randomfile.ts", + "../src/e/ea/randomfile.ts", + "../src/e/ea/eaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts", + "../src/f/fa/faa/x/y/z/randomfile.ts", + "../src/f/fa/faa/faaa/randomfile.ts" + ], + "fileIdsList": [ + [ + "../src/fileb.mts" + ] + ], + "fileInfos": { + "../../../tslibs/ts/lib/lib.es2016.full.d.ts": { + "original": { + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true, + "impliedFormat": 1 + }, + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "signature": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true, + "impliedFormat": "commonjs" + }, + "../src/main.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/fileb.mts": { + "original": { + "version": "3524703962-export function foo() {}", + "signature": "-5677608893-export declare function foo(): void;\n", + "impliedFormat": 99 + }, + "version": "3524703962-export function foo() {}", + "signature": "-5677608893-export declare function foo(): void;\n", + "impliedFormat": "esnext" + }, + "../src/filea.ts": { + "original": { + "version": "-5325347830-import { foo } from \"./fileB.mjs\";\nfoo();\n", + "signature": "-3531856636-export {};\n", + "impliedFormat": 99 + }, + "version": "-5325347830-import { foo } from \"./fileB.mjs\";\nfoo();\n", + "signature": "-3531856636-export {};\n", + "impliedFormat": "esnext" + }, + "../src/randomfile.ts": { + "original": { + "version": "-9547279430-export const x = 10;export const y = 10;", + "signature": "-18799098802-export declare const x = 10;\nexport declare const y = 10;\n", + "impliedFormat": 99 + }, + "version": "-9547279430-export const x = 10;export const y = 10;", + "signature": "-18799098802-export declare const x = 10;\nexport declare const y = 10;\n", + "impliedFormat": "esnext" + }, + "../src/a/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/b/ba/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/b/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/c/ca/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/c/ca/caa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/c/ca/caa/caaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/c/cb/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/d/da/daa/daaa/x/y/z/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/d/da/daa/daaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/d/da/daa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/d/da/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/e/ea/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/e/ea/eaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/e/ea/eaa/eaaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/f/fa/faa/x/y/z/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/f/fa/faa/faaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + } + }, + "root": [ + [ + [ + 2, + 22 + ], + [ + "../src/main.ts", + "../src/fileb.mts", + "../src/filea.ts", + "../src/randomfile.ts", + "../src/a/randomfile.ts", + "../src/b/ba/randomfile.ts", + "../src/b/randomfile.ts", + "../src/c/ca/randomfile.ts", + "../src/c/ca/caa/randomfile.ts", + "../src/c/ca/caa/caaa/randomfile.ts", + "../src/c/cb/randomfile.ts", + "../src/d/da/daa/daaa/x/y/z/randomfile.ts", + "../src/d/da/daa/daaa/randomfile.ts", + "../src/d/da/daa/randomfile.ts", + "../src/d/da/randomfile.ts", + "../src/e/ea/randomfile.ts", + "../src/e/ea/eaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts", + "../src/f/fa/faa/x/y/z/randomfile.ts", + "../src/f/fa/faa/faaa/randomfile.ts" + ] + ] + ], + "options": { + "composite": true, + "module": 100, + "outDir": "./", + "target": 3 + }, + "referencedMap": { + "../src/filea.ts": [ + "../src/fileb.mts" + ] + }, + "latestChangedDtsFile": "./randomFile.d.ts", + "version": "FakeTSVersion", + "size": 4074 +} + + + +Program root files: [ + "/home/src/workspaces/project/src/main.ts", + "/home/src/workspaces/project/src/fileA.ts", + "/home/src/workspaces/project/src/fileB.mts", + "/home/src/workspaces/project/src/randomFile.ts", + "/home/src/workspaces/project/src/a/randomFile.ts", + "/home/src/workspaces/project/src/b/ba/randomFile.ts", + "/home/src/workspaces/project/src/b/randomFile.ts", + "/home/src/workspaces/project/src/c/ca/randomFile.ts", + "/home/src/workspaces/project/src/c/ca/caa/randomFile.ts", + "/home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts", + "/home/src/workspaces/project/src/c/cb/randomFile.ts", + "/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts", + "/home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts", + "/home/src/workspaces/project/src/d/da/daa/randomFile.ts", + "/home/src/workspaces/project/src/d/da/randomFile.ts", + "/home/src/workspaces/project/src/e/ea/randomFile.ts", + "/home/src/workspaces/project/src/e/ea/eaa/randomFile.ts", + "/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts", + "/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts", + "/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts", + "/home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts" +] +Program options: { + "target": 3, + "composite": true, + "module": 100, + "outDir": "/home/src/workspaces/project/out", + "traceResolution": true, + "watch": true, + "project": "/home/src/workspaces/project/src/tsconfig.json", + "explainFiles": true, + "extendedDiagnostics": true, + "configFilePath": "/home/src/workspaces/project/src/tsconfig.json" +} +Program structureReused: SafeModules +Program files:: +/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts +/home/src/workspaces/project/src/main.ts +/home/src/workspaces/project/src/fileB.mts +/home/src/workspaces/project/src/fileA.ts +/home/src/workspaces/project/src/randomFile.ts +/home/src/workspaces/project/src/a/randomFile.ts +/home/src/workspaces/project/src/b/ba/randomFile.ts +/home/src/workspaces/project/src/b/randomFile.ts +/home/src/workspaces/project/src/c/ca/randomFile.ts +/home/src/workspaces/project/src/c/ca/caa/randomFile.ts +/home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts +/home/src/workspaces/project/src/c/cb/randomFile.ts +/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts +/home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts +/home/src/workspaces/project/src/d/da/daa/randomFile.ts +/home/src/workspaces/project/src/d/da/randomFile.ts +/home/src/workspaces/project/src/e/ea/randomFile.ts +/home/src/workspaces/project/src/e/ea/eaa/randomFile.ts +/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts +/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts +/home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts + +Semantic diagnostics in builder refreshed for:: +/home/src/workspaces/project/src/main.ts +/home/src/workspaces/project/src/fileA.ts +/home/src/workspaces/project/src/randomFile.ts +/home/src/workspaces/project/src/a/randomFile.ts +/home/src/workspaces/project/src/b/ba/randomFile.ts +/home/src/workspaces/project/src/b/randomFile.ts +/home/src/workspaces/project/src/c/ca/randomFile.ts +/home/src/workspaces/project/src/c/ca/caa/randomFile.ts +/home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts +/home/src/workspaces/project/src/c/cb/randomFile.ts +/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts +/home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts +/home/src/workspaces/project/src/d/da/daa/randomFile.ts +/home/src/workspaces/project/src/d/da/randomFile.ts +/home/src/workspaces/project/src/e/ea/randomFile.ts +/home/src/workspaces/project/src/e/ea/eaa/randomFile.ts +/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts +/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts +/home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts + +Shape signatures in builder refreshed for:: +/home/src/workspaces/project/src/main.ts (computed .d.ts) +/home/src/workspaces/project/src/filea.ts (computed .d.ts) +/home/src/workspaces/project/src/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/a/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/b/ba/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/b/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/c/ca/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/c/ca/caa/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/c/ca/caa/caaa/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/c/cb/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/d/da/daa/daaa/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/d/da/daa/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/d/da/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/e/ea/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/e/ea/eaa/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/f/fa/faa/faaa/randomfile.ts (computed .d.ts) + +exitCode:: ExitStatus.undefined + +Change:: Modify package.json file to remove type module + +Input:: +//// [/home/src/workspaces/project/package.json] +{ + "name": "app", + "version": "1.0.0" +} + + +Output:: +FileWatcher:: Triggered with /home/src/workspaces/project/package.json 1:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined File location affecting resolution +Scheduling invalidateFailedLookup +Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/package.json 1:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined File location affecting resolution + + +Timeout callback:: count: 1 +4: timerToInvalidateFailedLookupResolutions *new* + +Before running Timeout callback:: count: 1 +4: timerToInvalidateFailedLookupResolutions + +Host is moving to new time +After running Timeout callback:: count: 1 +Output:: +Scheduling update + + + +Timeout callback:: count: 1 +5: timerToUpdateProgram *new* + +Before running Timeout callback:: count: 1 +5: timerToUpdateProgram + +Host is moving to new time +After running Timeout callback:: count: 0 +Output:: +Synchronizing program +[HH:MM:SS AM] File change detected. Starting incremental compilation... + +CreatingProgramWith:: + roots: ["/home/src/workspaces/project/src/main.ts","/home/src/workspaces/project/src/fileA.ts","/home/src/workspaces/project/src/fileB.mts","/home/src/workspaces/project/src/randomFile.ts","/home/src/workspaces/project/src/a/randomFile.ts","/home/src/workspaces/project/src/b/ba/randomFile.ts","/home/src/workspaces/project/src/b/randomFile.ts","/home/src/workspaces/project/src/c/ca/randomFile.ts","/home/src/workspaces/project/src/c/ca/caa/randomFile.ts","/home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts","/home/src/workspaces/project/src/c/cb/randomFile.ts","/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts","/home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts","/home/src/workspaces/project/src/d/da/daa/randomFile.ts","/home/src/workspaces/project/src/d/da/randomFile.ts","/home/src/workspaces/project/src/e/ea/randomFile.ts","/home/src/workspaces/project/src/e/ea/eaa/randomFile.ts","/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts","/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts","/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts","/home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts"] + options: {"target":3,"composite":true,"module":100,"outDir":"/home/src/workspaces/project/out","traceResolution":true,"watch":true,"project":"/home/src/workspaces/project/src/tsconfig.json","explainFiles":true,"extendedDiagnostics":true,"configFilePath":"/home/src/workspaces/project/src/tsconfig.json"} +File '/home/src/tslibs/TS/Lib/package.json' does not exist according to earlier cached lookups. +File '/home/src/tslibs/TS/package.json' does not exist according to earlier cached lookups. +File '/home/src/tslibs/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Found 'package.json' at '/home/src/workspaces/project/package.json'. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/a/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/ba/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/caaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/cb/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/x/y/z/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/x/y/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/x/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/faaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +======== Resolving module './fileB.mjs' from '/home/src/workspaces/project/src/fileA.ts'. ======== +Module resolution kind is not specified, using 'Node16'. +Resolving in CJS mode with conditions 'require', 'types', 'node'. +Loading module as file / folder, candidate module location '/home/src/workspaces/project/src/fileB.mjs', target file types: TypeScript, JavaScript, Declaration. +File name '/home/src/workspaces/project/src/fileB.mjs' has a '.mjs' extension - stripping it. +File '/home/src/workspaces/project/src/fileB.mts' exists - use it as a name resolution result. +======== Module name './fileB.mjs' was successfully resolved to '/home/src/workspaces/project/src/fileB.mts'. ======== +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/a/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/ba/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/caaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/cb/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/x/y/z/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/x/y/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/x/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/faaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/tslibs/TS/Lib/package.json' does not exist according to earlier cached lookups. +File '/home/src/tslibs/TS/package.json' does not exist according to earlier cached lookups. +File '/home/src/tslibs/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +src/fileA.ts:1:21 - error TS1479: The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import("./fileB.mjs")' call instead. + To convert this file to an ECMAScript module, change its file extension to '.mts', or add the field `"type": "module"` to '/home/src/workspaces/project/package.json'. + +1 import { foo } from "./fileB.mjs"; +   ~~~~~~~~~~~~~ + +../../tslibs/TS/Lib/lib.es2016.full.d.ts + Default library for target 'es2016' +src/main.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/fileB.mts + Imported via "./fileB.mjs" from file 'src/fileA.ts' + Part of 'files' list in tsconfig.json +src/fileA.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/a/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/b/ba/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/b/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/c/ca/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/c/ca/caa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/c/ca/caa/caaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/c/cb/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/d/da/daa/daaa/x/y/z/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/d/da/daa/daaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/d/da/daa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/d/da/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/e/ea/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/e/ea/eaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/e/ea/eaa/eaaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/e/ea/eaa/eaaa/x/y/z/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/f/fa/faa/x/y/z/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +src/f/fa/faa/faaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' does not have field "type" +[HH:MM:SS AM] Found 1 error. Watching for file changes. + + + +//// [/home/src/workspaces/project/out/main.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/fileA.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +const fileB_mjs_1 = require("./fileB.mjs"); +(0, fileB_mjs_1.foo)(); + + +//// [/home/src/workspaces/project/out/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.y = exports.x = void 0; +exports.x = 10; +exports.y = 10; + + +//// [/home/src/workspaces/project/out/a/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/b/ba/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/b/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/c/ca/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/c/ca/caa/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/c/ca/caa/caaa/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/c/cb/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/d/da/daa/daaa/x/y/z/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/d/da/daa/daaa/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/d/da/daa/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/d/da/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/eaa/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/eaa/eaaa/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/eaa/eaaa/x/y/z/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/f/fa/faa/x/y/z/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/f/fa/faa/faaa/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/tsconfig.tsbuildinfo] +{"fileNames":["../../../tslibs/ts/lib/lib.es2016.full.d.ts","../src/main.ts","../src/fileb.mts","../src/filea.ts","../src/randomfile.ts","../src/a/randomfile.ts","../src/b/ba/randomfile.ts","../src/b/randomfile.ts","../src/c/ca/randomfile.ts","../src/c/ca/caa/randomfile.ts","../src/c/ca/caa/caaa/randomfile.ts","../src/c/cb/randomfile.ts","../src/d/da/daa/daaa/x/y/z/randomfile.ts","../src/d/da/daa/daaa/randomfile.ts","../src/d/da/daa/randomfile.ts","../src/d/da/randomfile.ts","../src/e/ea/randomfile.ts","../src/e/ea/eaa/randomfile.ts","../src/e/ea/eaa/eaaa/randomfile.ts","../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts","../src/f/fa/faa/x/y/z/randomfile.ts","../src/f/fa/faa/faaa/randomfile.ts"],"fileIdsList":[[3]],"fileInfos":[{"version":"3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"3524703962-export function foo() {}","signature":"-5677608893-export declare function foo(): void;\n","impliedFormat":99},{"version":"-5325347830-import { foo } from \"./fileB.mjs\";\nfoo();\n","signature":"-3531856636-export {};\n","impliedFormat":1},{"version":"-9547279430-export const x = 10;export const y = 10;","signature":"-18799098802-export declare const x = 10;\nexport declare const y = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1}],"root":[[2,22]],"options":{"composite":true,"module":100,"outDir":"./","target":3},"referencedMap":[[4,1]],"semanticDiagnosticsPerFile":[[4,[{"start":20,"length":13,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"./fileB.mjs\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}}]]],"latestChangedDtsFile":"./randomFile.d.ts","version":"FakeTSVersion"} + +//// [/home/src/workspaces/project/out/tsconfig.tsbuildinfo.readable.baseline.txt] +{ + "fileNames": [ + "../../../tslibs/ts/lib/lib.es2016.full.d.ts", + "../src/main.ts", + "../src/fileb.mts", + "../src/filea.ts", + "../src/randomfile.ts", + "../src/a/randomfile.ts", + "../src/b/ba/randomfile.ts", + "../src/b/randomfile.ts", + "../src/c/ca/randomfile.ts", + "../src/c/ca/caa/randomfile.ts", + "../src/c/ca/caa/caaa/randomfile.ts", + "../src/c/cb/randomfile.ts", + "../src/d/da/daa/daaa/x/y/z/randomfile.ts", + "../src/d/da/daa/daaa/randomfile.ts", + "../src/d/da/daa/randomfile.ts", + "../src/d/da/randomfile.ts", + "../src/e/ea/randomfile.ts", + "../src/e/ea/eaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts", + "../src/f/fa/faa/x/y/z/randomfile.ts", + "../src/f/fa/faa/faaa/randomfile.ts" + ], + "fileIdsList": [ + [ + "../src/fileb.mts" + ] + ], + "fileInfos": { + "../../../tslibs/ts/lib/lib.es2016.full.d.ts": { + "original": { + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true, + "impliedFormat": 1 + }, + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "signature": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true, + "impliedFormat": "commonjs" + }, + "../src/main.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/fileb.mts": { + "original": { + "version": "3524703962-export function foo() {}", + "signature": "-5677608893-export declare function foo(): void;\n", + "impliedFormat": 99 + }, + "version": "3524703962-export function foo() {}", + "signature": "-5677608893-export declare function foo(): void;\n", + "impliedFormat": "esnext" + }, + "../src/filea.ts": { + "original": { + "version": "-5325347830-import { foo } from \"./fileB.mjs\";\nfoo();\n", + "signature": "-3531856636-export {};\n", + "impliedFormat": 1 + }, + "version": "-5325347830-import { foo } from \"./fileB.mjs\";\nfoo();\n", + "signature": "-3531856636-export {};\n", + "impliedFormat": "commonjs" + }, + "../src/randomfile.ts": { + "original": { + "version": "-9547279430-export const x = 10;export const y = 10;", + "signature": "-18799098802-export declare const x = 10;\nexport declare const y = 10;\n", + "impliedFormat": 1 + }, + "version": "-9547279430-export const x = 10;export const y = 10;", + "signature": "-18799098802-export declare const x = 10;\nexport declare const y = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/a/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/b/ba/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/b/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/c/ca/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/c/ca/caa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/c/ca/caa/caaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/c/cb/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/d/da/daa/daaa/x/y/z/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/d/da/daa/daaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/d/da/daa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/d/da/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/e/ea/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/e/ea/eaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/e/ea/eaa/eaaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/f/fa/faa/x/y/z/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/f/fa/faa/faaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + } + }, + "root": [ + [ + [ + 2, + 22 + ], + [ + "../src/main.ts", + "../src/fileb.mts", + "../src/filea.ts", + "../src/randomfile.ts", + "../src/a/randomfile.ts", + "../src/b/ba/randomfile.ts", + "../src/b/randomfile.ts", + "../src/c/ca/randomfile.ts", + "../src/c/ca/caa/randomfile.ts", + "../src/c/ca/caa/caaa/randomfile.ts", + "../src/c/cb/randomfile.ts", + "../src/d/da/daa/daaa/x/y/z/randomfile.ts", + "../src/d/da/daa/daaa/randomfile.ts", + "../src/d/da/daa/randomfile.ts", + "../src/d/da/randomfile.ts", + "../src/e/ea/randomfile.ts", + "../src/e/ea/eaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts", + "../src/f/fa/faa/x/y/z/randomfile.ts", + "../src/f/fa/faa/faaa/randomfile.ts" + ] + ] + ], + "options": { + "composite": true, + "module": 100, + "outDir": "./", + "target": 3 + }, + "referencedMap": { + "../src/filea.ts": [ + "../src/fileb.mts" + ] + }, + "semanticDiagnosticsPerFile": [ + [ + "../src/filea.ts", + [ + { + "start": 20, + "length": 13, + "code": 1479, + "category": 1, + "messageText": { + "messageText": "The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"./fileB.mjs\")' call instead.", + "category": 1, + "code": 1479, + "next": [ + { + "info": true + } + ] + } + } + ] + ] + ], + "latestChangedDtsFile": "./randomFile.d.ts", + "version": "FakeTSVersion", + "size": 4462 +} + + + +Program root files: [ + "/home/src/workspaces/project/src/main.ts", + "/home/src/workspaces/project/src/fileA.ts", + "/home/src/workspaces/project/src/fileB.mts", + "/home/src/workspaces/project/src/randomFile.ts", + "/home/src/workspaces/project/src/a/randomFile.ts", + "/home/src/workspaces/project/src/b/ba/randomFile.ts", + "/home/src/workspaces/project/src/b/randomFile.ts", + "/home/src/workspaces/project/src/c/ca/randomFile.ts", + "/home/src/workspaces/project/src/c/ca/caa/randomFile.ts", + "/home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts", + "/home/src/workspaces/project/src/c/cb/randomFile.ts", + "/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts", + "/home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts", + "/home/src/workspaces/project/src/d/da/daa/randomFile.ts", + "/home/src/workspaces/project/src/d/da/randomFile.ts", + "/home/src/workspaces/project/src/e/ea/randomFile.ts", + "/home/src/workspaces/project/src/e/ea/eaa/randomFile.ts", + "/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts", + "/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts", + "/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts", + "/home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts" +] +Program options: { + "target": 3, + "composite": true, + "module": 100, + "outDir": "/home/src/workspaces/project/out", + "traceResolution": true, + "watch": true, + "project": "/home/src/workspaces/project/src/tsconfig.json", + "explainFiles": true, + "extendedDiagnostics": true, + "configFilePath": "/home/src/workspaces/project/src/tsconfig.json" +} +Program structureReused: SafeModules +Program files:: +/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts +/home/src/workspaces/project/src/main.ts +/home/src/workspaces/project/src/fileB.mts +/home/src/workspaces/project/src/fileA.ts +/home/src/workspaces/project/src/randomFile.ts +/home/src/workspaces/project/src/a/randomFile.ts +/home/src/workspaces/project/src/b/ba/randomFile.ts +/home/src/workspaces/project/src/b/randomFile.ts +/home/src/workspaces/project/src/c/ca/randomFile.ts +/home/src/workspaces/project/src/c/ca/caa/randomFile.ts +/home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts +/home/src/workspaces/project/src/c/cb/randomFile.ts +/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts +/home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts +/home/src/workspaces/project/src/d/da/daa/randomFile.ts +/home/src/workspaces/project/src/d/da/randomFile.ts +/home/src/workspaces/project/src/e/ea/randomFile.ts +/home/src/workspaces/project/src/e/ea/eaa/randomFile.ts +/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts +/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts +/home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts + +Semantic diagnostics in builder refreshed for:: +/home/src/workspaces/project/src/main.ts +/home/src/workspaces/project/src/fileA.ts +/home/src/workspaces/project/src/randomFile.ts +/home/src/workspaces/project/src/a/randomFile.ts +/home/src/workspaces/project/src/b/ba/randomFile.ts +/home/src/workspaces/project/src/b/randomFile.ts +/home/src/workspaces/project/src/c/ca/randomFile.ts +/home/src/workspaces/project/src/c/ca/caa/randomFile.ts +/home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts +/home/src/workspaces/project/src/c/cb/randomFile.ts +/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts +/home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts +/home/src/workspaces/project/src/d/da/daa/randomFile.ts +/home/src/workspaces/project/src/d/da/randomFile.ts +/home/src/workspaces/project/src/e/ea/randomFile.ts +/home/src/workspaces/project/src/e/ea/eaa/randomFile.ts +/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts +/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts +/home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts + +Shape signatures in builder refreshed for:: +/home/src/workspaces/project/src/main.ts (computed .d.ts) +/home/src/workspaces/project/src/filea.ts (computed .d.ts) +/home/src/workspaces/project/src/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/a/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/b/ba/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/b/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/c/ca/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/c/ca/caa/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/c/ca/caa/caaa/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/c/cb/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/d/da/daa/daaa/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/d/da/daa/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/d/da/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/e/ea/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/e/ea/eaa/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/f/fa/faa/faaa/randomfile.ts (computed .d.ts) + +exitCode:: ExitStatus.undefined + +Change:: Delete package.json + +Input:: +//// [/home/src/workspaces/project/package.json] deleted + +Output:: +FileWatcher:: Triggered with /home/src/workspaces/project/package.json 2:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined File location affecting resolution +Scheduling invalidateFailedLookup +Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/package.json 2:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined File location affecting resolution + + +Timeout callback:: count: 1 +6: timerToInvalidateFailedLookupResolutions *new* + +Before running Timeout callback:: count: 1 +6: timerToInvalidateFailedLookupResolutions + +Host is moving to new time +After running Timeout callback:: count: 1 +Output:: +Scheduling update + + + +Timeout callback:: count: 1 +7: timerToUpdateProgram *new* + +Before running Timeout callback:: count: 1 +7: timerToUpdateProgram + +Host is moving to new time +After running Timeout callback:: count: 0 +Output:: +Synchronizing program +[HH:MM:SS AM] File change detected. Starting incremental compilation... + +CreatingProgramWith:: + roots: ["/home/src/workspaces/project/src/main.ts","/home/src/workspaces/project/src/fileA.ts","/home/src/workspaces/project/src/fileB.mts","/home/src/workspaces/project/src/randomFile.ts","/home/src/workspaces/project/src/a/randomFile.ts","/home/src/workspaces/project/src/b/ba/randomFile.ts","/home/src/workspaces/project/src/b/randomFile.ts","/home/src/workspaces/project/src/c/ca/randomFile.ts","/home/src/workspaces/project/src/c/ca/caa/randomFile.ts","/home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts","/home/src/workspaces/project/src/c/cb/randomFile.ts","/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts","/home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts","/home/src/workspaces/project/src/d/da/daa/randomFile.ts","/home/src/workspaces/project/src/d/da/randomFile.ts","/home/src/workspaces/project/src/e/ea/randomFile.ts","/home/src/workspaces/project/src/e/ea/eaa/randomFile.ts","/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts","/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts","/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts","/home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts"] + options: {"target":3,"composite":true,"module":100,"outDir":"/home/src/workspaces/project/out","traceResolution":true,"watch":true,"project":"/home/src/workspaces/project/src/tsconfig.json","explainFiles":true,"extendedDiagnostics":true,"configFilePath":"/home/src/workspaces/project/src/tsconfig.json"} +File '/home/src/tslibs/TS/Lib/package.json' does not exist according to earlier cached lookups. +File '/home/src/tslibs/TS/package.json' does not exist according to earlier cached lookups. +File '/home/src/tslibs/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist. +File '/home/src/workspaces/package.json' does not exist. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/a/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/ba/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/caaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/cb/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/x/y/z/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/x/y/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/x/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/faaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +Reusing resolution of module './fileB.mjs' from '/home/src/workspaces/project/src/fileA.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/src/fileB.mts'. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/a/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/ba/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/caaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/cb/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/x/y/z/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/x/y/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/x/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/faaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/tslibs/TS/Lib/package.json' does not exist according to earlier cached lookups. +File '/home/src/tslibs/TS/package.json' does not exist according to earlier cached lookups. +File '/home/src/tslibs/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/package.json 2000 undefined File location affecting resolution +src/fileA.ts:1:21 - error TS1479: The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import("./fileB.mjs")' call instead. + To convert this file to an ECMAScript module, change its file extension to '.mts' or create a local package.json file with `{ "type": "module" }`. + +1 import { foo } from "./fileB.mjs"; +   ~~~~~~~~~~~~~ + +../../tslibs/TS/Lib/lib.es2016.full.d.ts + Default library for target 'es2016' +src/main.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/fileB.mts + Imported via "./fileB.mjs" from file 'src/fileA.ts' + Part of 'files' list in tsconfig.json +src/fileA.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/a/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/b/ba/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/b/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/c/ca/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/c/ca/caa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/c/ca/caa/caaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/c/cb/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/d/da/daa/daaa/x/y/z/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/d/da/daa/daaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/d/da/daa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/d/da/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/e/ea/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/e/ea/eaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/e/ea/eaa/eaaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/e/ea/eaa/eaaa/x/y/z/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/f/fa/faa/x/y/z/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/f/fa/faa/faaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +[HH:MM:SS AM] Found 1 error. Watching for file changes. + + + + +PolledWatches:: +/home/src/tslibs/TS/Lib/package.json: + {"pollingInterval":2000} +/home/src/tslibs/TS/package.json: + {"pollingInterval":2000} +/home/src/tslibs/package.json: + {"pollingInterval":2000} +/home/src/workspaces/node_modules/@types: + {"pollingInterval":500} +/home/src/workspaces/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/@types: + {"pollingInterval":500} +/home/src/workspaces/project/src/a/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/b/ba/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/b/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/c/ca/caa/caaa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/c/ca/caa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/c/ca/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/c/cb/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/c/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/daa/daaa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/daa/daaa/x/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/daa/daaa/x/y/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/daa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/eaa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/faa/faaa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/faa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/faa/x/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/faa/x/y/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/faa/x/y/z/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/node_modules/@types: + {"pollingInterval":500} +/home/src/workspaces/project/src/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts: + {} +/home/src/workspaces/project/package.json: + {} +/home/src/workspaces/project/src/a/randomFile.ts: + {} +/home/src/workspaces/project/src/b/ba/randomFile.ts: + {} +/home/src/workspaces/project/src/b/randomFile.ts: + {} +/home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts: + {} +/home/src/workspaces/project/src/c/ca/caa/randomFile.ts: + {} +/home/src/workspaces/project/src/c/ca/randomFile.ts: + {} +/home/src/workspaces/project/src/c/cb/randomFile.ts: + {} +/home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts: + {} +/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts: + {} +/home/src/workspaces/project/src/d/da/daa/randomFile.ts: + {} +/home/src/workspaces/project/src/d/da/randomFile.ts: + {} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts: + {} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts: + {} +/home/src/workspaces/project/src/e/ea/eaa/randomFile.ts: + {} +/home/src/workspaces/project/src/e/ea/randomFile.ts: + {} +/home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts: + {} +/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts: + {} +/home/src/workspaces/project/src/fileA.ts: + {} +/home/src/workspaces/project/src/fileB.mts: + {} +/home/src/workspaces/project/src/main.ts: + {} +/home/src/workspaces/project/src/randomFile.ts: + {} +/home/src/workspaces/project/src/tsconfig.json: + {} + + +Program root files: [ + "/home/src/workspaces/project/src/main.ts", + "/home/src/workspaces/project/src/fileA.ts", + "/home/src/workspaces/project/src/fileB.mts", + "/home/src/workspaces/project/src/randomFile.ts", + "/home/src/workspaces/project/src/a/randomFile.ts", + "/home/src/workspaces/project/src/b/ba/randomFile.ts", + "/home/src/workspaces/project/src/b/randomFile.ts", + "/home/src/workspaces/project/src/c/ca/randomFile.ts", + "/home/src/workspaces/project/src/c/ca/caa/randomFile.ts", + "/home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts", + "/home/src/workspaces/project/src/c/cb/randomFile.ts", + "/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts", + "/home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts", + "/home/src/workspaces/project/src/d/da/daa/randomFile.ts", + "/home/src/workspaces/project/src/d/da/randomFile.ts", + "/home/src/workspaces/project/src/e/ea/randomFile.ts", + "/home/src/workspaces/project/src/e/ea/eaa/randomFile.ts", + "/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts", + "/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts", + "/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts", + "/home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts" +] +Program options: { + "target": 3, + "composite": true, + "module": 100, + "outDir": "/home/src/workspaces/project/out", + "traceResolution": true, + "watch": true, + "project": "/home/src/workspaces/project/src/tsconfig.json", + "explainFiles": true, + "extendedDiagnostics": true, + "configFilePath": "/home/src/workspaces/project/src/tsconfig.json" +} +Program structureReused: SafeModules +Program files:: +/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts +/home/src/workspaces/project/src/main.ts +/home/src/workspaces/project/src/fileB.mts +/home/src/workspaces/project/src/fileA.ts +/home/src/workspaces/project/src/randomFile.ts +/home/src/workspaces/project/src/a/randomFile.ts +/home/src/workspaces/project/src/b/ba/randomFile.ts +/home/src/workspaces/project/src/b/randomFile.ts +/home/src/workspaces/project/src/c/ca/randomFile.ts +/home/src/workspaces/project/src/c/ca/caa/randomFile.ts +/home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts +/home/src/workspaces/project/src/c/cb/randomFile.ts +/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts +/home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts +/home/src/workspaces/project/src/d/da/daa/randomFile.ts +/home/src/workspaces/project/src/d/da/randomFile.ts +/home/src/workspaces/project/src/e/ea/randomFile.ts +/home/src/workspaces/project/src/e/ea/eaa/randomFile.ts +/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts +/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts +/home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts + +Semantic diagnostics in builder refreshed for:: + +No shapes updated in the builder:: + +exitCode:: ExitStatus.undefined + +Change:: Add package json file with type module + +Input:: +//// [/home/src/workspaces/project/package.json] +{ + "name": "app", + "version": "1.0.0", + "type": "module" +} + + +Output:: +FileWatcher:: Triggered with /home/src/workspaces/project/package.json 0:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined File location affecting resolution +Scheduling invalidateFailedLookup +Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/package.json 0:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined File location affecting resolution + + +Timeout callback:: count: 1 +8: timerToInvalidateFailedLookupResolutions *new* + +Before running Timeout callback:: count: 1 +8: timerToInvalidateFailedLookupResolutions + +Host is moving to new time +After running Timeout callback:: count: 1 +Output:: +Scheduling update + + + +Timeout callback:: count: 1 +9: timerToUpdateProgram *new* + +Before running Timeout callback:: count: 1 +9: timerToUpdateProgram + +Host is moving to new time +After running Timeout callback:: count: 0 +Output:: +Synchronizing program +[HH:MM:SS AM] File change detected. Starting incremental compilation... + +CreatingProgramWith:: + roots: ["/home/src/workspaces/project/src/main.ts","/home/src/workspaces/project/src/fileA.ts","/home/src/workspaces/project/src/fileB.mts","/home/src/workspaces/project/src/randomFile.ts","/home/src/workspaces/project/src/a/randomFile.ts","/home/src/workspaces/project/src/b/ba/randomFile.ts","/home/src/workspaces/project/src/b/randomFile.ts","/home/src/workspaces/project/src/c/ca/randomFile.ts","/home/src/workspaces/project/src/c/ca/caa/randomFile.ts","/home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts","/home/src/workspaces/project/src/c/cb/randomFile.ts","/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts","/home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts","/home/src/workspaces/project/src/d/da/daa/randomFile.ts","/home/src/workspaces/project/src/d/da/randomFile.ts","/home/src/workspaces/project/src/e/ea/randomFile.ts","/home/src/workspaces/project/src/e/ea/eaa/randomFile.ts","/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts","/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts","/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts","/home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts"] + options: {"target":3,"composite":true,"module":100,"outDir":"/home/src/workspaces/project/out","traceResolution":true,"watch":true,"project":"/home/src/workspaces/project/src/tsconfig.json","explainFiles":true,"extendedDiagnostics":true,"configFilePath":"/home/src/workspaces/project/src/tsconfig.json"} +File '/home/src/tslibs/TS/Lib/package.json' does not exist according to earlier cached lookups. +File '/home/src/tslibs/TS/package.json' does not exist according to earlier cached lookups. +File '/home/src/tslibs/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Found 'package.json' at '/home/src/workspaces/project/package.json'. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/a/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/ba/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/caaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/cb/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/x/y/z/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/x/y/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/x/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/faaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +======== Resolving module './fileB.mjs' from '/home/src/workspaces/project/src/fileA.ts'. ======== +Module resolution kind is not specified, using 'Node16'. +Resolving in ESM mode with conditions 'import', 'types', 'node'. +Loading module as file / folder, candidate module location '/home/src/workspaces/project/src/fileB.mjs', target file types: TypeScript, JavaScript, Declaration. +File name '/home/src/workspaces/project/src/fileB.mjs' has a '.mjs' extension - stripping it. +File '/home/src/workspaces/project/src/fileB.mts' exists - use it as a name resolution result. +======== Module name './fileB.mjs' was successfully resolved to '/home/src/workspaces/project/src/fileB.mts'. ======== +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/a/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/ba/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/caaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/cb/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/x/y/z/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/x/y/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/x/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/faaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +File '/home/src/tslibs/TS/Lib/package.json' does not exist according to earlier cached lookups. +File '/home/src/tslibs/TS/package.json' does not exist according to earlier cached lookups. +File '/home/src/tslibs/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +FileWatcher:: Close:: WatchInfo: /home/src/workspaces/package.json 2000 undefined File location affecting resolution +../../tslibs/TS/Lib/lib.es2016.full.d.ts + Default library for target 'es2016' +src/main.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/fileB.mts + Imported via "./fileB.mjs" from file 'src/fileA.ts' + Part of 'files' list in tsconfig.json +src/fileA.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/a/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/b/ba/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/b/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/c/ca/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/c/ca/caa/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/c/ca/caa/caaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/c/cb/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/d/da/daa/daaa/x/y/z/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/d/da/daa/daaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/d/da/daa/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/d/da/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/e/ea/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/e/ea/eaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/e/ea/eaa/eaaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/e/ea/eaa/eaaa/x/y/z/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/f/fa/faa/x/y/z/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +src/f/fa/faa/faaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is ECMAScript module because 'package.json' has field "type" with value "module" +[HH:MM:SS AM] Found 0 errors. Watching for file changes. + + + +//// [/home/src/workspaces/project/out/main.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/fileA.js] +import { foo } from "./fileB.mjs"; +foo(); + + +//// [/home/src/workspaces/project/out/randomFile.js] +export const x = 10; +export const y = 10; + + +//// [/home/src/workspaces/project/out/a/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/b/ba/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/b/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/c/ca/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/c/ca/caa/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/c/ca/caa/caaa/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/c/cb/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/d/da/daa/daaa/x/y/z/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/d/da/daa/daaa/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/d/da/daa/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/d/da/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/eaa/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/eaa/eaaa/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/eaa/eaaa/x/y/z/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/f/fa/faa/x/y/z/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/f/fa/faa/faaa/randomFile.js] +export const x = 10; + + +//// [/home/src/workspaces/project/out/tsconfig.tsbuildinfo] +{"fileNames":["../../../tslibs/ts/lib/lib.es2016.full.d.ts","../src/main.ts","../src/fileb.mts","../src/filea.ts","../src/randomfile.ts","../src/a/randomfile.ts","../src/b/ba/randomfile.ts","../src/b/randomfile.ts","../src/c/ca/randomfile.ts","../src/c/ca/caa/randomfile.ts","../src/c/ca/caa/caaa/randomfile.ts","../src/c/cb/randomfile.ts","../src/d/da/daa/daaa/x/y/z/randomfile.ts","../src/d/da/daa/daaa/randomfile.ts","../src/d/da/daa/randomfile.ts","../src/d/da/randomfile.ts","../src/e/ea/randomfile.ts","../src/e/ea/eaa/randomfile.ts","../src/e/ea/eaa/eaaa/randomfile.ts","../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts","../src/f/fa/faa/x/y/z/randomfile.ts","../src/f/fa/faa/faaa/randomfile.ts"],"fileIdsList":[[3]],"fileInfos":[{"version":"3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"3524703962-export function foo() {}","signature":"-5677608893-export declare function foo(): void;\n","impliedFormat":99},{"version":"-5325347830-import { foo } from \"./fileB.mjs\";\nfoo();\n","signature":"-3531856636-export {};\n","impliedFormat":99},{"version":"-9547279430-export const x = 10;export const y = 10;","signature":"-18799098802-export declare const x = 10;\nexport declare const y = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":99}],"root":[[2,22]],"options":{"composite":true,"module":100,"outDir":"./","target":3},"referencedMap":[[4,1]],"latestChangedDtsFile":"./randomFile.d.ts","version":"FakeTSVersion"} + +//// [/home/src/workspaces/project/out/tsconfig.tsbuildinfo.readable.baseline.txt] +{ + "fileNames": [ + "../../../tslibs/ts/lib/lib.es2016.full.d.ts", + "../src/main.ts", + "../src/fileb.mts", + "../src/filea.ts", + "../src/randomfile.ts", + "../src/a/randomfile.ts", + "../src/b/ba/randomfile.ts", + "../src/b/randomfile.ts", + "../src/c/ca/randomfile.ts", + "../src/c/ca/caa/randomfile.ts", + "../src/c/ca/caa/caaa/randomfile.ts", + "../src/c/cb/randomfile.ts", + "../src/d/da/daa/daaa/x/y/z/randomfile.ts", + "../src/d/da/daa/daaa/randomfile.ts", + "../src/d/da/daa/randomfile.ts", + "../src/d/da/randomfile.ts", + "../src/e/ea/randomfile.ts", + "../src/e/ea/eaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts", + "../src/f/fa/faa/x/y/z/randomfile.ts", + "../src/f/fa/faa/faaa/randomfile.ts" + ], + "fileIdsList": [ + [ + "../src/fileb.mts" + ] + ], + "fileInfos": { + "../../../tslibs/ts/lib/lib.es2016.full.d.ts": { + "original": { + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true, + "impliedFormat": 1 + }, + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "signature": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true, + "impliedFormat": "commonjs" + }, + "../src/main.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/fileb.mts": { + "original": { + "version": "3524703962-export function foo() {}", + "signature": "-5677608893-export declare function foo(): void;\n", + "impliedFormat": 99 + }, + "version": "3524703962-export function foo() {}", + "signature": "-5677608893-export declare function foo(): void;\n", + "impliedFormat": "esnext" + }, + "../src/filea.ts": { + "original": { + "version": "-5325347830-import { foo } from \"./fileB.mjs\";\nfoo();\n", + "signature": "-3531856636-export {};\n", + "impliedFormat": 99 + }, + "version": "-5325347830-import { foo } from \"./fileB.mjs\";\nfoo();\n", + "signature": "-3531856636-export {};\n", + "impliedFormat": "esnext" + }, + "../src/randomfile.ts": { + "original": { + "version": "-9547279430-export const x = 10;export const y = 10;", + "signature": "-18799098802-export declare const x = 10;\nexport declare const y = 10;\n", + "impliedFormat": 99 + }, + "version": "-9547279430-export const x = 10;export const y = 10;", + "signature": "-18799098802-export declare const x = 10;\nexport declare const y = 10;\n", + "impliedFormat": "esnext" + }, + "../src/a/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/b/ba/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/b/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/c/ca/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/c/ca/caa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/c/ca/caa/caaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/c/cb/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/d/da/daa/daaa/x/y/z/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/d/da/daa/daaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/d/da/daa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/d/da/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/e/ea/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/e/ea/eaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/e/ea/eaa/eaaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/f/fa/faa/x/y/z/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + }, + "../src/f/fa/faa/faaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 99 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "esnext" + } + }, + "root": [ + [ + [ + 2, + 22 + ], + [ + "../src/main.ts", + "../src/fileb.mts", + "../src/filea.ts", + "../src/randomfile.ts", + "../src/a/randomfile.ts", + "../src/b/ba/randomfile.ts", + "../src/b/randomfile.ts", + "../src/c/ca/randomfile.ts", + "../src/c/ca/caa/randomfile.ts", + "../src/c/ca/caa/caaa/randomfile.ts", + "../src/c/cb/randomfile.ts", + "../src/d/da/daa/daaa/x/y/z/randomfile.ts", + "../src/d/da/daa/daaa/randomfile.ts", + "../src/d/da/daa/randomfile.ts", + "../src/d/da/randomfile.ts", + "../src/e/ea/randomfile.ts", + "../src/e/ea/eaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts", + "../src/f/fa/faa/x/y/z/randomfile.ts", + "../src/f/fa/faa/faaa/randomfile.ts" + ] + ] + ], + "options": { + "composite": true, + "module": 100, + "outDir": "./", + "target": 3 + }, + "referencedMap": { + "../src/filea.ts": [ + "../src/fileb.mts" + ] + }, + "latestChangedDtsFile": "./randomFile.d.ts", + "version": "FakeTSVersion", + "size": 4074 +} + + +PolledWatches:: +/home/src/tslibs/TS/Lib/package.json: + {"pollingInterval":2000} +/home/src/tslibs/TS/package.json: + {"pollingInterval":2000} +/home/src/tslibs/package.json: + {"pollingInterval":2000} +/home/src/workspaces/node_modules/@types: + {"pollingInterval":500} +/home/src/workspaces/project/node_modules/@types: + {"pollingInterval":500} +/home/src/workspaces/project/src/a/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/b/ba/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/b/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/c/ca/caa/caaa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/c/ca/caa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/c/ca/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/c/cb/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/c/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/daa/daaa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/daa/daaa/x/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/daa/daaa/x/y/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/daa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/eaa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/faa/faaa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/faa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/faa/x/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/faa/x/y/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/faa/x/y/z/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/node_modules/@types: + {"pollingInterval":500} +/home/src/workspaces/project/src/package.json: + {"pollingInterval":2000} + +PolledWatches *deleted*:: +/home/src/workspaces/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts: + {} +/home/src/workspaces/project/package.json: + {} +/home/src/workspaces/project/src/a/randomFile.ts: + {} +/home/src/workspaces/project/src/b/ba/randomFile.ts: + {} +/home/src/workspaces/project/src/b/randomFile.ts: + {} +/home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts: + {} +/home/src/workspaces/project/src/c/ca/caa/randomFile.ts: + {} +/home/src/workspaces/project/src/c/ca/randomFile.ts: + {} +/home/src/workspaces/project/src/c/cb/randomFile.ts: + {} +/home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts: + {} +/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts: + {} +/home/src/workspaces/project/src/d/da/daa/randomFile.ts: + {} +/home/src/workspaces/project/src/d/da/randomFile.ts: + {} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts: + {} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts: + {} +/home/src/workspaces/project/src/e/ea/eaa/randomFile.ts: + {} +/home/src/workspaces/project/src/e/ea/randomFile.ts: + {} +/home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts: + {} +/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts: + {} +/home/src/workspaces/project/src/fileA.ts: + {} +/home/src/workspaces/project/src/fileB.mts: + {} +/home/src/workspaces/project/src/main.ts: + {} +/home/src/workspaces/project/src/randomFile.ts: + {} +/home/src/workspaces/project/src/tsconfig.json: + {} + + +Program root files: [ + "/home/src/workspaces/project/src/main.ts", + "/home/src/workspaces/project/src/fileA.ts", + "/home/src/workspaces/project/src/fileB.mts", + "/home/src/workspaces/project/src/randomFile.ts", + "/home/src/workspaces/project/src/a/randomFile.ts", + "/home/src/workspaces/project/src/b/ba/randomFile.ts", + "/home/src/workspaces/project/src/b/randomFile.ts", + "/home/src/workspaces/project/src/c/ca/randomFile.ts", + "/home/src/workspaces/project/src/c/ca/caa/randomFile.ts", + "/home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts", + "/home/src/workspaces/project/src/c/cb/randomFile.ts", + "/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts", + "/home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts", + "/home/src/workspaces/project/src/d/da/daa/randomFile.ts", + "/home/src/workspaces/project/src/d/da/randomFile.ts", + "/home/src/workspaces/project/src/e/ea/randomFile.ts", + "/home/src/workspaces/project/src/e/ea/eaa/randomFile.ts", + "/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts", + "/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts", + "/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts", + "/home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts" +] +Program options: { + "target": 3, + "composite": true, + "module": 100, + "outDir": "/home/src/workspaces/project/out", + "traceResolution": true, + "watch": true, + "project": "/home/src/workspaces/project/src/tsconfig.json", + "explainFiles": true, + "extendedDiagnostics": true, + "configFilePath": "/home/src/workspaces/project/src/tsconfig.json" +} +Program structureReused: SafeModules +Program files:: +/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts +/home/src/workspaces/project/src/main.ts +/home/src/workspaces/project/src/fileB.mts +/home/src/workspaces/project/src/fileA.ts +/home/src/workspaces/project/src/randomFile.ts +/home/src/workspaces/project/src/a/randomFile.ts +/home/src/workspaces/project/src/b/ba/randomFile.ts +/home/src/workspaces/project/src/b/randomFile.ts +/home/src/workspaces/project/src/c/ca/randomFile.ts +/home/src/workspaces/project/src/c/ca/caa/randomFile.ts +/home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts +/home/src/workspaces/project/src/c/cb/randomFile.ts +/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts +/home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts +/home/src/workspaces/project/src/d/da/daa/randomFile.ts +/home/src/workspaces/project/src/d/da/randomFile.ts +/home/src/workspaces/project/src/e/ea/randomFile.ts +/home/src/workspaces/project/src/e/ea/eaa/randomFile.ts +/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts +/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts +/home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts + +Semantic diagnostics in builder refreshed for:: +/home/src/workspaces/project/src/main.ts +/home/src/workspaces/project/src/fileA.ts +/home/src/workspaces/project/src/randomFile.ts +/home/src/workspaces/project/src/a/randomFile.ts +/home/src/workspaces/project/src/b/ba/randomFile.ts +/home/src/workspaces/project/src/b/randomFile.ts +/home/src/workspaces/project/src/c/ca/randomFile.ts +/home/src/workspaces/project/src/c/ca/caa/randomFile.ts +/home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts +/home/src/workspaces/project/src/c/cb/randomFile.ts +/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts +/home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts +/home/src/workspaces/project/src/d/da/daa/randomFile.ts +/home/src/workspaces/project/src/d/da/randomFile.ts +/home/src/workspaces/project/src/e/ea/randomFile.ts +/home/src/workspaces/project/src/e/ea/eaa/randomFile.ts +/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts +/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts +/home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts + +Shape signatures in builder refreshed for:: +/home/src/workspaces/project/src/main.ts (computed .d.ts) +/home/src/workspaces/project/src/filea.ts (computed .d.ts) +/home/src/workspaces/project/src/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/a/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/b/ba/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/b/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/c/ca/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/c/ca/caa/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/c/ca/caa/caaa/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/c/cb/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/d/da/daa/daaa/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/d/da/daa/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/d/da/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/e/ea/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/e/ea/eaa/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/f/fa/faa/faaa/randomfile.ts (computed .d.ts) + +exitCode:: ExitStatus.undefined + +Change:: Delete package.json + +Input:: +//// [/home/src/workspaces/project/package.json] deleted + +Output:: +FileWatcher:: Triggered with /home/src/workspaces/project/package.json 2:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined File location affecting resolution +Scheduling invalidateFailedLookup +Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/package.json 2:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined File location affecting resolution + + +Timeout callback:: count: 1 +10: timerToInvalidateFailedLookupResolutions *new* + +Before running Timeout callback:: count: 1 +10: timerToInvalidateFailedLookupResolutions + +Host is moving to new time +After running Timeout callback:: count: 1 +Output:: +Scheduling update + + + +Timeout callback:: count: 1 +11: timerToUpdateProgram *new* + +Before running Timeout callback:: count: 1 +11: timerToUpdateProgram + +Host is moving to new time +After running Timeout callback:: count: 0 +Output:: +Synchronizing program +[HH:MM:SS AM] File change detected. Starting incremental compilation... + +CreatingProgramWith:: + roots: ["/home/src/workspaces/project/src/main.ts","/home/src/workspaces/project/src/fileA.ts","/home/src/workspaces/project/src/fileB.mts","/home/src/workspaces/project/src/randomFile.ts","/home/src/workspaces/project/src/a/randomFile.ts","/home/src/workspaces/project/src/b/ba/randomFile.ts","/home/src/workspaces/project/src/b/randomFile.ts","/home/src/workspaces/project/src/c/ca/randomFile.ts","/home/src/workspaces/project/src/c/ca/caa/randomFile.ts","/home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts","/home/src/workspaces/project/src/c/cb/randomFile.ts","/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts","/home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts","/home/src/workspaces/project/src/d/da/daa/randomFile.ts","/home/src/workspaces/project/src/d/da/randomFile.ts","/home/src/workspaces/project/src/e/ea/randomFile.ts","/home/src/workspaces/project/src/e/ea/eaa/randomFile.ts","/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts","/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts","/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts","/home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts"] + options: {"target":3,"composite":true,"module":100,"outDir":"/home/src/workspaces/project/out","traceResolution":true,"watch":true,"project":"/home/src/workspaces/project/src/tsconfig.json","explainFiles":true,"extendedDiagnostics":true,"configFilePath":"/home/src/workspaces/project/src/tsconfig.json"} +File '/home/src/tslibs/TS/Lib/package.json' does not exist according to earlier cached lookups. +File '/home/src/tslibs/TS/package.json' does not exist according to earlier cached lookups. +File '/home/src/tslibs/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist. +File '/home/src/workspaces/package.json' does not exist. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/a/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/ba/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/caaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/cb/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/x/y/z/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/x/y/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/x/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/faaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +======== Resolving module './fileB.mjs' from '/home/src/workspaces/project/src/fileA.ts'. ======== +Module resolution kind is not specified, using 'Node16'. +Resolving in CJS mode with conditions 'require', 'types', 'node'. +Loading module as file / folder, candidate module location '/home/src/workspaces/project/src/fileB.mjs', target file types: TypeScript, JavaScript, Declaration. +File name '/home/src/workspaces/project/src/fileB.mjs' has a '.mjs' extension - stripping it. +File '/home/src/workspaces/project/src/fileB.mts' exists - use it as a name resolution result. +======== Module name './fileB.mjs' was successfully resolved to '/home/src/workspaces/project/src/fileB.mts'. ======== +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/a/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/ba/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/caaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/cb/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/x/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/x/y/z/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/x/y/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/x/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/faaa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +File '/home/src/tslibs/TS/Lib/package.json' does not exist according to earlier cached lookups. +File '/home/src/tslibs/TS/package.json' does not exist according to earlier cached lookups. +File '/home/src/tslibs/package.json' does not exist according to earlier cached lookups. +File '/home/src/package.json' does not exist according to earlier cached lookups. +File '/home/package.json' does not exist according to earlier cached lookups. +File '/package.json' does not exist according to earlier cached lookups. +FileWatcher:: Added:: WatchInfo: /home/src/workspaces/package.json 2000 undefined File location affecting resolution +src/fileA.ts:1:21 - error TS1479: The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import("./fileB.mjs")' call instead. + To convert this file to an ECMAScript module, change its file extension to '.mts' or create a local package.json file with `{ "type": "module" }`. + +1 import { foo } from "./fileB.mjs"; +   ~~~~~~~~~~~~~ + +../../tslibs/TS/Lib/lib.es2016.full.d.ts + Default library for target 'es2016' +src/main.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/fileB.mts + Imported via "./fileB.mjs" from file 'src/fileA.ts' + Part of 'files' list in tsconfig.json +src/fileA.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/a/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/b/ba/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/b/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/c/ca/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/c/ca/caa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/c/ca/caa/caaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/c/cb/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/d/da/daa/daaa/x/y/z/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/d/da/daa/daaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/d/da/daa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/d/da/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/e/ea/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/e/ea/eaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/e/ea/eaa/eaaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/e/ea/eaa/eaaa/x/y/z/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/f/fa/faa/x/y/z/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +src/f/fa/faa/faaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because 'package.json' was not found +[HH:MM:SS AM] Found 1 error. Watching for file changes. + + + +//// [/home/src/workspaces/project/out/main.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/fileA.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +const fileB_mjs_1 = require("./fileB.mjs"); +(0, fileB_mjs_1.foo)(); + + +//// [/home/src/workspaces/project/out/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.y = exports.x = void 0; +exports.x = 10; +exports.y = 10; + + +//// [/home/src/workspaces/project/out/a/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/b/ba/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/b/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/c/ca/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/c/ca/caa/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/c/ca/caa/caaa/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/c/cb/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/d/da/daa/daaa/x/y/z/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/d/da/daa/daaa/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/d/da/daa/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/d/da/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/eaa/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/eaa/eaaa/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/e/ea/eaa/eaaa/x/y/z/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/f/fa/faa/x/y/z/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/f/fa/faa/faaa/randomFile.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/out/tsconfig.tsbuildinfo] +{"fileNames":["../../../tslibs/ts/lib/lib.es2016.full.d.ts","../src/main.ts","../src/fileb.mts","../src/filea.ts","../src/randomfile.ts","../src/a/randomfile.ts","../src/b/ba/randomfile.ts","../src/b/randomfile.ts","../src/c/ca/randomfile.ts","../src/c/ca/caa/randomfile.ts","../src/c/ca/caa/caaa/randomfile.ts","../src/c/cb/randomfile.ts","../src/d/da/daa/daaa/x/y/z/randomfile.ts","../src/d/da/daa/daaa/randomfile.ts","../src/d/da/daa/randomfile.ts","../src/d/da/randomfile.ts","../src/e/ea/randomfile.ts","../src/e/ea/eaa/randomfile.ts","../src/e/ea/eaa/eaaa/randomfile.ts","../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts","../src/f/fa/faa/x/y/z/randomfile.ts","../src/f/fa/faa/faaa/randomfile.ts"],"fileIdsList":[[3]],"fileInfos":[{"version":"3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"3524703962-export function foo() {}","signature":"-5677608893-export declare function foo(): void;\n","impliedFormat":99},{"version":"-5325347830-import { foo } from \"./fileB.mjs\";\nfoo();\n","signature":"-3531856636-export {};\n","impliedFormat":1},{"version":"-9547279430-export const x = 10;export const y = 10;","signature":"-18799098802-export declare const x = 10;\nexport declare const y = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1}],"root":[[2,22]],"options":{"composite":true,"module":100,"outDir":"./","target":3},"referencedMap":[[4,1]],"semanticDiagnosticsPerFile":[[4,[{"start":20,"length":13,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"./fileB.mjs\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}}]]],"latestChangedDtsFile":"./randomFile.d.ts","version":"FakeTSVersion"} + +//// [/home/src/workspaces/project/out/tsconfig.tsbuildinfo.readable.baseline.txt] +{ + "fileNames": [ + "../../../tslibs/ts/lib/lib.es2016.full.d.ts", + "../src/main.ts", + "../src/fileb.mts", + "../src/filea.ts", + "../src/randomfile.ts", + "../src/a/randomfile.ts", + "../src/b/ba/randomfile.ts", + "../src/b/randomfile.ts", + "../src/c/ca/randomfile.ts", + "../src/c/ca/caa/randomfile.ts", + "../src/c/ca/caa/caaa/randomfile.ts", + "../src/c/cb/randomfile.ts", + "../src/d/da/daa/daaa/x/y/z/randomfile.ts", + "../src/d/da/daa/daaa/randomfile.ts", + "../src/d/da/daa/randomfile.ts", + "../src/d/da/randomfile.ts", + "../src/e/ea/randomfile.ts", + "../src/e/ea/eaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts", + "../src/f/fa/faa/x/y/z/randomfile.ts", + "../src/f/fa/faa/faaa/randomfile.ts" + ], + "fileIdsList": [ + [ + "../src/fileb.mts" + ] + ], + "fileInfos": { + "../../../tslibs/ts/lib/lib.es2016.full.d.ts": { + "original": { + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true, + "impliedFormat": 1 + }, + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "signature": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true, + "impliedFormat": "commonjs" + }, + "../src/main.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/fileb.mts": { + "original": { + "version": "3524703962-export function foo() {}", + "signature": "-5677608893-export declare function foo(): void;\n", + "impliedFormat": 99 + }, + "version": "3524703962-export function foo() {}", + "signature": "-5677608893-export declare function foo(): void;\n", + "impliedFormat": "esnext" + }, + "../src/filea.ts": { + "original": { + "version": "-5325347830-import { foo } from \"./fileB.mjs\";\nfoo();\n", + "signature": "-3531856636-export {};\n", + "impliedFormat": 1 + }, + "version": "-5325347830-import { foo } from \"./fileB.mjs\";\nfoo();\n", + "signature": "-3531856636-export {};\n", + "impliedFormat": "commonjs" + }, + "../src/randomfile.ts": { + "original": { + "version": "-9547279430-export const x = 10;export const y = 10;", + "signature": "-18799098802-export declare const x = 10;\nexport declare const y = 10;\n", + "impliedFormat": 1 + }, + "version": "-9547279430-export const x = 10;export const y = 10;", + "signature": "-18799098802-export declare const x = 10;\nexport declare const y = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/a/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/b/ba/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/b/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/c/ca/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/c/ca/caa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/c/ca/caa/caaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/c/cb/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/d/da/daa/daaa/x/y/z/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/d/da/daa/daaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/d/da/daa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/d/da/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/e/ea/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/e/ea/eaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/e/ea/eaa/eaaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/f/fa/faa/x/y/z/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + }, + "../src/f/fa/faa/faaa/randomfile.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": 1 + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n", + "impliedFormat": "commonjs" + } + }, + "root": [ + [ + [ + 2, + 22 + ], + [ + "../src/main.ts", + "../src/fileb.mts", + "../src/filea.ts", + "../src/randomfile.ts", + "../src/a/randomfile.ts", + "../src/b/ba/randomfile.ts", + "../src/b/randomfile.ts", + "../src/c/ca/randomfile.ts", + "../src/c/ca/caa/randomfile.ts", + "../src/c/ca/caa/caaa/randomfile.ts", + "../src/c/cb/randomfile.ts", + "../src/d/da/daa/daaa/x/y/z/randomfile.ts", + "../src/d/da/daa/daaa/randomfile.ts", + "../src/d/da/daa/randomfile.ts", + "../src/d/da/randomfile.ts", + "../src/e/ea/randomfile.ts", + "../src/e/ea/eaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/randomfile.ts", + "../src/e/ea/eaa/eaaa/x/y/z/randomfile.ts", + "../src/f/fa/faa/x/y/z/randomfile.ts", + "../src/f/fa/faa/faaa/randomfile.ts" + ] + ] + ], + "options": { + "composite": true, + "module": 100, + "outDir": "./", + "target": 3 + }, + "referencedMap": { + "../src/filea.ts": [ + "../src/fileb.mts" + ] + }, + "semanticDiagnosticsPerFile": [ + [ + "../src/filea.ts", + [ + { + "start": 20, + "length": 13, + "code": 1479, + "category": 1, + "messageText": { + "messageText": "The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"./fileB.mjs\")' call instead.", + "category": 1, + "code": 1479, + "next": [ + { + "info": true + } + ] + } + } + ] + ] + ], + "latestChangedDtsFile": "./randomFile.d.ts", + "version": "FakeTSVersion", + "size": 4462 +} + + +PolledWatches:: +/home/src/tslibs/TS/Lib/package.json: + {"pollingInterval":2000} +/home/src/tslibs/TS/package.json: + {"pollingInterval":2000} +/home/src/tslibs/package.json: + {"pollingInterval":2000} +/home/src/workspaces/node_modules/@types: + {"pollingInterval":500} +/home/src/workspaces/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/@types: + {"pollingInterval":500} +/home/src/workspaces/project/src/a/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/b/ba/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/b/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/c/ca/caa/caaa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/c/ca/caa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/c/ca/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/c/cb/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/c/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/daa/daaa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/daa/daaa/x/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/daa/daaa/x/y/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/daa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/eaa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/faa/faaa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/faa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/faa/x/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/faa/x/y/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/faa/x/y/z/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/node_modules/@types: + {"pollingInterval":500} +/home/src/workspaces/project/src/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts: + {} +/home/src/workspaces/project/package.json: + {} +/home/src/workspaces/project/src/a/randomFile.ts: + {} +/home/src/workspaces/project/src/b/ba/randomFile.ts: + {} +/home/src/workspaces/project/src/b/randomFile.ts: + {} +/home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts: + {} +/home/src/workspaces/project/src/c/ca/caa/randomFile.ts: + {} +/home/src/workspaces/project/src/c/ca/randomFile.ts: + {} +/home/src/workspaces/project/src/c/cb/randomFile.ts: + {} +/home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts: + {} +/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts: + {} +/home/src/workspaces/project/src/d/da/daa/randomFile.ts: + {} +/home/src/workspaces/project/src/d/da/randomFile.ts: + {} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts: + {} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts: + {} +/home/src/workspaces/project/src/e/ea/eaa/randomFile.ts: + {} +/home/src/workspaces/project/src/e/ea/randomFile.ts: + {} +/home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts: + {} +/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts: + {} +/home/src/workspaces/project/src/fileA.ts: + {} +/home/src/workspaces/project/src/fileB.mts: + {} +/home/src/workspaces/project/src/main.ts: + {} +/home/src/workspaces/project/src/randomFile.ts: + {} +/home/src/workspaces/project/src/tsconfig.json: + {} + + +Program root files: [ + "/home/src/workspaces/project/src/main.ts", + "/home/src/workspaces/project/src/fileA.ts", + "/home/src/workspaces/project/src/fileB.mts", + "/home/src/workspaces/project/src/randomFile.ts", + "/home/src/workspaces/project/src/a/randomFile.ts", + "/home/src/workspaces/project/src/b/ba/randomFile.ts", + "/home/src/workspaces/project/src/b/randomFile.ts", + "/home/src/workspaces/project/src/c/ca/randomFile.ts", + "/home/src/workspaces/project/src/c/ca/caa/randomFile.ts", + "/home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts", + "/home/src/workspaces/project/src/c/cb/randomFile.ts", + "/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts", + "/home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts", + "/home/src/workspaces/project/src/d/da/daa/randomFile.ts", + "/home/src/workspaces/project/src/d/da/randomFile.ts", + "/home/src/workspaces/project/src/e/ea/randomFile.ts", + "/home/src/workspaces/project/src/e/ea/eaa/randomFile.ts", + "/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts", + "/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts", + "/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts", + "/home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts" +] +Program options: { + "target": 3, + "composite": true, + "module": 100, + "outDir": "/home/src/workspaces/project/out", + "traceResolution": true, + "watch": true, + "project": "/home/src/workspaces/project/src/tsconfig.json", + "explainFiles": true, + "extendedDiagnostics": true, + "configFilePath": "/home/src/workspaces/project/src/tsconfig.json" +} +Program structureReused: SafeModules +Program files:: +/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts +/home/src/workspaces/project/src/main.ts +/home/src/workspaces/project/src/fileB.mts +/home/src/workspaces/project/src/fileA.ts +/home/src/workspaces/project/src/randomFile.ts +/home/src/workspaces/project/src/a/randomFile.ts +/home/src/workspaces/project/src/b/ba/randomFile.ts +/home/src/workspaces/project/src/b/randomFile.ts +/home/src/workspaces/project/src/c/ca/randomFile.ts +/home/src/workspaces/project/src/c/ca/caa/randomFile.ts +/home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts +/home/src/workspaces/project/src/c/cb/randomFile.ts +/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts +/home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts +/home/src/workspaces/project/src/d/da/daa/randomFile.ts +/home/src/workspaces/project/src/d/da/randomFile.ts +/home/src/workspaces/project/src/e/ea/randomFile.ts +/home/src/workspaces/project/src/e/ea/eaa/randomFile.ts +/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts +/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts +/home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts + +Semantic diagnostics in builder refreshed for:: +/home/src/workspaces/project/src/main.ts +/home/src/workspaces/project/src/fileA.ts +/home/src/workspaces/project/src/randomFile.ts +/home/src/workspaces/project/src/a/randomFile.ts +/home/src/workspaces/project/src/b/ba/randomFile.ts +/home/src/workspaces/project/src/b/randomFile.ts +/home/src/workspaces/project/src/c/ca/randomFile.ts +/home/src/workspaces/project/src/c/ca/caa/randomFile.ts +/home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts +/home/src/workspaces/project/src/c/cb/randomFile.ts +/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts +/home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts +/home/src/workspaces/project/src/d/da/daa/randomFile.ts +/home/src/workspaces/project/src/d/da/randomFile.ts +/home/src/workspaces/project/src/e/ea/randomFile.ts +/home/src/workspaces/project/src/e/ea/eaa/randomFile.ts +/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts +/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts +/home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts + +Shape signatures in builder refreshed for:: +/home/src/workspaces/project/src/main.ts (computed .d.ts) +/home/src/workspaces/project/src/filea.ts (computed .d.ts) +/home/src/workspaces/project/src/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/a/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/b/ba/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/b/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/c/ca/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/c/ca/caa/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/c/ca/caa/caaa/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/c/cb/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/d/da/daa/daaa/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/d/da/daa/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/d/da/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/e/ea/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/e/ea/eaa/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomfile.ts (computed .d.ts) +/home/src/workspaces/project/src/f/fa/faa/faaa/randomfile.ts (computed .d.ts) + +exitCode:: ExitStatus.undefined diff --git a/tests/baselines/reference/tscWatch/resolutionCache/reusing-type-ref-resolution.js b/tests/baselines/reference/tscWatch/resolutionCache/reusing-type-ref-resolution.js index 87ece2607f85f..0b62d0ab13168 100644 --- a/tests/baselines/reference/tscWatch/resolutionCache/reusing-type-ref-resolution.js +++ b/tests/baselines/reference/tscWatch/resolutionCache/reusing-type-ref-resolution.js @@ -67,6 +67,8 @@ File '/users/username/projects/project/node_modules/pkg0/index.tsx' does not exi File '/users/username/projects/project/node_modules/pkg0/index.d.ts' exists - use it as a name resolution result. Resolving real path for '/users/username/projects/project/node_modules/pkg0/index.d.ts', result '/users/username/projects/project/node_modules/pkg0/index.d.ts'. ======== Module name 'pkg0' was successfully resolved to '/users/username/projects/project/node_modules/pkg0/index.d.ts'. ======== +DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules 1 undefined Failed Lookup Locations ======== Resolving module 'pkg1' from '/users/username/projects/project/fileWithImports.ts'. ======== Module resolution kind is not specified, using 'Node10'. Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. @@ -88,6 +90,8 @@ Directory '/users/username/node_modules' does not exist, skipping all lookups in Directory '/users/node_modules' does not exist, skipping all lookups in it. Directory '/node_modules' does not exist, skipping all lookups in it. ======== Module name 'pkg1' was not resolved. ======== +DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/node_modules 1 undefined Failed Lookup Locations File '/users/username/projects/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. File '/users/username/projects/project/node_modules/package.json' does not exist. File '/users/username/projects/project/package.json' does not exist. @@ -111,10 +115,6 @@ File '/users/username/projects/project/node_modules/pkg2.d.ts' does not exist. File '/users/username/projects/project/node_modules/pkg2/index.d.ts' exists - use it as a name resolution result. Resolving real path for '/users/username/projects/project/node_modules/pkg2/index.d.ts', result '/users/username/projects/project/node_modules/pkg2/index.d.ts'. ======== Type reference directive 'pkg2' was successfully resolved to '/users/username/projects/project/node_modules/pkg2/index.d.ts', primary: false. ======== -DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules 1 undefined Failed Lookup Locations -DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/node_modules 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/node_modules 1 undefined Failed Lookup Locations ======== Resolving type reference directive 'pkg3', containing file '/users/username/projects/project/fileWithTypeRefs.ts', root directory '/users/username/projects/project/node_modules/@types,/users/username/projects/node_modules/@types,/users/username/node_modules/@types,/users/node_modules/@types,/node_modules/@types'. ======== Resolving with primary search path '/users/username/projects/project/node_modules/@types, /users/username/projects/node_modules/@types, /users/username/node_modules/@types, /users/node_modules/@types, /node_modules/@types'. Directory '/users/username/projects/project/node_modules/@types' does not exist, skipping all lookups in it. diff --git a/tests/baselines/reference/tscWatch/resolutionCache/scoped-package-installation.js b/tests/baselines/reference/tscWatch/resolutionCache/scoped-package-installation.js index 710b8c963015c..f8e77ed4bc4e0 100644 --- a/tests/baselines/reference/tscWatch/resolutionCache/scoped-package-installation.js +++ b/tests/baselines/reference/tscWatch/resolutionCache/scoped-package-installation.js @@ -60,13 +60,13 @@ Directory '/user/username/node_modules' does not exist, skipping all lookups in Directory '/user/node_modules' does not exist, skipping all lookups in it. Directory '/node_modules' does not exist, skipping all lookups in it. ======== Module name '@myapp/ts-types' was not resolved. ======== -FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 250 undefined Source file DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/lib 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/lib 1 undefined Failed Lookup Locations DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Failed Lookup Locations DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined Failed Lookup Locations +FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 250 undefined Source file DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Type roots Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Type roots DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Type roots diff --git a/tests/baselines/reference/tscWatch/resolutionCache/works-when-installing-something-in-node_modules-or-@types-when-there-is-no-notification-from-fs-for-index-file.js b/tests/baselines/reference/tscWatch/resolutionCache/works-when-installing-something-in-node_modules-or-@types-when-there-is-no-notification-from-fs-for-index-file.js index ff1167e384188..cdb0a43ea4db4 100644 --- a/tests/baselines/reference/tscWatch/resolutionCache/works-when-installing-something-in-node_modules-or-@types-when-there-is-no-notification-from-fs-for-index-file.js +++ b/tests/baselines/reference/tscWatch/resolutionCache/works-when-installing-something-in-node_modules-or-@types-when-there-is-no-notification-from-fs-for-index-file.js @@ -275,6 +275,8 @@ FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/ FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined File location affecting resolution FileWatcher:: Close:: WatchInfo: /user/username/projects/package.json 2000 undefined File location affecting resolution FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types/node/ts3.6/package.json 2000 undefined File location affecting resolution +DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Failed Lookup Locations worker.ts:1:1 - error TS2580: Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`. 1 process.on("uncaughtException"); @@ -325,11 +327,13 @@ FsWatches *deleted*:: FsWatchesRecursive:: /user/username/projects/myproject: {} -/user/username/projects/myproject/node_modules: - {} /user/username/projects/myproject/node_modules/@types: {} +FsWatchesRecursive *deleted*:: +/user/username/projects/myproject/node_modules: + {} + Program root files: [ "/user/username/projects/myproject/worker.ts" @@ -363,43 +367,29 @@ export const foo = 10; Output:: DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/@types :: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Type roots Scheduling update -Scheduling invalidateFailedLookup Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/@types :: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Type roots -DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/@types :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Failed Lookup Locations -Scheduling invalidateFailedLookup, Cancelled earlier one -Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/@types :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Failed Lookup Locations DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/@types :: WatchInfo: /user/username/projects/myproject 1 undefined Wild card directory Scheduling update Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/@types :: WatchInfo: /user/username/projects/myproject 1 undefined Wild card directory DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/@types/mocha :: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Type roots Scheduling update -Scheduling invalidateFailedLookup, Cancelled earlier one Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/@types/mocha :: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Type roots -DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/@types/mocha :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Failed Lookup Locations -Scheduling invalidateFailedLookup, Cancelled earlier one -Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/@types/mocha :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Failed Lookup Locations DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/@types/mocha :: WatchInfo: /user/username/projects/myproject 1 undefined Wild card directory Scheduling update Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/@types/mocha :: WatchInfo: /user/username/projects/myproject 1 undefined Wild card directory DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/@types/mocha/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Type roots Scheduling update -Scheduling invalidateFailedLookup, Cancelled earlier one Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/@types/mocha/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Type roots -DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/@types/mocha/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Failed Lookup Locations -Scheduling invalidateFailedLookup, Cancelled earlier one -Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/@types/mocha/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Failed Lookup Locations DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/@types/mocha/index.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Wild card directory Scheduling update Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/@types/mocha/index.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Wild card directory -Timeout callback:: count: 2 -42: timerToInvalidateFailedLookupResolutions *new* -43: timerToUpdateProgram *new* +Timeout callback:: count: 1 +37: timerToUpdateProgram *new* -Before running Timeout callback:: count: 2 -42: timerToInvalidateFailedLookupResolutions -43: timerToUpdateProgram +Before running Timeout callback:: count: 1 +37: timerToUpdateProgram Host is moving to new time After running Timeout callback:: count: 0 @@ -411,6 +401,8 @@ Synchronizing program CreatingProgramWith:: roots: ["/user/username/projects/myproject/worker.ts"] options: {"watch":true,"extendedDiagnostics":true,"configFilePath":"/user/username/projects/myproject/tsconfig.json"} +DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Failed Lookup Locations FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types/mocha/index.d.ts 250 undefined Source file FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types/mocha/package.json 2000 undefined File location affecting resolution FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types/package.json 2000 undefined File location affecting resolution @@ -454,7 +446,7 @@ FsWatches:: FsWatchesRecursive:: /user/username/projects/myproject: {} -/user/username/projects/myproject/node_modules: +/user/username/projects/myproject/node_modules: *new* {} /user/username/projects/myproject/node_modules/@types: {} @@ -500,12 +492,12 @@ Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myprojec Timeout callback:: count: 2 -46: timerToInvalidateFailedLookupResolutions *new* -47: timerToUpdateProgram *new* +40: timerToInvalidateFailedLookupResolutions *new* +41: timerToUpdateProgram *new* Before running Timeout callback:: count: 2 -46: timerToInvalidateFailedLookupResolutions -47: timerToUpdateProgram +40: timerToInvalidateFailedLookupResolutions +41: timerToUpdateProgram Host is moving to new time After running Timeout callback:: count: 0 @@ -629,12 +621,12 @@ Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myprojec Timeout callback:: count: 2 -52: timerToUpdateProgram *new* -54: timerToInvalidateFailedLookupResolutions *new* +46: timerToUpdateProgram *new* +48: timerToInvalidateFailedLookupResolutions *new* Before running Timeout callback:: count: 2 -52: timerToUpdateProgram -54: timerToInvalidateFailedLookupResolutions +46: timerToUpdateProgram +48: timerToInvalidateFailedLookupResolutions After running Timeout callback:: count: 0 Output:: @@ -708,7 +700,7 @@ FsWatchesRecursive:: {} Timeout callback:: count: 0 -54: timerToInvalidateFailedLookupResolutions *deleted* +48: timerToInvalidateFailedLookupResolutions *deleted* Before running Timeout callback:: count: 0 diff --git a/tests/baselines/reference/tscWatch/symlinks/monorepo-style-sibling-packages-symlinked-Linux.js b/tests/baselines/reference/tscWatch/symlinks/monorepo-style-sibling-packages-symlinked-Linux.js index 97074fa5f0e5d..844f3be8b5d86 100644 --- a/tests/baselines/reference/tscWatch/symlinks/monorepo-style-sibling-packages-symlinked-Linux.js +++ b/tests/baselines/reference/tscWatch/symlinks/monorepo-style-sibling-packages-symlinked-Linux.js @@ -163,7 +163,6 @@ Directory '/home/src/node_modules' does not exist, skipping all lookups in it. Directory '/home/node_modules' does not exist, skipping all lookups in it. Directory '/node_modules' does not exist, skipping all lookups in it. ======== Module name 'package1' was not resolved. ======== -FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts 250 undefined Source file DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/src 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/src 1 undefined Failed Lookup Locations DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/node_modules 1 undefined Failed Lookup Locations @@ -177,6 +176,7 @@ Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/n DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Failed Lookup Locations FileWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package1/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts 250 undefined Source file DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/node_modules/@types 1 undefined Type roots Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/node_modules/@types 1 undefined Type roots DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/node_modules/@types 1 undefined Type roots diff --git a/tests/baselines/reference/tscWatch/symlinks/monorepo-style-sibling-packages-symlinked-package1-built-Linux.js b/tests/baselines/reference/tscWatch/symlinks/monorepo-style-sibling-packages-symlinked-package1-built-Linux.js index a7456eb91e57a..e35708831e441 100644 --- a/tests/baselines/reference/tscWatch/symlinks/monorepo-style-sibling-packages-symlinked-package1-built-Linux.js +++ b/tests/baselines/reference/tscWatch/symlinks/monorepo-style-sibling-packages-symlinked-package1-built-Linux.js @@ -140,8 +140,6 @@ File '/home/src/projects/project/node_modules/package1/dist/index.d.ts' exists - 'package.json' does not have a 'peerDependencies' field. Resolving real path for '/home/src/projects/project/node_modules/package1/dist/index.d.ts', result '/home/src/projects/project/packages/package1/dist/index.d.ts'. ======== Module name 'package1' was successfully resolved to '/home/src/projects/project/packages/package1/dist/index.d.ts' with Package ID 'package1/dist/index.d.ts@1.0.0'. ======== -FileWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package1/dist/index.d.ts 250 undefined Source file -FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts 250 undefined Source file DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/src 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/src 1 undefined Failed Lookup Locations DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/node_modules 1 undefined Failed Lookup Locations @@ -153,6 +151,8 @@ Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/n DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/package1 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/package1 1 undefined Failed Lookup Locations FileWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package1/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package1/dist/index.d.ts 250 undefined Source file +FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts 250 undefined Source file DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/node_modules/@types 1 undefined Type roots Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/node_modules/@types 1 undefined Type roots DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/node_modules/@types 1 undefined Type roots diff --git a/tests/baselines/reference/tscWatch/symlinks/monorepo-style-sibling-packages-symlinked-package1-built.js b/tests/baselines/reference/tscWatch/symlinks/monorepo-style-sibling-packages-symlinked-package1-built.js index 5a4cef48cb71c..4911af2884fd0 100644 --- a/tests/baselines/reference/tscWatch/symlinks/monorepo-style-sibling-packages-symlinked-package1-built.js +++ b/tests/baselines/reference/tscWatch/symlinks/monorepo-style-sibling-packages-symlinked-package1-built.js @@ -140,8 +140,6 @@ File '/home/src/projects/project/node_modules/package1/dist/index.d.ts' exists - 'package.json' does not have a 'peerDependencies' field. Resolving real path for '/home/src/projects/project/node_modules/package1/dist/index.d.ts', result '/home/src/projects/project/packages/package1/dist/index.d.ts'. ======== Module name 'package1' was successfully resolved to '/home/src/projects/project/packages/package1/dist/index.d.ts' with Package ID 'package1/dist/index.d.ts@1.0.0'. ======== -FileWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package1/dist/index.d.ts 250 undefined Source file -FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts 250 undefined Source file DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/src 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/src 1 undefined Failed Lookup Locations DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/node_modules 1 undefined Failed Lookup Locations @@ -153,6 +151,8 @@ Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/n DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/package1 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/package1 1 undefined Failed Lookup Locations FileWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package1/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package1/dist/index.d.ts 250 undefined Source file +FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts 250 undefined Source file DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/node_modules/@types 1 undefined Type roots Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/node_modules/@types 1 undefined Type roots DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/node_modules/@types 1 undefined Type roots diff --git a/tests/baselines/reference/tscWatch/symlinks/monorepo-style-sibling-packages-symlinked.js b/tests/baselines/reference/tscWatch/symlinks/monorepo-style-sibling-packages-symlinked.js index c86333f8ff470..b3ae532e677e5 100644 --- a/tests/baselines/reference/tscWatch/symlinks/monorepo-style-sibling-packages-symlinked.js +++ b/tests/baselines/reference/tscWatch/symlinks/monorepo-style-sibling-packages-symlinked.js @@ -163,7 +163,6 @@ Directory '/home/src/node_modules' does not exist, skipping all lookups in it. Directory '/home/node_modules' does not exist, skipping all lookups in it. Directory '/node_modules' does not exist, skipping all lookups in it. ======== Module name 'package1' was not resolved. ======== -FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts 250 undefined Source file DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/src 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/src 1 undefined Failed Lookup Locations DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/node_modules 1 undefined Failed Lookup Locations @@ -177,6 +176,7 @@ Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/n DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Failed Lookup Locations FileWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package1/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts 250 undefined Source file DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/node_modules/@types 1 undefined Type roots Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/node_modules/@types 1 undefined Type roots DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/node_modules/@types 1 undefined Type roots diff --git a/tests/baselines/reference/tscWatch/symlinks/packages-outside-project-folder-Linux.js b/tests/baselines/reference/tscWatch/symlinks/packages-outside-project-folder-Linux.js index 30d1a49c81a8a..798d79065d6e1 100644 --- a/tests/baselines/reference/tscWatch/symlinks/packages-outside-project-folder-Linux.js +++ b/tests/baselines/reference/tscWatch/symlinks/packages-outside-project-folder-Linux.js @@ -165,7 +165,6 @@ Directory '/home/src/node_modules' does not exist, skipping all lookups in it. Directory '/home/node_modules' does not exist, skipping all lookups in it. Directory '/node_modules' does not exist, skipping all lookups in it. ======== Module name 'a' was not resolved. ======== -FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 250 undefined Source file DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Failed Lookup Locations DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules 1 undefined Failed Lookup Locations @@ -181,6 +180,7 @@ Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/node_mo DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Failed Lookup Locations FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 250 undefined Source file DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/@types 1 undefined Type roots Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/@types 1 undefined Type roots DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules/@types 1 undefined Type roots @@ -550,6 +550,11 @@ File '/home/src/projects/a/1/a-impl/a/node_modules/c/lib/index.d.ts' exists - us 'package.json' does not have a 'peerDependencies' field. Resolving real path for '/home/src/projects/a/1/a-impl/a/node_modules/c/lib/index.d.ts', result '/home/src/projects/c/3/c-impl/c/lib/index.d.ts'. ======== Module name 'c' was successfully resolved to '/home/src/projects/c/3/c-impl/c/lib/index.d.ts' with Package ID 'c/lib/index.d.ts@1.0.0'. ======== +DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations +DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations +FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined File location affecting resolution FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/a.d.ts 250 undefined Source file FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 250 undefined Source file ======== Resolving module './c' from '/home/src/projects/c/3/c-impl/c/lib/index.d.ts'. ======== @@ -562,11 +567,6 @@ File '/home/src/projects/c/3/c-impl/c/lib/c.d.ts' exists - use it as a name reso DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Failed Lookup Locations FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 250 undefined Source file -DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations -DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations -FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined File location affecting resolution DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Failed Lookup Locations DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules 1 undefined Failed Lookup Locations @@ -949,9 +949,6 @@ Directory '/home/src/node_modules' does not exist, skipping all lookups in it. Directory '/home/node_modules' does not exist, skipping all lookups in it. Directory '/node_modules' does not exist, skipping all lookups in it. ======== Module name 'a' was not resolved. ======== -FileWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 250 undefined Source file -FileWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 250 undefined Source file -FileWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/index.d.ts 250 undefined Source file DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Failed Lookup Locations DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules 1 undefined Failed Lookup Locations @@ -962,14 +959,17 @@ DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/node_modules 1 undefi Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/node_modules 1 undefined Failed Lookup Locations DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Failed Lookup Locations -DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Failed Lookup Locations +FileWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 250 undefined Source file +FileWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 250 undefined Source file +FileWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/index.d.ts 250 undefined Source file DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Failed Lookup Locations -DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations +DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Failed Lookup Locations DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations +DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations FileWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined File location affecting resolution src/index.ts:1:19 - error TS2307: Cannot find module 'a' or its corresponding type declarations. @@ -1318,15 +1318,22 @@ Module resolution kind is not specified, using 'Node10'. Loading module 'c' from 'node_modules' folder, target file types: TypeScript, Declaration. Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. Directory '/home/src/projects/a/1/a-impl/a/lib/node_modules' does not exist, skipping all lookups in it. -File '/home/src/projects/a/1/a-impl/a/node_modules/c/package.json' exists according to earlier cached lookups. +Found 'package.json' at '/home/src/projects/a/1/a-impl/a/node_modules/c/package.json'. File '/home/src/projects/a/1/a-impl/a/node_modules/c.ts' does not exist. File '/home/src/projects/a/1/a-impl/a/node_modules/c.tsx' does not exist. File '/home/src/projects/a/1/a-impl/a/node_modules/c.d.ts' does not exist. +'package.json' does not have a 'typesVersions' field. 'package.json' does not have a 'typings' field. 'package.json' has 'types' field './lib/index.d.ts' that references '/home/src/projects/a/1/a-impl/a/node_modules/c/lib/index.d.ts'. File '/home/src/projects/a/1/a-impl/a/node_modules/c/lib/index.d.ts' exists - use it as a name resolution result. +'package.json' does not have a 'peerDependencies' field. Resolving real path for '/home/src/projects/a/1/a-impl/a/node_modules/c/lib/index.d.ts', result '/home/src/projects/c/3/c-impl/c/lib/index.d.ts'. ======== Module name 'c' was successfully resolved to '/home/src/projects/c/3/c-impl/c/lib/index.d.ts' with Package ID 'c/lib/index.d.ts@1.0.0'. ======== +DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations +DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations +FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined File location affecting resolution FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/a.d.ts 250 undefined Source file FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 250 undefined Source file ======== Resolving module './c' from '/home/src/projects/c/3/c-impl/c/lib/index.d.ts'. ======== @@ -1339,11 +1346,6 @@ File '/home/src/projects/c/3/c-impl/c/lib/c.d.ts' exists - use it as a name reso DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Failed Lookup Locations FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 250 undefined Source file -DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations -DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations -FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined File location affecting resolution DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Failed Lookup Locations DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules 1 undefined Failed Lookup Locations diff --git a/tests/baselines/reference/tscWatch/symlinks/packages-outside-project-folder-MacOs.js b/tests/baselines/reference/tscWatch/symlinks/packages-outside-project-folder-MacOs.js index ae871b0c7ad87..8aa7a2a19b1ae 100644 --- a/tests/baselines/reference/tscWatch/symlinks/packages-outside-project-folder-MacOs.js +++ b/tests/baselines/reference/tscWatch/symlinks/packages-outside-project-folder-MacOs.js @@ -165,7 +165,6 @@ Directory '/home/src/node_modules' does not exist, skipping all lookups in it. Directory '/home/node_modules' does not exist, skipping all lookups in it. Directory '/node_modules' does not exist, skipping all lookups in it. ======== Module name 'a' was not resolved. ======== -FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 250 undefined Source file DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Failed Lookup Locations DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules 1 undefined Failed Lookup Locations @@ -181,6 +180,7 @@ Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/node_mo DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Failed Lookup Locations FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 250 undefined Source file DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/@types 1 undefined Type roots Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/@types 1 undefined Type roots DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules/@types 1 undefined Type roots @@ -509,6 +509,11 @@ File '/home/src/projects/a/1/a-impl/a/node_modules/c/lib/index.d.ts' exists - us 'package.json' does not have a 'peerDependencies' field. Resolving real path for '/home/src/projects/a/1/a-impl/a/node_modules/c/lib/index.d.ts', result '/home/src/projects/c/3/c-impl/c/lib/index.d.ts'. ======== Module name 'c' was successfully resolved to '/home/src/projects/c/3/c-impl/c/lib/index.d.ts' with Package ID 'c/lib/index.d.ts@1.0.0'. ======== +DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations +DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations +FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined File location affecting resolution FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/a.d.ts 250 undefined Source file FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 250 undefined Source file ======== Resolving module './c' from '/home/src/projects/c/3/c-impl/c/lib/index.d.ts'. ======== @@ -521,11 +526,6 @@ File '/home/src/projects/c/3/c-impl/c/lib/c.d.ts' exists - use it as a name reso DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Failed Lookup Locations FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 250 undefined Source file -DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations -DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations -FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined File location affecting resolution DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Failed Lookup Locations DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules 1 undefined Failed Lookup Locations @@ -928,9 +928,6 @@ Directory '/home/src/node_modules' does not exist, skipping all lookups in it. Directory '/home/node_modules' does not exist, skipping all lookups in it. Directory '/node_modules' does not exist, skipping all lookups in it. ======== Module name 'a' was not resolved. ======== -FileWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 250 undefined Source file -FileWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 250 undefined Source file -FileWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/index.d.ts 250 undefined Source file DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Failed Lookup Locations DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules 1 undefined Failed Lookup Locations @@ -941,14 +938,17 @@ DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/node_modules 1 undefi Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/node_modules 1 undefined Failed Lookup Locations DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Failed Lookup Locations -DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a 1 undefined Failed Lookup Locations +FileWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 250 undefined Source file +FileWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 250 undefined Source file +FileWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/index.d.ts 250 undefined Source file DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c 1 undefined Failed Lookup Locations -DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations +DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a 1 undefined Failed Lookup Locations DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations +DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations FileWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined File location affecting resolution src/index.ts:1:19 - error TS2307: Cannot find module 'a' or its corresponding type declarations. @@ -1241,15 +1241,22 @@ Module resolution kind is not specified, using 'Node10'. Loading module 'c' from 'node_modules' folder, target file types: TypeScript, Declaration. Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. Directory '/home/src/projects/a/1/a-impl/a/lib/node_modules' does not exist, skipping all lookups in it. -File '/home/src/projects/a/1/a-impl/a/node_modules/c/package.json' exists according to earlier cached lookups. +Found 'package.json' at '/home/src/projects/a/1/a-impl/a/node_modules/c/package.json'. File '/home/src/projects/a/1/a-impl/a/node_modules/c.ts' does not exist. File '/home/src/projects/a/1/a-impl/a/node_modules/c.tsx' does not exist. File '/home/src/projects/a/1/a-impl/a/node_modules/c.d.ts' does not exist. +'package.json' does not have a 'typesVersions' field. 'package.json' does not have a 'typings' field. 'package.json' has 'types' field './lib/index.d.ts' that references '/home/src/projects/a/1/a-impl/a/node_modules/c/lib/index.d.ts'. File '/home/src/projects/a/1/a-impl/a/node_modules/c/lib/index.d.ts' exists - use it as a name resolution result. +'package.json' does not have a 'peerDependencies' field. Resolving real path for '/home/src/projects/a/1/a-impl/a/node_modules/c/lib/index.d.ts', result '/home/src/projects/c/3/c-impl/c/lib/index.d.ts'. ======== Module name 'c' was successfully resolved to '/home/src/projects/c/3/c-impl/c/lib/index.d.ts' with Package ID 'c/lib/index.d.ts@1.0.0'. ======== +DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations +DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations +FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined File location affecting resolution FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/a.d.ts 250 undefined Source file FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 250 undefined Source file ======== Resolving module './c' from '/home/src/projects/c/3/c-impl/c/lib/index.d.ts'. ======== @@ -1262,11 +1269,6 @@ File '/home/src/projects/c/3/c-impl/c/lib/c.d.ts' exists - use it as a name reso DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Failed Lookup Locations FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 250 undefined Source file -DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations -DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations -FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined File location affecting resolution DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Failed Lookup Locations DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules 1 undefined Failed Lookup Locations diff --git a/tests/baselines/reference/tscWatch/symlinks/packages-outside-project-folder-Windows.js b/tests/baselines/reference/tscWatch/symlinks/packages-outside-project-folder-Windows.js index f3e45977b87f4..172bbe821d184 100644 --- a/tests/baselines/reference/tscWatch/symlinks/packages-outside-project-folder-Windows.js +++ b/tests/baselines/reference/tscWatch/symlinks/packages-outside-project-folder-Windows.js @@ -165,7 +165,6 @@ Directory '/home/src/node_modules' does not exist, skipping all lookups in it. Directory '/home/node_modules' does not exist, skipping all lookups in it. Directory '/node_modules' does not exist, skipping all lookups in it. ======== Module name 'a' was not resolved. ======== -FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 250 undefined Source file DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Failed Lookup Locations DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules 1 undefined Failed Lookup Locations @@ -181,6 +180,7 @@ Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/node_mo DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Failed Lookup Locations FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/package.json 2000 undefined File location affecting resolution +FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 250 undefined Source file DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/@types 1 undefined Type roots Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/@types 1 undefined Type roots DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules/@types 1 undefined Type roots @@ -509,6 +509,11 @@ File '/home/src/projects/a/1/a-impl/a/node_modules/c/lib/index.d.ts' exists - us 'package.json' does not have a 'peerDependencies' field. Resolving real path for '/home/src/projects/a/1/a-impl/a/node_modules/c/lib/index.d.ts', result '/home/src/projects/c/3/c-impl/c/lib/index.d.ts'. ======== Module name 'c' was successfully resolved to '/home/src/projects/c/3/c-impl/c/lib/index.d.ts' with Package ID 'c/lib/index.d.ts@1.0.0'. ======== +DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations +DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations +FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined File location affecting resolution FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/a.d.ts 250 undefined Source file FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 250 undefined Source file ======== Resolving module './c' from '/home/src/projects/c/3/c-impl/c/lib/index.d.ts'. ======== @@ -521,11 +526,6 @@ File '/home/src/projects/c/3/c-impl/c/lib/c.d.ts' exists - use it as a name reso DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Failed Lookup Locations FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 250 undefined Source file -DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations -DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations -FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined File location affecting resolution DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Failed Lookup Locations DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules 1 undefined Failed Lookup Locations @@ -868,9 +868,6 @@ Directory '/home/src/node_modules' does not exist, skipping all lookups in it. Directory '/home/node_modules' does not exist, skipping all lookups in it. Directory '/node_modules' does not exist, skipping all lookups in it. ======== Module name 'a' was not resolved. ======== -FileWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 250 undefined Source file -FileWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 250 undefined Source file -FileWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/index.d.ts 250 undefined Source file DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Failed Lookup Locations DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules 1 undefined Failed Lookup Locations @@ -881,14 +878,17 @@ DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/node_modules 1 undefi Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/node_modules 1 undefined Failed Lookup Locations DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Failed Lookup Locations -DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a 1 undefined Failed Lookup Locations +FileWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 250 undefined Source file +FileWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 250 undefined Source file +FileWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/index.d.ts 250 undefined Source file DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c 1 undefined Failed Lookup Locations -DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations +DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a 1 undefined Failed Lookup Locations DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations +DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations FileWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined File location affecting resolution src/index.ts:1:19 - error TS2307: Cannot find module 'a' or its corresponding type declarations. @@ -1181,15 +1181,22 @@ Module resolution kind is not specified, using 'Node10'. Loading module 'c' from 'node_modules' folder, target file types: TypeScript, Declaration. Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. Directory '/home/src/projects/a/1/a-impl/a/lib/node_modules' does not exist, skipping all lookups in it. -File '/home/src/projects/a/1/a-impl/a/node_modules/c/package.json' exists according to earlier cached lookups. +Found 'package.json' at '/home/src/projects/a/1/a-impl/a/node_modules/c/package.json'. File '/home/src/projects/a/1/a-impl/a/node_modules/c.ts' does not exist. File '/home/src/projects/a/1/a-impl/a/node_modules/c.tsx' does not exist. File '/home/src/projects/a/1/a-impl/a/node_modules/c.d.ts' does not exist. +'package.json' does not have a 'typesVersions' field. 'package.json' does not have a 'typings' field. 'package.json' has 'types' field './lib/index.d.ts' that references '/home/src/projects/a/1/a-impl/a/node_modules/c/lib/index.d.ts'. File '/home/src/projects/a/1/a-impl/a/node_modules/c/lib/index.d.ts' exists - use it as a name resolution result. +'package.json' does not have a 'peerDependencies' field. Resolving real path for '/home/src/projects/a/1/a-impl/a/node_modules/c/lib/index.d.ts', result '/home/src/projects/c/3/c-impl/c/lib/index.d.ts'. ======== Module name 'c' was successfully resolved to '/home/src/projects/c/3/c-impl/c/lib/index.d.ts' with Package ID 'c/lib/index.d.ts@1.0.0'. ======== +DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations +DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations +FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined File location affecting resolution FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/a.d.ts 250 undefined Source file FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 250 undefined Source file ======== Resolving module './c' from '/home/src/projects/c/3/c-impl/c/lib/index.d.ts'. ======== @@ -1202,11 +1209,6 @@ File '/home/src/projects/c/3/c-impl/c/lib/c.d.ts' exists - use it as a name reso DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Failed Lookup Locations FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 250 undefined Source file -DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations -DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations -FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined File location affecting resolution DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Failed Lookup Locations DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules 1 undefined Failed Lookup Locations diff --git a/tests/baselines/reference/tscWatch/symlinks/packages-outside-project-folder-built-Linux.js b/tests/baselines/reference/tscWatch/symlinks/packages-outside-project-folder-built-Linux.js index dec3c3812a9f7..7f4ce8ce93258 100644 --- a/tests/baselines/reference/tscWatch/symlinks/packages-outside-project-folder-built-Linux.js +++ b/tests/baselines/reference/tscWatch/symlinks/packages-outside-project-folder-built-Linux.js @@ -214,6 +214,11 @@ File '/home/src/projects/b/2/b-impl/b/node_modules/a/lib/index.d.ts' exists - us 'package.json' does not have a 'peerDependencies' field. Resolving real path for '/home/src/projects/b/2/b-impl/b/node_modules/a/lib/index.d.ts', result '/home/src/projects/a/1/a-impl/a/lib/index.d.ts'. ======== Module name 'a' was successfully resolved to '/home/src/projects/a/1/a-impl/a/lib/index.d.ts' with Package ID 'a/lib/index.d.ts@1.0.0'. ======== +DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Failed Lookup Locations +DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules 1 undefined Failed Lookup Locations +FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/package.json 2000 undefined File location affecting resolution FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/index.d.ts 250 undefined Source file ======== Resolving module './a' from '/home/src/projects/a/1/a-impl/a/lib/index.d.ts'. ======== Module resolution kind is not specified, using 'Node10'. @@ -240,6 +245,11 @@ File '/home/src/projects/a/1/a-impl/a/node_modules/c/lib/index.d.ts' exists - us 'package.json' does not have a 'peerDependencies' field. Resolving real path for '/home/src/projects/a/1/a-impl/a/node_modules/c/lib/index.d.ts', result '/home/src/projects/c/3/c-impl/c/lib/index.d.ts'. ======== Module name 'c' was successfully resolved to '/home/src/projects/c/3/c-impl/c/lib/index.d.ts' with Package ID 'c/lib/index.d.ts@1.0.0'. ======== +DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations +DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations +FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined File location affecting resolution FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/a.d.ts 250 undefined Source file FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 250 undefined Source file ======== Resolving module './c' from '/home/src/projects/c/3/c-impl/c/lib/index.d.ts'. ======== @@ -253,16 +263,6 @@ DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 unde Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Failed Lookup Locations FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 250 undefined Source file FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 250 undefined Source file -DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Failed Lookup Locations -DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules 1 undefined Failed Lookup Locations -FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/package.json 2000 undefined File location affecting resolution -DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations -DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations -FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined File location affecting resolution DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/@types 1 undefined Type roots Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/@types 1 undefined Type roots DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules/@types 1 undefined Type roots @@ -670,9 +670,6 @@ Directory '/home/src/node_modules' does not exist, skipping all lookups in it. Directory '/home/node_modules' does not exist, skipping all lookups in it. Directory '/node_modules' does not exist, skipping all lookups in it. ======== Module name 'a' was not resolved. ======== -FileWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 250 undefined Source file -FileWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 250 undefined Source file -FileWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/index.d.ts 250 undefined Source file DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Failed Lookup Locations DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules 1 undefined Failed Lookup Locations @@ -683,14 +680,17 @@ DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/node_modules 1 undefi Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/node_modules 1 undefined Failed Lookup Locations DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Failed Lookup Locations -DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Failed Lookup Locations +FileWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 250 undefined Source file +FileWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 250 undefined Source file +FileWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/index.d.ts 250 undefined Source file DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Failed Lookup Locations -DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations +DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Failed Lookup Locations DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations +DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations FileWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined File location affecting resolution src/index.ts:1:19 - error TS2307: Cannot find module 'a' or its corresponding type declarations. @@ -1039,15 +1039,22 @@ Module resolution kind is not specified, using 'Node10'. Loading module 'c' from 'node_modules' folder, target file types: TypeScript, Declaration. Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. Directory '/home/src/projects/a/1/a-impl/a/lib/node_modules' does not exist, skipping all lookups in it. -File '/home/src/projects/a/1/a-impl/a/node_modules/c/package.json' exists according to earlier cached lookups. +Found 'package.json' at '/home/src/projects/a/1/a-impl/a/node_modules/c/package.json'. File '/home/src/projects/a/1/a-impl/a/node_modules/c.ts' does not exist. File '/home/src/projects/a/1/a-impl/a/node_modules/c.tsx' does not exist. File '/home/src/projects/a/1/a-impl/a/node_modules/c.d.ts' does not exist. +'package.json' does not have a 'typesVersions' field. 'package.json' does not have a 'typings' field. 'package.json' has 'types' field './lib/index.d.ts' that references '/home/src/projects/a/1/a-impl/a/node_modules/c/lib/index.d.ts'. File '/home/src/projects/a/1/a-impl/a/node_modules/c/lib/index.d.ts' exists - use it as a name resolution result. +'package.json' does not have a 'peerDependencies' field. Resolving real path for '/home/src/projects/a/1/a-impl/a/node_modules/c/lib/index.d.ts', result '/home/src/projects/c/3/c-impl/c/lib/index.d.ts'. ======== Module name 'c' was successfully resolved to '/home/src/projects/c/3/c-impl/c/lib/index.d.ts' with Package ID 'c/lib/index.d.ts@1.0.0'. ======== +DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations +DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations +FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined File location affecting resolution FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/a.d.ts 250 undefined Source file FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 250 undefined Source file ======== Resolving module './c' from '/home/src/projects/c/3/c-impl/c/lib/index.d.ts'. ======== @@ -1060,11 +1067,6 @@ File '/home/src/projects/c/3/c-impl/c/lib/c.d.ts' exists - use it as a name reso DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Failed Lookup Locations FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 250 undefined Source file -DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations -DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations -FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined File location affecting resolution DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Failed Lookup Locations DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules 1 undefined Failed Lookup Locations diff --git a/tests/baselines/reference/tscWatch/symlinks/packages-outside-project-folder-built-MacOs.js b/tests/baselines/reference/tscWatch/symlinks/packages-outside-project-folder-built-MacOs.js index 9aeaaf57ff42d..9f779addc51dc 100644 --- a/tests/baselines/reference/tscWatch/symlinks/packages-outside-project-folder-built-MacOs.js +++ b/tests/baselines/reference/tscWatch/symlinks/packages-outside-project-folder-built-MacOs.js @@ -214,6 +214,11 @@ File '/home/src/projects/b/2/b-impl/b/node_modules/a/lib/index.d.ts' exists - us 'package.json' does not have a 'peerDependencies' field. Resolving real path for '/home/src/projects/b/2/b-impl/b/node_modules/a/lib/index.d.ts', result '/home/src/projects/a/1/a-impl/a/lib/index.d.ts'. ======== Module name 'a' was successfully resolved to '/home/src/projects/a/1/a-impl/a/lib/index.d.ts' with Package ID 'a/lib/index.d.ts@1.0.0'. ======== +DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Failed Lookup Locations +DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules 1 undefined Failed Lookup Locations +FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/package.json 2000 undefined File location affecting resolution FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/index.d.ts 250 undefined Source file ======== Resolving module './a' from '/home/src/projects/a/1/a-impl/a/lib/index.d.ts'. ======== Module resolution kind is not specified, using 'Node10'. @@ -240,6 +245,11 @@ File '/home/src/projects/a/1/a-impl/a/node_modules/c/lib/index.d.ts' exists - us 'package.json' does not have a 'peerDependencies' field. Resolving real path for '/home/src/projects/a/1/a-impl/a/node_modules/c/lib/index.d.ts', result '/home/src/projects/c/3/c-impl/c/lib/index.d.ts'. ======== Module name 'c' was successfully resolved to '/home/src/projects/c/3/c-impl/c/lib/index.d.ts' with Package ID 'c/lib/index.d.ts@1.0.0'. ======== +DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations +DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations +FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined File location affecting resolution FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/a.d.ts 250 undefined Source file FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 250 undefined Source file ======== Resolving module './c' from '/home/src/projects/c/3/c-impl/c/lib/index.d.ts'. ======== @@ -253,16 +263,6 @@ DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Failed Lo Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Failed Lookup Locations FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 250 undefined Source file FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 250 undefined Source file -DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Failed Lookup Locations -DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules 1 undefined Failed Lookup Locations -FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/package.json 2000 undefined File location affecting resolution -DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations -DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations -FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined File location affecting resolution DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/@types 1 undefined Type roots Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/@types 1 undefined Type roots DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules/@types 1 undefined Type roots @@ -712,9 +712,6 @@ Directory '/home/src/node_modules' does not exist, skipping all lookups in it. Directory '/home/node_modules' does not exist, skipping all lookups in it. Directory '/node_modules' does not exist, skipping all lookups in it. ======== Module name 'a' was not resolved. ======== -FileWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 250 undefined Source file -FileWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 250 undefined Source file -FileWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/index.d.ts 250 undefined Source file DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Failed Lookup Locations DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules 1 undefined Failed Lookup Locations @@ -725,14 +722,17 @@ DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/node_modules 1 undefi Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/node_modules 1 undefined Failed Lookup Locations DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Failed Lookup Locations -DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a 1 undefined Failed Lookup Locations +FileWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 250 undefined Source file +FileWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 250 undefined Source file +FileWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/index.d.ts 250 undefined Source file DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c 1 undefined Failed Lookup Locations -DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations +DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a 1 undefined Failed Lookup Locations DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations +DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations FileWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined File location affecting resolution src/index.ts:1:19 - error TS2307: Cannot find module 'a' or its corresponding type declarations. @@ -1025,15 +1025,22 @@ Module resolution kind is not specified, using 'Node10'. Loading module 'c' from 'node_modules' folder, target file types: TypeScript, Declaration. Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. Directory '/home/src/projects/a/1/a-impl/a/lib/node_modules' does not exist, skipping all lookups in it. -File '/home/src/projects/a/1/a-impl/a/node_modules/c/package.json' exists according to earlier cached lookups. +Found 'package.json' at '/home/src/projects/a/1/a-impl/a/node_modules/c/package.json'. File '/home/src/projects/a/1/a-impl/a/node_modules/c.ts' does not exist. File '/home/src/projects/a/1/a-impl/a/node_modules/c.tsx' does not exist. File '/home/src/projects/a/1/a-impl/a/node_modules/c.d.ts' does not exist. +'package.json' does not have a 'typesVersions' field. 'package.json' does not have a 'typings' field. 'package.json' has 'types' field './lib/index.d.ts' that references '/home/src/projects/a/1/a-impl/a/node_modules/c/lib/index.d.ts'. File '/home/src/projects/a/1/a-impl/a/node_modules/c/lib/index.d.ts' exists - use it as a name resolution result. +'package.json' does not have a 'peerDependencies' field. Resolving real path for '/home/src/projects/a/1/a-impl/a/node_modules/c/lib/index.d.ts', result '/home/src/projects/c/3/c-impl/c/lib/index.d.ts'. ======== Module name 'c' was successfully resolved to '/home/src/projects/c/3/c-impl/c/lib/index.d.ts' with Package ID 'c/lib/index.d.ts@1.0.0'. ======== +DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations +DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations +FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined File location affecting resolution FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/a.d.ts 250 undefined Source file FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 250 undefined Source file ======== Resolving module './c' from '/home/src/projects/c/3/c-impl/c/lib/index.d.ts'. ======== @@ -1046,11 +1053,6 @@ File '/home/src/projects/c/3/c-impl/c/lib/c.d.ts' exists - use it as a name reso DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Failed Lookup Locations FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 250 undefined Source file -DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations -DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations -FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined File location affecting resolution DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Failed Lookup Locations DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules 1 undefined Failed Lookup Locations diff --git a/tests/baselines/reference/tscWatch/symlinks/packages-outside-project-folder-built-Windows.js b/tests/baselines/reference/tscWatch/symlinks/packages-outside-project-folder-built-Windows.js index b9b0b8e24ddbe..5ce90fe165c74 100644 --- a/tests/baselines/reference/tscWatch/symlinks/packages-outside-project-folder-built-Windows.js +++ b/tests/baselines/reference/tscWatch/symlinks/packages-outside-project-folder-built-Windows.js @@ -214,6 +214,11 @@ File '/home/src/projects/b/2/b-impl/b/node_modules/a/lib/index.d.ts' exists - us 'package.json' does not have a 'peerDependencies' field. Resolving real path for '/home/src/projects/b/2/b-impl/b/node_modules/a/lib/index.d.ts', result '/home/src/projects/a/1/a-impl/a/lib/index.d.ts'. ======== Module name 'a' was successfully resolved to '/home/src/projects/a/1/a-impl/a/lib/index.d.ts' with Package ID 'a/lib/index.d.ts@1.0.0'. ======== +DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Failed Lookup Locations +DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules 1 undefined Failed Lookup Locations +FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/package.json 2000 undefined File location affecting resolution FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/index.d.ts 250 undefined Source file ======== Resolving module './a' from '/home/src/projects/a/1/a-impl/a/lib/index.d.ts'. ======== Module resolution kind is not specified, using 'Node10'. @@ -240,6 +245,11 @@ File '/home/src/projects/a/1/a-impl/a/node_modules/c/lib/index.d.ts' exists - us 'package.json' does not have a 'peerDependencies' field. Resolving real path for '/home/src/projects/a/1/a-impl/a/node_modules/c/lib/index.d.ts', result '/home/src/projects/c/3/c-impl/c/lib/index.d.ts'. ======== Module name 'c' was successfully resolved to '/home/src/projects/c/3/c-impl/c/lib/index.d.ts' with Package ID 'c/lib/index.d.ts@1.0.0'. ======== +DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations +DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations +FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined File location affecting resolution FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/a.d.ts 250 undefined Source file FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 250 undefined Source file ======== Resolving module './c' from '/home/src/projects/c/3/c-impl/c/lib/index.d.ts'. ======== @@ -253,16 +263,6 @@ DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Failed Lo Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Failed Lookup Locations FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 250 undefined Source file FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 250 undefined Source file -DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Failed Lookup Locations -DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules 1 undefined Failed Lookup Locations -FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/package.json 2000 undefined File location affecting resolution -DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations -DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations -FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined File location affecting resolution DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/@types 1 undefined Type roots Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/@types 1 undefined Type roots DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules/@types 1 undefined Type roots @@ -652,9 +652,6 @@ Directory '/home/src/node_modules' does not exist, skipping all lookups in it. Directory '/home/node_modules' does not exist, skipping all lookups in it. Directory '/node_modules' does not exist, skipping all lookups in it. ======== Module name 'a' was not resolved. ======== -FileWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 250 undefined Source file -FileWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 250 undefined Source file -FileWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/index.d.ts 250 undefined Source file DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Failed Lookup Locations DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules 1 undefined Failed Lookup Locations @@ -665,14 +662,17 @@ DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/node_modules 1 undefi Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/node_modules 1 undefined Failed Lookup Locations DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Failed Lookup Locations -DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a 1 undefined Failed Lookup Locations +FileWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 250 undefined Source file +FileWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 250 undefined Source file +FileWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/index.d.ts 250 undefined Source file DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c 1 undefined Failed Lookup Locations -DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations +DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a 1 undefined Failed Lookup Locations DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations +DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations FileWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined File location affecting resolution src/index.ts:1:19 - error TS2307: Cannot find module 'a' or its corresponding type declarations. @@ -965,15 +965,22 @@ Module resolution kind is not specified, using 'Node10'. Loading module 'c' from 'node_modules' folder, target file types: TypeScript, Declaration. Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. Directory '/home/src/projects/a/1/a-impl/a/lib/node_modules' does not exist, skipping all lookups in it. -File '/home/src/projects/a/1/a-impl/a/node_modules/c/package.json' exists according to earlier cached lookups. +Found 'package.json' at '/home/src/projects/a/1/a-impl/a/node_modules/c/package.json'. File '/home/src/projects/a/1/a-impl/a/node_modules/c.ts' does not exist. File '/home/src/projects/a/1/a-impl/a/node_modules/c.tsx' does not exist. File '/home/src/projects/a/1/a-impl/a/node_modules/c.d.ts' does not exist. +'package.json' does not have a 'typesVersions' field. 'package.json' does not have a 'typings' field. 'package.json' has 'types' field './lib/index.d.ts' that references '/home/src/projects/a/1/a-impl/a/node_modules/c/lib/index.d.ts'. File '/home/src/projects/a/1/a-impl/a/node_modules/c/lib/index.d.ts' exists - use it as a name resolution result. +'package.json' does not have a 'peerDependencies' field. Resolving real path for '/home/src/projects/a/1/a-impl/a/node_modules/c/lib/index.d.ts', result '/home/src/projects/c/3/c-impl/c/lib/index.d.ts'. ======== Module name 'c' was successfully resolved to '/home/src/projects/c/3/c-impl/c/lib/index.d.ts' with Package ID 'c/lib/index.d.ts@1.0.0'. ======== +DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations +DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations +FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined File location affecting resolution FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/a.d.ts 250 undefined Source file FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 250 undefined Source file ======== Resolving module './c' from '/home/src/projects/c/3/c-impl/c/lib/index.d.ts'. ======== @@ -986,11 +993,6 @@ File '/home/src/projects/c/3/c-impl/c/lib/c.d.ts' exists - use it as a name reso DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Failed Lookup Locations FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 250 undefined Source file -DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Failed Lookup Locations -DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Failed Lookup Locations -FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined File location affecting resolution DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Failed Lookup Locations DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules 1 undefined Failed Lookup Locations diff --git a/tests/baselines/reference/tscWatch/watchApi/when-watching-referenced-project-when-there-is-no-config-file-name.js b/tests/baselines/reference/tscWatch/watchApi/when-watching-referenced-project-when-there-is-no-config-file-name.js index d7d11de7f6cac..b3a97b4020fa5 100644 --- a/tests/baselines/reference/tscWatch/watchApi/when-watching-referenced-project-when-there-is-no-config-file-name.js +++ b/tests/baselines/reference/tscWatch/watchApi/when-watching-referenced-project-when-there-is-no-config-file-name.js @@ -73,10 +73,10 @@ CreatingProgramWith:: projectReferences: [{"path":"/user/username/projects/project/lib","originalPath":"./lib"}] Loading config file: /user/username/projects/project/lib/tsconfig.json FileWatcher:: Added:: WatchInfo: /user/username/projects/project/app.ts 250 undefined Source file -DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/lib 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/lib 1 undefined Failed Lookup Locations DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project 0 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project 0 undefined Failed Lookup Locations +DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/lib 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/lib 1 undefined Failed Lookup Locations FileWatcher:: Added:: WatchInfo: /user/username/projects/project/lib/index.d.ts 250 undefined Source file FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 250 undefined Source file DirectoryWatcher:: Triggered with /user/username/projects/project/app.js :: WatchInfo: /user/username/projects/project 0 undefined Failed Lookup Locations diff --git a/tests/baselines/reference/tscWatch/watchApi/when-watching-referenced-project-with-extends-when-there-is-no-config-file-name.js b/tests/baselines/reference/tscWatch/watchApi/when-watching-referenced-project-with-extends-when-there-is-no-config-file-name.js index 5b86206923f90..86f8b37352d86 100644 --- a/tests/baselines/reference/tscWatch/watchApi/when-watching-referenced-project-with-extends-when-there-is-no-config-file-name.js +++ b/tests/baselines/reference/tscWatch/watchApi/when-watching-referenced-project-with-extends-when-there-is-no-config-file-name.js @@ -70,10 +70,10 @@ CreatingProgramWith:: projectReferences: [{"path":"/user/username/projects/project/lib","originalPath":"./lib"}] Loading config file: /user/username/projects/project/lib/tsconfig.json FileWatcher:: Added:: WatchInfo: /user/username/projects/project/app.ts 250 undefined Source file -DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/lib 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/lib 1 undefined Failed Lookup Locations DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project 0 undefined Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project 0 undefined Failed Lookup Locations +DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/lib 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/lib 1 undefined Failed Lookup Locations FileWatcher:: Added:: WatchInfo: /user/username/projects/project/lib/index.d.ts 250 undefined Source file FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 250 undefined Source file DirectoryWatcher:: Triggered with /user/username/projects/project/app.js :: WatchInfo: /user/username/projects/project 0 undefined Failed Lookup Locations diff --git a/tests/baselines/reference/tscWatch/watchEnvironment/watchDirectories/when-there-are-symlinks-to-folders-in-recursive-folders-with-synchronousWatchDirectory.js b/tests/baselines/reference/tscWatch/watchEnvironment/watchDirectories/when-there-are-symlinks-to-folders-in-recursive-folders-with-synchronousWatchDirectory.js index 0271943736053..664513216d6f8 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchDirectories/when-there-are-symlinks-to-folders-in-recursive-folders-with-synchronousWatchDirectory.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchDirectories/when-there-are-symlinks-to-folders-in-recursive-folders-with-synchronousWatchDirectory.js @@ -69,6 +69,12 @@ File '/home/user/projects/myproject/node_modules/a/index.tsx' does not exist. File '/home/user/projects/myproject/node_modules/a/index.d.ts' exists - use it as a name resolution result. Resolving real path for '/home/user/projects/myproject/node_modules/a/index.d.ts', result '/home/user/projects/myproject/node_modules/reala/index.d.ts'. ======== Module name 'a' was successfully resolved to '/home/user/projects/myproject/node_modules/reala/index.d.ts'. ======== +DirectoryWatcher:: Added:: WatchInfo: /home/user/projects/myproject/src 1 {"synchronousWatchDirectory":true} Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/user/projects/myproject/src 1 {"synchronousWatchDirectory":true} Failed Lookup Locations +DirectoryWatcher:: Added:: WatchInfo: /home/user/projects/myproject/node_modules/a 1 {"synchronousWatchDirectory":true} Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/user/projects/myproject/node_modules/a 1 {"synchronousWatchDirectory":true} Failed Lookup Locations +DirectoryWatcher:: Added:: WatchInfo: /home/user/projects/myproject/node_modules 1 {"synchronousWatchDirectory":true} Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/user/projects/myproject/node_modules 1 {"synchronousWatchDirectory":true} Failed Lookup Locations File '/home/user/projects/myproject/node_modules/reala/package.json' does not exist. File '/home/user/projects/myproject/node_modules/package.json' does not exist. File '/home/user/projects/myproject/package.json' does not exist. @@ -78,12 +84,6 @@ File '/home/package.json' does not exist. File '/package.json' does not exist. FileWatcher:: Added:: WatchInfo: /home/user/projects/myproject/node_modules/reala/index.d.ts 250 {"synchronousWatchDirectory":true} Source file FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 250 {"synchronousWatchDirectory":true} Source file -DirectoryWatcher:: Added:: WatchInfo: /home/user/projects/myproject/src 1 {"synchronousWatchDirectory":true} Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/user/projects/myproject/src 1 {"synchronousWatchDirectory":true} Failed Lookup Locations -DirectoryWatcher:: Added:: WatchInfo: /home/user/projects/myproject/node_modules/a 1 {"synchronousWatchDirectory":true} Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/user/projects/myproject/node_modules/a 1 {"synchronousWatchDirectory":true} Failed Lookup Locations -DirectoryWatcher:: Added:: WatchInfo: /home/user/projects/myproject/node_modules 1 {"synchronousWatchDirectory":true} Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/user/projects/myproject/node_modules 1 {"synchronousWatchDirectory":true} Failed Lookup Locations FileWatcher:: Added:: WatchInfo: /home/user/projects/myproject/node_modules/reala/package.json 2000 {"synchronousWatchDirectory":true} File location affecting resolution FileWatcher:: Added:: WatchInfo: /home/user/projects/myproject/node_modules/package.json 2000 {"synchronousWatchDirectory":true} File location affecting resolution FileWatcher:: Added:: WatchInfo: /home/user/projects/myproject/package.json 2000 {"synchronousWatchDirectory":true} File location affecting resolution diff --git a/tests/baselines/reference/tscWatch/watchEnvironment/watchDirectories/when-there-are-symlinks-to-folders-in-recursive-folders.js b/tests/baselines/reference/tscWatch/watchEnvironment/watchDirectories/when-there-are-symlinks-to-folders-in-recursive-folders.js index c1523effe0cd1..66f7eee730230 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchDirectories/when-there-are-symlinks-to-folders-in-recursive-folders.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchDirectories/when-there-are-symlinks-to-folders-in-recursive-folders.js @@ -66,6 +66,12 @@ File '/home/user/projects/myproject/node_modules/a/index.tsx' does not exist. File '/home/user/projects/myproject/node_modules/a/index.d.ts' exists - use it as a name resolution result. Resolving real path for '/home/user/projects/myproject/node_modules/a/index.d.ts', result '/home/user/projects/myproject/node_modules/reala/index.d.ts'. ======== Module name 'a' was successfully resolved to '/home/user/projects/myproject/node_modules/reala/index.d.ts'. ======== +DirectoryWatcher:: Added:: WatchInfo: /home/user/projects/myproject/src 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/user/projects/myproject/src 1 undefined Failed Lookup Locations +DirectoryWatcher:: Added:: WatchInfo: /home/user/projects/myproject/node_modules/a 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/user/projects/myproject/node_modules/a 1 undefined Failed Lookup Locations +DirectoryWatcher:: Added:: WatchInfo: /home/user/projects/myproject/node_modules 1 undefined Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/user/projects/myproject/node_modules 1 undefined Failed Lookup Locations File '/home/user/projects/myproject/node_modules/reala/package.json' does not exist. File '/home/user/projects/myproject/node_modules/package.json' does not exist. File '/home/user/projects/myproject/package.json' does not exist. @@ -75,12 +81,6 @@ File '/home/package.json' does not exist. File '/package.json' does not exist. FileWatcher:: Added:: WatchInfo: /home/user/projects/myproject/node_modules/reala/index.d.ts 250 undefined Source file FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 250 undefined Source file -DirectoryWatcher:: Added:: WatchInfo: /home/user/projects/myproject/src 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/user/projects/myproject/src 1 undefined Failed Lookup Locations -DirectoryWatcher:: Added:: WatchInfo: /home/user/projects/myproject/node_modules/a 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/user/projects/myproject/node_modules/a 1 undefined Failed Lookup Locations -DirectoryWatcher:: Added:: WatchInfo: /home/user/projects/myproject/node_modules 1 undefined Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/user/projects/myproject/node_modules 1 undefined Failed Lookup Locations FileWatcher:: Added:: WatchInfo: /home/user/projects/myproject/node_modules/reala/package.json 2000 undefined File location affecting resolution FileWatcher:: Added:: WatchInfo: /home/user/projects/myproject/node_modules/package.json 2000 undefined File location affecting resolution FileWatcher:: Added:: WatchInfo: /home/user/projects/myproject/package.json 2000 undefined File location affecting resolution diff --git a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeDirectories-option-extendedDiagnostics.js b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeDirectories-option-extendedDiagnostics.js index a7f843a0672b1..6d97aa8777cd0 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeDirectories-option-extendedDiagnostics.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeDirectories-option-extendedDiagnostics.js @@ -54,12 +54,12 @@ CreatingProgramWith:: roots: ["/user/username/projects/myproject/src/main.ts"] options: {"watch":true,"extendedDiagnostics":true,"configFilePath":"/user/username/projects/myproject/tsconfig.json"} FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 250 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Source file -FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/bar/index.d.ts 250 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Source file +DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Failed Lookup Locations ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Failed Lookup Locations +FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/bar/index.d.ts 250 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Source file FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/bar/foo.d.ts 250 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Source file FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 250 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Source file -DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Failed Lookup Locations FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/bar/package.json 2000 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} File location affecting resolution FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/package.json 2000 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} File location affecting resolution FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/package.json 2000 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} File location affecting resolution diff --git a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeDirectories-option-with-recursive-directory-watching-extendedDiagnostics.js b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeDirectories-option-with-recursive-directory-watching-extendedDiagnostics.js index 4ec2ba94a5ad9..57894644d1252 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeDirectories-option-with-recursive-directory-watching-extendedDiagnostics.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeDirectories-option-with-recursive-directory-watching-extendedDiagnostics.js @@ -54,13 +54,13 @@ CreatingProgramWith:: roots: ["/user/username/projects/myproject/src/main.ts"] options: {"watch":true,"extendedDiagnostics":true,"configFilePath":"/user/username/projects/myproject/tsconfig.json"} FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 250 {"excludeDirectories":["/user/username/projects/myproject/**/temp"]} Source file -FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/bar/index.d.ts 250 {"excludeDirectories":["/user/username/projects/myproject/**/temp"]} Source file +DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/**/temp"]} Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/**/temp"]} Failed Lookup Locations DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":["/user/username/projects/myproject/**/temp"]} Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":["/user/username/projects/myproject/**/temp"]} Failed Lookup Locations +FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/bar/index.d.ts 250 {"excludeDirectories":["/user/username/projects/myproject/**/temp"]} Source file FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/bar/foo.d.ts 250 {"excludeDirectories":["/user/username/projects/myproject/**/temp"]} Source file FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 250 {"excludeDirectories":["/user/username/projects/myproject/**/temp"]} Source file -DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/**/temp"]} Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/**/temp"]} Failed Lookup Locations FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/bar/package.json 2000 {"excludeDirectories":["/user/username/projects/myproject/**/temp"]} File location affecting resolution FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/package.json 2000 {"excludeDirectories":["/user/username/projects/myproject/**/temp"]} File location affecting resolution FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/package.json 2000 {"excludeDirectories":["/user/username/projects/myproject/**/temp"]} File location affecting resolution diff --git a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeFiles-option-extendedDiagnostics.js b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeFiles-option-extendedDiagnostics.js index ce0954dde44ef..872a1fd27bf1e 100644 --- a/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeFiles-option-extendedDiagnostics.js +++ b/tests/baselines/reference/tscWatch/watchEnvironment/watchOptions/with-excludeFiles-option-extendedDiagnostics.js @@ -54,13 +54,13 @@ CreatingProgramWith:: roots: ["/user/username/projects/myproject/src/main.ts"] options: {"watch":true,"extendedDiagnostics":true,"configFilePath":"/user/username/projects/myproject/tsconfig.json"} FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 250 {"excludeFiles":["/user/username/projects/myproject/node_modules/*"]} Source file -ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/bar/index.d.ts 250 {"excludeFiles":["/user/username/projects/myproject/node_modules/*"]} Source file +DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeFiles":["/user/username/projects/myproject/node_modules/*"]} Failed Lookup Locations +Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeFiles":["/user/username/projects/myproject/node_modules/*"]} Failed Lookup Locations DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/node_modules/*"]} Failed Lookup Locations Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/node_modules/*"]} Failed Lookup Locations +ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/bar/index.d.ts 250 {"excludeFiles":["/user/username/projects/myproject/node_modules/*"]} Source file ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/bar/foo.d.ts 250 {"excludeFiles":["/user/username/projects/myproject/node_modules/*"]} Source file FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 250 {"excludeFiles":["/user/username/projects/myproject/node_modules/*"]} Source file -DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeFiles":["/user/username/projects/myproject/node_modules/*"]} Failed Lookup Locations -Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeFiles":["/user/username/projects/myproject/node_modules/*"]} Failed Lookup Locations ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/bar/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/node_modules/*"]} File location affecting resolution ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/node_modules/*"]} File location affecting resolution FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/node_modules/*"]} File location affecting resolution diff --git a/tests/baselines/reference/tsserver/autoImportProvider/Auto-importable-file-is-in-inferred-project-until-imported.js b/tests/baselines/reference/tsserver/autoImportProvider/Auto-importable-file-is-in-inferred-project-until-imported.js index 5928dbcafd4f6..ba02f456e9069 100644 --- a/tests/baselines/reference/tsserver/autoImportProvider/Auto-importable-file-is-in-inferred-project-until-imported.js +++ b/tests/baselines/reference/tsserver/autoImportProvider/Auto-importable-file-is-in-inferred-project-until-imported.js @@ -186,14 +186,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/node_modules/@angular/forms", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/node_modules/@angular/forms/package.json' dependencies: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -235,7 +233,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -258,7 +255,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -365,11 +361,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/project/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules 1 undefined Project: /user/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules 1 undefined Project: /user/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@angular/forms/package.json 2000 undefined Project: /user/username/projects/project/tsconfig.json WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/project/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/project/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/autoImportProvider/Closes-AutoImportProviderProject-when-host-project-closes.js b/tests/baselines/reference/tsserver/autoImportProvider/Closes-AutoImportProviderProject-when-host-project-closes.js index f1f5103b89908..8654fe2b1aa2f 100644 --- a/tests/baselines/reference/tsserver/autoImportProvider/Closes-AutoImportProviderProject-when-host-project-closes.js +++ b/tests/baselines/reference/tsserver/autoImportProvider/Closes-AutoImportProviderProject-when-host-project-closes.js @@ -365,10 +365,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -385,7 +381,6 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] AutoImportProviderProject: found 1 root files in 1 dependencies 0 referenced projects in * ms Info seq [hh:mm:ss:mss] Creating AutoImportProviderProject: /dev/null/autoImportProviderProject2*, currentDirectory: /user/username/projects/project/random Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/autoImportProviderProject2* -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@angular/forms/package.json 2000 undefined Project: /dev/null/autoImportProviderProject2* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/autoImportProviderProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/autoImportProviderProject2*' (AutoImportProvider) Info seq [hh:mm:ss:mss] Files (1) @@ -416,11 +411,6 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project 1 undefined Config: /user/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project 1 undefined Config: /user/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/project/tsconfig.json 2000 undefined Project: /user/username/projects/project/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/project/node_modules/@angular/forms/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/project/index.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/autoImportProvider/Does-not-create-auto-import-providers-upon-opening-projects-for-find-all-references.js b/tests/baselines/reference/tsserver/autoImportProvider/Does-not-create-auto-import-providers-upon-opening-projects-for-find-all-references.js index 73fc7012dba5a..05c9954bce8b1 100644 --- a/tests/baselines/reference/tsserver/autoImportProvider/Does-not-create-auto-import-providers-upon-opening-projects-for-find-all-references.js +++ b/tests/baselines/reference/tsserver/autoImportProvider/Does-not-create-auto-import-providers-upon-opening-projects-for-find-all-references.js @@ -366,13 +366,9 @@ Info seq [hh:mm:ss:mss] Config: /user/username/projects/project/packages/a/tsco Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/packages/a/tsconfig.json 2000 undefined Project: /user/username/projects/project/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/packages/a 1 undefined Config: /user/username/projects/project/packages/a/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/packages/a 1 undefined Config: /user/username/projects/project/packages/a/tsconfig.json WatchType: Wild card directory -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/packages 1 undefined Project: /user/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/packages 1 undefined Project: /user/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/packages 0 undefined Project: /user/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/packages 0 undefined Project: /user/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/packages/b/package.json 2000 undefined Project: /user/username/projects/project/tsconfig.json WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/project/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/project/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) @@ -463,17 +459,8 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/project/packages/a/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/packages 0 undefined Project: /user/username/projects/project/packages/a/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/packages 0 undefined Project: /user/username/projects/project/packages/a/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/packages/b/package.json 2000 undefined Project: /user/username/projects/project/packages/a/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/packages/a/node_modules/@types 1 undefined Project: /user/username/projects/project/packages/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/packages/a/node_modules/@types 1 undefined Project: /user/username/projects/project/packages/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/packages/node_modules/@types 1 undefined Project: /user/username/projects/project/packages/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/packages/node_modules/@types 1 undefined Project: /user/username/projects/project/packages/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/packages/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/packages/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/project/packages/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/project/packages/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/project/packages/a/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/project/packages/a/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) @@ -654,8 +641,6 @@ FsWatchesRecursive:: {} /user/username/projects/project/node_modules: {} -/user/username/projects/project/packages: *new* - {} /user/username/projects/project/packages/a: *new* {} /user/username/projects/project/packages/b: diff --git a/tests/baselines/reference/tsserver/autoImportProvider/Responds-to-manual-changes-in-node_modules.js b/tests/baselines/reference/tsserver/autoImportProvider/Responds-to-manual-changes-in-node_modules.js index 3156d65bfe221..2aeb991fa3943 100644 --- a/tests/baselines/reference/tsserver/autoImportProvider/Responds-to-manual-changes-in-node_modules.js +++ b/tests/baselines/reference/tsserver/autoImportProvider/Responds-to-manual-changes-in-node_modules.js @@ -296,17 +296,12 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@angular/forms/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@angular/forms/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@angular/forms/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@angular/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@angular/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -435,14 +430,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/node_modules/@angular/forms", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/node_modules/@angular/forms/package.json' dependencies: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -484,7 +477,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -507,7 +499,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/autoImportProvider/Shared-source-files-between-AutoImportProvider-and-main-program.js b/tests/baselines/reference/tsserver/autoImportProvider/Shared-source-files-between-AutoImportProvider-and-main-program.js index 0ccdb3a2c22a2..fc8645256ba67 100644 --- a/tests/baselines/reference/tsserver/autoImportProvider/Shared-source-files-between-AutoImportProvider-and-main-program.js +++ b/tests/baselines/reference/tsserver/autoImportProvider/Shared-source-files-between-AutoImportProvider-and-main-program.js @@ -132,7 +132,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] AutoImportProviderProject: found 1 root files in 1 dependencies 0 referenced projects in * ms Info seq [hh:mm:ss:mss] Creating AutoImportProviderProject: /dev/null/autoImportProviderProject1*, currentDirectory: /user/username/projects/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/autoImportProviderProject1* -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types/node/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/memfs/lib/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/memfs/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/autoImportProviderProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms diff --git a/tests/baselines/reference/tsserver/autoImportProvider/dependencies-are-already-in-main-program.js b/tests/baselines/reference/tsserver/autoImportProvider/dependencies-are-already-in-main-program.js index a42cec04677b9..65e295d7b015e 100644 --- a/tests/baselines/reference/tsserver/autoImportProvider/dependencies-are-already-in-main-program.js +++ b/tests/baselines/reference/tsserver/autoImportProvider/dependencies-are-already-in-main-program.js @@ -92,12 +92,12 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project 1 undefined Config: /user/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project 1 undefined Config: /user/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/project/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules 1 undefined Project: /user/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules 1 undefined Project: /user/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@angular/forms/package.json 2000 undefined Project: /user/username/projects/project/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/project/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/autoImportProvider/projects-already-inside-node_modules.js b/tests/baselines/reference/tsserver/autoImportProvider/projects-already-inside-node_modules.js index 542e67c272a8c..1476f5f592ff6 100644 --- a/tests/baselines/reference/tsserver/autoImportProvider/projects-already-inside-node_modules.js +++ b/tests/baselines/reference/tsserver/autoImportProvider/projects-already-inside-node_modules.js @@ -183,14 +183,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/node_modules/@angular/forms", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/node_modules/@angular/forms/package.json' dependencies: ["@angular/core"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -237,7 +235,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -260,7 +257,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/auxiliaryProject/does-not-remove-scrips-from-InferredProject.js b/tests/baselines/reference/tsserver/auxiliaryProject/does-not-remove-scrips-from-InferredProject.js index fc367f39f2872..6e6da7ede9629 100644 --- a/tests/baselines/reference/tsserver/auxiliaryProject/does-not-remove-scrips-from-InferredProject.js +++ b/tests/baselines/reference/tsserver/auxiliaryProject/does-not-remove-scrips-from-InferredProject.js @@ -141,8 +141,6 @@ Info seq [hh:mm:ss:mss] Creating AuxiliaryProject: /dev/null/auxiliaryProject1* Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/auxiliaryProject1* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/b 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/b 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project 0 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project 0 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/b.js 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/auxiliaryProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/auxiliaryProject1*' (Auxiliary) @@ -256,10 +254,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /user/username/projects/project/b.js ProjectRootPath: undefined:: Result: undefined Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, currentDirectory: /user/username/projects/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -374,13 +368,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -420,7 +412,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -444,7 +435,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/auxiliaryProject/file-is-added-later-through-finding-definition.js b/tests/baselines/reference/tsserver/auxiliaryProject/file-is-added-later-through-finding-definition.js index 90c63549b936c..b4c390d9acdda 100644 --- a/tests/baselines/reference/tsserver/auxiliaryProject/file-is-added-later-through-finding-definition.js +++ b/tests/baselines/reference/tsserver/auxiliaryProject/file-is-added-later-through-finding-definition.js @@ -73,13 +73,13 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/users/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/users/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/users/projects/myproject/node_modules/yargs/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/users/projects/myproject/node_modules/@types/yargs/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/users/projects/myproject/node_modules/yargs/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots @@ -185,11 +185,8 @@ Info seq [hh:mm:ss:mss] request: } Info seq [hh:mm:ss:mss] Creating AuxiliaryProject: /dev/null/auxiliaryProject1*, currentDirectory: /user/users/projects/myproject Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/auxiliaryProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/users/projects/myproject/node_modules/yargs/package.json 2000 undefined Project: /dev/null/auxiliaryProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/auxiliaryProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/auxiliaryProject1*' (Auxiliary) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/auxiliaryProject/resolution-is-reused-from-different-folder.js b/tests/baselines/reference/tsserver/auxiliaryProject/resolution-is-reused-from-different-folder.js index 3b42f50263e23..8ab0910c01e2e 100644 --- a/tests/baselines/reference/tsserver/auxiliaryProject/resolution-is-reused-from-different-folder.js +++ b/tests/baselines/reference/tsserver/auxiliaryProject/resolution-is-reused-from-different-folder.js @@ -80,18 +80,18 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/users/projects/m Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/users/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/users/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/users/projects/myproject/folder/random.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/users/projects/myproject/node_modules/@types/yargs/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/some/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/some/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/users/projects/myproject/node_modules/yargs/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/users/projects/myproject/node_modules/@types/yargs/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/users/projects/myproject/folder/random.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/folder/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/folder/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/some/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/some/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots @@ -219,15 +219,8 @@ Info seq [hh:mm:ss:mss] request: } Info seq [hh:mm:ss:mss] Creating AuxiliaryProject: /dev/null/auxiliaryProject1*, currentDirectory: /user/users/projects/myproject/some Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/auxiliaryProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/some/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/some/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/users/projects/myproject/node_modules/yargs/package.json 2000 undefined Project: /dev/null/auxiliaryProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/folder/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/users/projects/myproject/folder/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/auxiliaryProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/auxiliaryProject1*' (Auxiliary) Info seq [hh:mm:ss:mss] Files (4) diff --git a/tests/baselines/reference/tsserver/cachingFileSystemInformation/includes-the-parent-folder-FLLs-in-Classic-module-resolution-mode.js b/tests/baselines/reference/tsserver/cachingFileSystemInformation/includes-the-parent-folder-FLLs-in-Classic-module-resolution-mode.js index 4278448218f3e..72f2a26ed39f4 100644 --- a/tests/baselines/reference/tsserver/cachingFileSystemInformation/includes-the-parent-folder-FLLs-in-Classic-module-resolution-mode.js +++ b/tests/baselines/reference/tsserver/cachingFileSystemInformation/includes-the-parent-folder-FLLs-in-Classic-module-resolution-mode.js @@ -67,13 +67,13 @@ Info seq [hh:mm:ss:mss] event: } Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/username/projects/proj/foo/boo/moo/app.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/projects/proj/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/proj/foo 1 undefined Project: /users/username/projects/proj/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/proj/foo 1 undefined Project: /users/username/projects/proj/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/proj/node_modules 1 undefined Project: /users/username/projects/proj/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/proj/node_modules 1 undefined Project: /users/username/projects/proj/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/node_modules 1 undefined Project: /users/username/projects/proj/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/node_modules 1 undefined Project: /users/username/projects/proj/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/proj/node_modules/@types 1 undefined Project: /users/username/projects/proj/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/proj/node_modules/@types 1 undefined Project: /users/username/projects/proj/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/node_modules/@types 1 undefined Project: /users/username/projects/proj/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/cachingFileSystemInformation/includes-the-parent-folder-FLLs-in-Node-module-resolution-mode.js b/tests/baselines/reference/tsserver/cachingFileSystemInformation/includes-the-parent-folder-FLLs-in-Node-module-resolution-mode.js index 9995fee3940ef..7a4b2cf288e73 100644 --- a/tests/baselines/reference/tsserver/cachingFileSystemInformation/includes-the-parent-folder-FLLs-in-Node-module-resolution-mode.js +++ b/tests/baselines/reference/tsserver/cachingFileSystemInformation/includes-the-parent-folder-FLLs-in-Node-module-resolution-mode.js @@ -67,13 +67,13 @@ Info seq [hh:mm:ss:mss] event: } Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/username/projects/proj/foo/boo/moo/app.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/projects/proj/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/proj/foo 1 undefined Project: /users/username/projects/proj/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/proj/foo 1 undefined Project: /users/username/projects/proj/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/proj/node_modules 1 undefined Project: /users/username/projects/proj/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/proj/node_modules 1 undefined Project: /users/username/projects/proj/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/node_modules 1 undefined Project: /users/username/projects/proj/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/node_modules 1 undefined Project: /users/username/projects/proj/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/proj/node_modules/@types 1 undefined Project: /users/username/projects/proj/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/proj/node_modules/@types 1 undefined Project: /users/username/projects/proj/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/node_modules/@types 1 undefined Project: /users/username/projects/proj/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/cachingFileSystemInformation/loads-missing-files-from-disk.js b/tests/baselines/reference/tsserver/cachingFileSystemInformation/loads-missing-files-from-disk.js index 950fd67826c0f..8a0e075f92f00 100644 --- a/tests/baselines/reference/tsserver/cachingFileSystemInformation/loads-missing-files-from-disk.js +++ b/tests/baselines/reference/tsserver/cachingFileSystemInformation/loads-missing-files-from-disk.js @@ -57,14 +57,14 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/username/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/username/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/cachingFileSystemInformation/npm-install-works-when-timeout-occurs-after-installation.js b/tests/baselines/reference/tsserver/cachingFileSystemInformation/npm-install-works-when-timeout-occurs-after-installation.js index 8e59ad1566255..e1dac7d15b68e 100644 --- a/tests/baselines/reference/tsserver/cachingFileSystemInformation/npm-install-works-when-timeout-occurs-after-installation.js +++ b/tests/baselines/reference/tsserver/cachingFileSystemInformation/npm-install-works-when-timeout-occurs-after-installation.js @@ -105,7 +105,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/user/username/projects/project/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/tsconfig.json WatchType: Failed Lookup Locations @@ -122,6 +121,7 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/ro Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/user/username/projects/project/a/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/tsconfig.json WatchType: Type roots @@ -2091,10 +2091,10 @@ Before running Timeout callback:: count: 2 Info seq [hh:mm:ss:mss] Running: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/tsconfig.json Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/tsconfig.json +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/node_modules/lodash/package.json 2000 undefined Project: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/node_modules/@types/lodash/package.json 2000 undefined Project: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/node_modules/@types/lodash/package.json 2000 undefined Project: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/tsconfig.json WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/node_modules/lodash/package.json 2000 undefined Project: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/user/username/projects/project/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/user/username/projects/project/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/user/username/projects/project/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/tsconfig.json WatchType: Failed Lookup Locations diff --git a/tests/baselines/reference/tsserver/cachingFileSystemInformation/npm-install-works-when-timeout-occurs-inbetween-installation.js b/tests/baselines/reference/tsserver/cachingFileSystemInformation/npm-install-works-when-timeout-occurs-inbetween-installation.js index acde6e7ca3eb5..e775548b4cdb0 100644 --- a/tests/baselines/reference/tsserver/cachingFileSystemInformation/npm-install-works-when-timeout-occurs-inbetween-installation.js +++ b/tests/baselines/reference/tsserver/cachingFileSystemInformation/npm-install-works-when-timeout-occurs-inbetween-installation.js @@ -105,7 +105,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/user/username/projects/project/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/tsconfig.json WatchType: Failed Lookup Locations @@ -122,6 +121,7 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/ro Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/user/username/projects/project/a/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/tsconfig.json WatchType: Type roots @@ -2266,10 +2266,10 @@ Before running Timeout callback:: count: 2 Info seq [hh:mm:ss:mss] Running: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/tsconfig.json Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/tsconfig.json +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/node_modules/lodash/package.json 2000 undefined Project: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/node_modules/@types/lodash/package.json 2000 undefined Project: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/node_modules/@types/lodash/package.json 2000 undefined Project: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/tsconfig.json WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/node_modules/lodash/package.json 2000 undefined Project: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/user/username/projects/project/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/user/username/projects/project/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/user/username/projects/project/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/user/username/projects/project/a/b/tsconfig.json WatchType: Failed Lookup Locations diff --git a/tests/baselines/reference/tsserver/cachingFileSystemInformation/when-node_modules-dont-receive-event-for-the-@types-file-addition.js b/tests/baselines/reference/tsserver/cachingFileSystemInformation/when-node_modules-dont-receive-event-for-the-@types-file-addition.js index 007a58d1404ac..327fd7568efbb 100644 --- a/tests/baselines/reference/tsserver/cachingFileSystemInformation/when-node_modules-dont-receive-event-for-the-@types-file-addition.js +++ b/tests/baselines/reference/tsserver/cachingFileSystemInformation/when-node_modules-dont-receive-event-for-the-@types-file-addition.js @@ -58,11 +58,11 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/folder/myproject 1 undefined Config: /user/username/folder/myproject/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/folder/myproject 1 undefined Config: /user/username/folder/myproject/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/folder/myproject/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/folder/myproject/node_modules 1 undefined Project: /user/username/folder/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/folder/myproject/node_modules 1 undefined Project: /user/username/folder/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/folder/node_modules 1 undefined Project: /user/username/folder/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/folder/node_modules 1 undefined Project: /user/username/folder/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/folder/myproject/node_modules/@types 1 undefined Project: /user/username/folder/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/folder/myproject/node_modules/@types 1 undefined Project: /user/username/folder/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/folder/node_modules/@types 1 undefined Project: /user/username/folder/myproject/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/cachingFileSystemInformation/works-using-legacy-resolution-logic.js b/tests/baselines/reference/tsserver/cachingFileSystemInformation/works-using-legacy-resolution-logic.js index 1ca2f48b1ed62..fdccd27333c9b 100644 --- a/tests/baselines/reference/tsserver/cachingFileSystemInformation/works-using-legacy-resolution-logic.js +++ b/tests/baselines/reference/tsserver/cachingFileSystemInformation/works-using-legacy-resolution-logic.js @@ -64,9 +64,9 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/c/f1.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/c/d 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/c/d 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/c/f1.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/c/d/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/c/d/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/c/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/codeFix/install-package-when-serialized.js b/tests/baselines/reference/tsserver/codeFix/install-package-when-serialized.js index 28a16d1eb356f..93e7936214783 100644 --- a/tests/baselines/reference/tsserver/codeFix/install-package-when-serialized.js +++ b/tests/baselines/reference/tsserver/codeFix/install-package-when-serialized.js @@ -64,13 +64,13 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project 1 undefined Config: /home/src/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project 1 undefined Config: /home/src/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/src 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/src 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/codeFix/install-package.js b/tests/baselines/reference/tsserver/codeFix/install-package.js index eb1bdadcf407d..0005522f1bbb3 100644 --- a/tests/baselines/reference/tsserver/codeFix/install-package.js +++ b/tests/baselines/reference/tsserver/codeFix/install-package.js @@ -64,13 +64,13 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project 1 undefined Config: /home/src/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project 1 undefined Config: /home/src/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/src 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/src 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/compileOnSave/CompileOnSaveAffectedFileListRequest-when-projectFile-is-not-specified.js b/tests/baselines/reference/tsserver/compileOnSave/CompileOnSaveAffectedFileListRequest-when-projectFile-is-not-specified.js index 3489b863dc53a..6c1f238216905 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/CompileOnSaveAffectedFileListRequest-when-projectFile-is-not-specified.js +++ b/tests/baselines/reference/tsserver/compileOnSave/CompileOnSaveAffectedFileListRequest-when-projectFile-is-not-specified.js @@ -265,10 +265,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/app2/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app2/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app2/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app2/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app2/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app2/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app2/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app2/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app2/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/app2/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/app2/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/compileOnSave/CompileOnSaveAffectedFileListRequest-when-projectFile-is-specified.js b/tests/baselines/reference/tsserver/compileOnSave/CompileOnSaveAffectedFileListRequest-when-projectFile-is-specified.js index 72b47784ab464..44a80a65d4c89 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/CompileOnSaveAffectedFileListRequest-when-projectFile-is-specified.js +++ b/tests/baselines/reference/tsserver/compileOnSave/CompileOnSaveAffectedFileListRequest-when-projectFile-is-specified.js @@ -265,10 +265,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/app2/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app2/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app2/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app2/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app2/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app2/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app2/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app2/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app2/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/app2/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/app2/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/compileOnSave/configProjects-all-projects-without-projectPath.js b/tests/baselines/reference/tsserver/compileOnSave/configProjects-all-projects-without-projectPath.js index 5979fed135cec..bc85b6d57b96d 100644 --- a/tests/baselines/reference/tsserver/compileOnSave/configProjects-all-projects-without-projectPath.js +++ b/tests/baselines/reference/tsserver/compileOnSave/configProjects-all-projects-without-projectPath.js @@ -320,10 +320,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspace/projects/c/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspace/projects/c/node_modules/@types 1 undefined Project: /home/src/workspace/projects/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspace/projects/c/node_modules/@types 1 undefined Project: /home/src/workspace/projects/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspace/projects/node_modules/@types 1 undefined Project: /home/src/workspace/projects/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspace/projects/node_modules/@types 1 undefined Project: /home/src/workspace/projects/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspace/node_modules/@types 1 undefined Project: /home/src/workspace/projects/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspace/node_modules/@types 1 undefined Project: /home/src/workspace/projects/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspace/projects/c/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspace/projects/c/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/completions/works-when-files-are-included-from-two-different-drives-of-windows.js b/tests/baselines/reference/tsserver/completions/works-when-files-are-included-from-two-different-drives-of-windows.js index 461f59ae7845b..fbc8a40902dc8 100644 --- a/tests/baselines/reference/tsserver/completions/works-when-files-are-included-from-two-different-drives-of-windows.js +++ b/tests/baselines/reference/tsserver/completions/works-when-files-are-included-from-two-different-drives-of-windows.js @@ -146,22 +146,22 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: e:/solution/myproject/ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: e:/solution/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: e:/solution/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: e:/solution/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: e:/solution/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: e:/solution/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: e:/solution/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: e:/solution/myproject/node_modules/@types/prop-types/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: e:/solution/myproject/node_modules/@types/react/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: c:/home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: e:/solution/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: e:/solution/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: e:/solution/myproject/node_modules/@types/react/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: e:/solution/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: e:/solution/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: c:/typescript/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/typescript/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: e:/solution/myproject/node_modules/react-router-dom/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: c:/typescript/node_modules/@types/react-router-dom/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: e:/solution/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: e:/solution/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: e:/solution/myproject/node_modules/@types/prop-types/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: c:/typescript/node_modules/@types/react/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: c:/home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: e:/solution/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: e:/solution/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: e:/solution/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots @@ -299,13 +299,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "e:/solution/myproject/src", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -345,7 +343,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -369,7 +366,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/configFileSearch/should-stop-at-projectRootPath-if-given.js b/tests/baselines/reference/tsserver/configFileSearch/should-stop-at-projectRootPath-if-given.js index 22bd072c2a04a..9883008f4ff6d 100644 --- a/tests/baselines/reference/tsserver/configFileSearch/should-stop-at-projectRootPath-if-given.js +++ b/tests/baselines/reference/tsserver/configFileSearch/should-stop-at-projectRootPath-if-given.js @@ -216,10 +216,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/project/project 1 undefined Config: /home/src/project/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/project/project 1 undefined Config: /home/src/project/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/project/project/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/project/project/node_modules/@types 1 undefined Project: /home/src/project/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/project/project/node_modules/@types 1 undefined Project: /home/src/project/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/project/node_modules/@types 1 undefined Project: /home/src/project/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/project/node_modules/@types 1 undefined Project: /home/src/project/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/project/project/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/project/project/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -309,10 +305,6 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/project/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/project/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/project/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/project/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/home/src/project/project/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/configFileSearch/should-use-projectRootPath-when-searching-for-inferred-project-again-2.js b/tests/baselines/reference/tsserver/configFileSearch/should-use-projectRootPath-when-searching-for-inferred-project-again-2.js index 77b7731f57e48..b48fca8fb1ca4 100644 --- a/tests/baselines/reference/tsserver/configFileSearch/should-use-projectRootPath-when-searching-for-inferred-project-again-2.js +++ b/tests/baselines/reference/tsserver/configFileSearch/should-use-projectRootPath-when-searching-for-inferred-project-again-2.js @@ -237,12 +237,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/a/b/projects/pro Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/a/b/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/a/b/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/a/b/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/a/b/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/a/b/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/configFileSearch/should-use-projectRootPath-when-searching-for-inferred-project-again.js b/tests/baselines/reference/tsserver/configFileSearch/should-use-projectRootPath-when-searching-for-inferred-project-again.js index e357b15f14e34..9ddeaaeb1c255 100644 --- a/tests/baselines/reference/tsserver/configFileSearch/should-use-projectRootPath-when-searching-for-inferred-project-again.js +++ b/tests/baselines/reference/tsserver/configFileSearch/should-use-projectRootPath-when-searching-for-inferred-project-again.js @@ -237,14 +237,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/a/b/projects/pro Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/a/b/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/a/b/projects/project/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/a/b/projects/project/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/a/b/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/a/b/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/a/b/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/a/b/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/configFileSearch/tsconfig-for-the-file-does-not-exist.js b/tests/baselines/reference/tsserver/configFileSearch/tsconfig-for-the-file-does-not-exist.js index 78137540824a5..8cde618d6b72a 100644 --- a/tests/baselines/reference/tsserver/configFileSearch/tsconfig-for-the-file-does-not-exist.js +++ b/tests/baselines/reference/tsserver/configFileSearch/tsconfig-for-the-file-does-not-exist.js @@ -191,10 +191,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /a/b/projects/project/ Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /a/b/projects/project/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /a/b/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /a/b/projects/project/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/node_modules/@types 1 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/node_modules/@types 1 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /a/b/projects/project/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/a/b/projects/project/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/configFileSearch/tsconfig-for-the-file-exists.js b/tests/baselines/reference/tsserver/configFileSearch/tsconfig-for-the-file-exists.js index 46549bba0af88..03473146d7a0a 100644 --- a/tests/baselines/reference/tsserver/configFileSearch/tsconfig-for-the-file-exists.js +++ b/tests/baselines/reference/tsserver/configFileSearch/tsconfig-for-the-file-exists.js @@ -228,10 +228,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/ Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/configFileSearch/when-projectRootPath-is-not-present.js b/tests/baselines/reference/tsserver/configFileSearch/when-projectRootPath-is-not-present.js index 46c9d088a9d30..561f80a22cb41 100644 --- a/tests/baselines/reference/tsserver/configFileSearch/when-projectRootPath-is-not-present.js +++ b/tests/baselines/reference/tsserver/configFileSearch/when-projectRootPath-is-not-present.js @@ -144,13 +144,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -190,7 +188,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -214,7 +211,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/configFileSearch/when-projectRootPath-is-present-but-file-is-not-from-project-root.js b/tests/baselines/reference/tsserver/configFileSearch/when-projectRootPath-is-present-but-file-is-not-from-project-root.js index 5e50061b43a9b..f36f6c4b48e60 100644 --- a/tests/baselines/reference/tsserver/configFileSearch/when-projectRootPath-is-present-but-file-is-not-from-project-root.js +++ b/tests/baselines/reference/tsserver/configFileSearch/when-projectRootPath-is-present-but-file-is-not-from-project-root.js @@ -145,13 +145,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -191,7 +189,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -215,7 +212,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/configuredProjects/Open-ref-of-configured-project-when-open-file-gets-added-to-the-project-as-part-of-configured-file-update-buts-its-open-file-references-are-all-closed-when-the-update-happens.js b/tests/baselines/reference/tsserver/configuredProjects/Open-ref-of-configured-project-when-open-file-gets-added-to-the-project-as-part-of-configured-file-update-buts-its-open-file-references-are-all-closed-when-the-update-happens.js index e3e4364ef9503..a13a45a78d516 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/Open-ref-of-configured-project-when-open-file-gets-added-to-the-project-as-part-of-configured-file-update-buts-its-open-file-references-are-all-closed-when-the-update-happens.js +++ b/tests/baselines/reference/tsserver/configuredProjects/Open-ref-of-configured-project-when-open-file-gets-added-to-the-project-as-part-of-configured-file-update-buts-its-open-file-references-are-all-closed-when-the-update-happens.js @@ -251,14 +251,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/a/b/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/a/b/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -684,12 +676,6 @@ Info seq [hh:mm:ss:mss] request: Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /user/username/projects/project/a/file4.ts ProjectRootPath: undefined:: Result: undefined Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, currentDirectory: /user/username/projects/project/a Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/configuredProjects/Open-ref-of-configured-project-when-open-file-gets-added-to-the-project-as-part-of-configured-file-update.js b/tests/baselines/reference/tsserver/configuredProjects/Open-ref-of-configured-project-when-open-file-gets-added-to-the-project-as-part-of-configured-file-update.js index 54b0e745bd0a3..28fa0e1018caa 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/Open-ref-of-configured-project-when-open-file-gets-added-to-the-project-as-part-of-configured-file-update.js +++ b/tests/baselines/reference/tsserver/configuredProjects/Open-ref-of-configured-project-when-open-file-gets-added-to-the-project-as-part-of-configured-file-update.js @@ -251,14 +251,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/a/b/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/a/b/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -469,12 +461,6 @@ Info seq [hh:mm:ss:mss] request: Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /user/username/projects/project/a/file4.ts ProjectRootPath: undefined:: Result: undefined Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, currentDirectory: /user/username/projects/project/a Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -1148,14 +1134,6 @@ Info seq [hh:mm:ss:mss] Files (0) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/a/b/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/a/b/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/user/username/projects/project/a/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) @@ -1381,10 +1359,6 @@ Info seq [hh:mm:ss:mss] request: Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /user/username/projects/project/file5.ts ProjectRootPath: undefined:: Result: undefined Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject3*, currentDirectory: /user/username/projects/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject3* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject3* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject3*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -1422,12 +1396,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/project/a/b/tsconfig.json 2000 undefined Project: /user/username/projects/project/a/b/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/a/b/node_modules/@types 1 undefined Project: /user/username/projects/project/a/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/a/b/node_modules/@types 1 undefined Project: /user/username/projects/project/a/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/a/node_modules/@types 1 undefined Project: /user/username/projects/project/a/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/a/node_modules/@types 1 undefined Project: /user/username/projects/project/a/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/a/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/a/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/project/a/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/project/a/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/project/a/b/src/file1.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/project/a/b/file3.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/project/a/b/src/file2.ts 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/configuredProjects/add-and-then-remove-a-config-file-in-a-folder-with-loose-files.js b/tests/baselines/reference/tsserver/configuredProjects/add-and-then-remove-a-config-file-in-a-folder-with-loose-files.js index 3bf99f5c67406..e05262a21b9ee 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/add-and-then-remove-a-config-file-in-a-folder-with-loose-files.js +++ b/tests/baselines/reference/tsserver/configuredProjects/add-and-then-remove-a-config-file-in-a-folder-with-loose-files.js @@ -121,10 +121,6 @@ Info seq [hh:mm:ss:mss] request: Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /user/username/projects/myproject/commonFile2.ts ProjectRootPath: undefined:: Result: undefined Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, currentDirectory: /user/username/projects/myproject Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -266,10 +262,6 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -734,8 +726,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject3* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject3* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject3*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -756,10 +746,6 @@ Info seq [hh:mm:ss:mss] Files (0) Info seq [hh:mm:ss:mss] ----------------------------------------------- -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1188,10 +1174,6 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -1205,10 +1187,8 @@ Info seq [hh:mm:ss:mss] Files (2) Root file specified for compilation Info seq [hh:mm:ss:mss] ----------------------------------------------- -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/commonFile1.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/commonFile2.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject3*' (Inferred) @@ -1393,8 +1373,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1443,8 +1421,6 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1535,10 +1511,6 @@ Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /user/username/project Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject4*, currentDirectory: /user/username/projects/myproject Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject4* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject4* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject4*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -1768,8 +1740,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject5* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject5* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject5* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject5* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject5* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject5* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject5*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -2206,10 +2176,6 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject4*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -2223,10 +2189,8 @@ Info seq [hh:mm:ss:mss] Files (2) Root file specified for compilation Info seq [hh:mm:ss:mss] ----------------------------------------------- -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/commonFile1.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/commonFile2.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject5*' (Inferred) diff --git a/tests/baselines/reference/tsserver/configuredProjects/add-and-then-remove-a-config-file-when-parent-folder-has-config-file-and-file-from-first-config-is-not-open.js b/tests/baselines/reference/tsserver/configuredProjects/add-and-then-remove-a-config-file-when-parent-folder-has-config-file-and-file-from-first-config-is-not-open.js index 4fc0a4243ef7f..e25bf76c24384 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/add-and-then-remove-a-config-file-when-parent-folder-has-config-file-and-file-from-first-config-is-not-open.js +++ b/tests/baselines/reference/tsserver/configuredProjects/add-and-then-remove-a-config-file-when-parent-folder-has-config-file-and-file-from-first-config-is-not-open.js @@ -174,10 +174,6 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -553,8 +549,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -901,10 +895,6 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -919,10 +909,8 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/commonFile2.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/commonFile1.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) @@ -1114,8 +1102,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/folder/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1171,10 +1157,6 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1223,8 +1205,6 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1421,8 +1401,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -1452,10 +1430,6 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1470,10 +1444,8 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/commonFile2.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/commonFile1.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) @@ -1707,8 +1679,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/folder/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1764,10 +1734,6 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1816,8 +1782,6 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/configuredProjects/add-and-then-remove-a-config-file-when-parent-folder-has-config-file.js b/tests/baselines/reference/tsserver/configuredProjects/add-and-then-remove-a-config-file-when-parent-folder-has-config-file.js index 8d4ac6e4d5da4..7a6610d93e93c 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/add-and-then-remove-a-config-file-when-parent-folder-has-config-file.js +++ b/tests/baselines/reference/tsserver/configuredProjects/add-and-then-remove-a-config-file-when-parent-folder-has-config-file.js @@ -277,10 +277,6 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -573,8 +569,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -1005,10 +999,6 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1023,10 +1013,8 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/commonFile1.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/commonFile2.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) @@ -1217,8 +1205,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/folder/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1267,8 +1253,6 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1364,10 +1348,6 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1514,12 +1494,6 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/folder/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -1833,8 +1807,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject3* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject3* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject3*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -1855,12 +1827,6 @@ Info seq [hh:mm:ss:mss] Files (0) Info seq [hh:mm:ss:mss] ----------------------------------------------- -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2283,10 +2249,6 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2301,10 +2263,8 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/commonFile1.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/commonFile2.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject3*' (Inferred) @@ -2495,8 +2455,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/folder/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2545,8 +2503,6 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2658,10 +2614,6 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2929,8 +2881,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject4* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject4* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject4*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -2960,10 +2910,6 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2978,10 +2924,8 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/commonFile1.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/commonFile2.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject4*' (Inferred) @@ -3180,8 +3124,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/folder/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -3230,8 +3172,6 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -3345,10 +3285,6 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -3536,8 +3472,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject5* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject5* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject5* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject5* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject5* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject5* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject5*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -3890,10 +3824,6 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -3908,10 +3838,8 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/commonFile1.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/commonFile2.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject5*' (Inferred) @@ -4111,8 +4039,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/folder/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -4161,8 +4087,6 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject5* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject5* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject5* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject5* WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -4275,10 +4199,6 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -4478,8 +4398,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject6* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject6* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject6* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject6* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject6* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject6* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject6*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -4507,10 +4425,6 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/commonFile2.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -4817,8 +4731,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/commonFile1.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject6*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -5003,8 +4915,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/folder/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -5053,8 +4963,6 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject6* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject6* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject6* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject6* WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -5150,10 +5058,6 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -5351,8 +5255,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject7* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject7* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject7* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject7* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject7* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject7* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject7*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -5380,10 +5282,6 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/commonFile2.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -5614,10 +5512,6 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -5666,8 +5560,6 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject7* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject7* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject7* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject7* WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -5766,12 +5658,6 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject8*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/folder/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject8* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /dev/null/inferredProject8* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /dev/null/inferredProject8* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject8* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject8* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject8* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject8* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject8* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject8*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/configuredProjects/add-and-then-remove-a-config-file-with-sibling-jsconfig-file-and-file-from-first-config-is-not-open.js b/tests/baselines/reference/tsserver/configuredProjects/add-and-then-remove-a-config-file-with-sibling-jsconfig-file-and-file-from-first-config-is-not-open.js index 7d134aa6a2297..f2de8a154fb88 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/add-and-then-remove-a-config-file-with-sibling-jsconfig-file-and-file-from-first-config-is-not-open.js +++ b/tests/baselines/reference/tsserver/configuredProjects/add-and-then-remove-a-config-file-with-sibling-jsconfig-file-and-file-from-first-config-is-not-open.js @@ -182,12 +182,6 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/folder/jsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/folder/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/jsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -569,8 +563,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -915,12 +907,6 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/jsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -935,12 +921,10 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/jsconfig.json 2000 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/commonFile2.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/commonFile1.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) @@ -1132,8 +1116,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/folder/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1194,12 +1176,6 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/folder/jsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/folder/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/jsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1248,8 +1224,6 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1446,8 +1420,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -1475,12 +1447,6 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/jsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1495,12 +1461,10 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/jsconfig.json 2000 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/commonFile2.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/commonFile1.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) @@ -1734,8 +1698,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/folder/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1796,12 +1758,6 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/folder/jsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/folder/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/jsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1850,8 +1806,6 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/configuredProjects/add-and-then-remove-a-config-file-with-sibling-jsconfig-file.js b/tests/baselines/reference/tsserver/configuredProjects/add-and-then-remove-a-config-file-with-sibling-jsconfig-file.js index d47755a7b4180..60043be38c48d 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/add-and-then-remove-a-config-file-with-sibling-jsconfig-file.js +++ b/tests/baselines/reference/tsserver/configuredProjects/add-and-then-remove-a-config-file-with-sibling-jsconfig-file.js @@ -285,12 +285,6 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/folder/jsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/folder/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/jsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -589,8 +583,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -1019,12 +1011,6 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/jsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1039,12 +1025,10 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/jsconfig.json 2000 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/commonFile1.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/commonFile2.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) @@ -1235,8 +1219,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/folder/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1285,8 +1267,6 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1387,12 +1367,6 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/folder/jsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/folder/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/jsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1539,12 +1513,6 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -1858,8 +1826,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject3* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject3* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject3*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -1880,12 +1846,6 @@ Info seq [hh:mm:ss:mss] Files (0) Info seq [hh:mm:ss:mss] ----------------------------------------------- -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2306,12 +2266,6 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/jsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2326,12 +2280,10 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/jsconfig.json 2000 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/commonFile1.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/commonFile2.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject3*' (Inferred) @@ -2522,8 +2474,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/folder/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2572,8 +2522,6 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2690,12 +2638,6 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/folder/jsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/folder/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/jsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2963,8 +2905,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject4* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject4* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject4*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -2992,12 +2932,6 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/jsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -3012,12 +2946,10 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/jsconfig.json 2000 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/commonFile1.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/commonFile2.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject4*' (Inferred) @@ -3216,8 +3148,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/folder/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -3266,8 +3196,6 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -3386,12 +3314,6 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/folder/jsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/folder/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/jsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -3579,8 +3501,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject5* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject5* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject5* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject5* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject5* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject5* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject5*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -3931,12 +3851,6 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/jsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -3951,12 +3865,10 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/jsconfig.json 2000 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/commonFile1.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/commonFile2.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject5*' (Inferred) @@ -4156,8 +4068,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/folder/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -4206,8 +4116,6 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject5* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject5* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject5* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject5* WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -4325,12 +4233,6 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/folder/jsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/folder/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/jsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -4530,8 +4432,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject6* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject6* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject6* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject6* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject6* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject6* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject6*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -4559,12 +4459,6 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/jsconfig.json 2000 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/commonFile2.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -4871,8 +4765,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/commonFile1.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject6*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -5057,8 +4949,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/folder/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -5107,8 +4997,6 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject6* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject6* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject6* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject6* WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -5209,12 +5097,6 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/folder/jsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/folder/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/jsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -5412,8 +5294,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject7* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject7* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject7* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject7* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject7* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject7* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject7*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -5441,12 +5321,6 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/jsconfig.json 2000 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/folder/commonFile2.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -5682,12 +5556,6 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/folder/jsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/folder/jsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/folder/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/jsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -5736,8 +5604,6 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject7* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/random/node_modules/@types 1 undefined Project: /dev/null/inferredProject7* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject7* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject7* WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/folder/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -5836,12 +5702,6 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject8*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject8* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /dev/null/inferredProject8* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/folder/node_modules/@types 1 undefined Project: /dev/null/inferredProject8* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject8* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject8* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject8* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject8* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject8* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject8*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/configuredProjects/changed-module-resolution-reflected-when-specifying-files-list.js b/tests/baselines/reference/tsserver/configuredProjects/changed-module-resolution-reflected-when-specifying-files-list.js index 26f3fb216c4c8..952fcb12dfd60 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/changed-module-resolution-reflected-when-specifying-files-list.js +++ b/tests/baselines/reference/tsserver/configuredProjects/changed-module-resolution-reflected-when-specifying-files-list.js @@ -67,10 +67,10 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/solution/projects/project/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/username/solution/projects/file2.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/solution/projects/project 0 undefined Project: /users/username/solution/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/solution/projects/project 0 undefined Project: /users/username/solution/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/username/solution/projects/file2.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/solution/projects/project/node_modules/@types 1 undefined Project: /users/username/solution/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/solution/projects/project/node_modules/@types 1 undefined Project: /users/username/solution/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/solution/projects/node_modules/@types 1 undefined Project: /users/username/solution/projects/project/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-after-watcher-is-invoked,-ask-errors-on-it-after-old-one-without-file-being-in-config.js b/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-after-watcher-is-invoked,-ask-errors-on-it-after-old-one-without-file-being-in-config.js index d2e790b705233..094f24644997f 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-after-watcher-is-invoked,-ask-errors-on-it-after-old-one-without-file-being-in-config.js +++ b/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-after-watcher-is-invoked,-ask-errors-on-it-after-old-one-without-file-being-in-config.js @@ -257,10 +257,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-after-watcher-is-invoked,-ask-errors-on-it-before-old-one-without-file-being-in-config.js b/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-after-watcher-is-invoked,-ask-errors-on-it-before-old-one-without-file-being-in-config.js index e5b675582f41f..9e06d77cc8954 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-after-watcher-is-invoked,-ask-errors-on-it-before-old-one-without-file-being-in-config.js +++ b/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-after-watcher-is-invoked,-ask-errors-on-it-before-old-one-without-file-being-in-config.js @@ -257,10 +257,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-before-watcher-is-invoked,-ask-errors-on-it-after-old-one-without-file-being-in-config.js b/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-before-watcher-is-invoked,-ask-errors-on-it-after-old-one-without-file-being-in-config.js index 5bbcb1fdab640..4d4e6e3526609 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-before-watcher-is-invoked,-ask-errors-on-it-after-old-one-without-file-being-in-config.js +++ b/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-before-watcher-is-invoked,-ask-errors-on-it-after-old-one-without-file-being-in-config.js @@ -251,10 +251,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-before-watcher-is-invoked,-ask-errors-on-it-after-old-one.js b/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-before-watcher-is-invoked,-ask-errors-on-it-after-old-one.js index 8b1340c446129..26059996820c9 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-before-watcher-is-invoked,-ask-errors-on-it-after-old-one.js +++ b/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-before-watcher-is-invoked,-ask-errors-on-it-after-old-one.js @@ -252,10 +252,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-before-watcher-is-invoked,-ask-errors-on-it-before-old-one-without-file-being-in-config.js b/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-before-watcher-is-invoked,-ask-errors-on-it-before-old-one-without-file-being-in-config.js index 25c7b29993eaa..bef55ba005baa 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-before-watcher-is-invoked,-ask-errors-on-it-before-old-one-without-file-being-in-config.js +++ b/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-before-watcher-is-invoked,-ask-errors-on-it-before-old-one-without-file-being-in-config.js @@ -251,10 +251,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-before-watcher-is-invoked,-ask-errors-on-it-before-old-one.js b/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-before-watcher-is-invoked,-ask-errors-on-it-before-old-one.js index 1c673f8c87887..d210f4d260887 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-before-watcher-is-invoked,-ask-errors-on-it-before-old-one.js +++ b/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-before-watcher-is-invoked,-ask-errors-on-it-before-old-one.js @@ -252,10 +252,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/configuredProjects/failed-lookup-locations-uses-parent-most-node_modules-directory.js b/tests/baselines/reference/tsserver/configuredProjects/failed-lookup-locations-uses-parent-most-node_modules-directory.js index 52aa43c75d9aa..41a6a73556ebd 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/failed-lookup-locations-uses-parent-most-node_modules-directory.js +++ b/tests/baselines/reference/tsserver/configuredProjects/failed-lookup-locations-uses-parent-most-node_modules-directory.js @@ -70,13 +70,13 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/rootfolder/a/b/src/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/b/src/node_modules 1 undefined Project: /user/username/rootfolder/a/b/src/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/b/src/node_modules 1 undefined Project: /user/username/rootfolder/a/b/src/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/a/b/src/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/a/b/src/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/b/node_modules/module2/package.json 2000 undefined Project: /user/username/rootfolder/a/b/src/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/b/node_modules/package.json 2000 undefined Project: /user/username/rootfolder/a/b/src/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/b/package.json 2000 undefined Project: /user/username/rootfolder/a/b/src/tsconfig.json WatchType: File location affecting resolution diff --git a/tests/baselines/reference/tsserver/configuredProjects/files-are-properly-detached-when-language-service-is-disabled.js b/tests/baselines/reference/tsserver/configuredProjects/files-are-properly-detached-when-language-service-is-disabled.js index 4805fbd826e41..8d08e03f0cfc1 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/files-are-properly-detached-when-language-service-is-disabled.js +++ b/tests/baselines/reference/tsserver/configuredProjects/files-are-properly-detached-when-language-service-is-disabled.js @@ -427,13 +427,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -473,7 +471,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -497,7 +494,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/configuredProjects/files-explicitly-excluded-in-config-file.js b/tests/baselines/reference/tsserver/configuredProjects/files-explicitly-excluded-in-config-file.js index 154cceb0850bb..6f06ffab53586 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/files-explicitly-excluded-in-config-file.js +++ b/tests/baselines/reference/tsserver/configuredProjects/files-explicitly-excluded-in-config-file.js @@ -235,10 +235,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/c/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/c/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/configuredProjects/open-file-become-a-part-of-configured-project-if-it-is-referenced-from-root-file.js b/tests/baselines/reference/tsserver/configuredProjects/open-file-become-a-part-of-configured-project-if-it-is-referenced-from-root-file.js index 98de1d2c60d0e..c51ff301888bc 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/open-file-become-a-part-of-configured-project-if-it-is-referenced-from-root-file.js +++ b/tests/baselines/reference/tsserver/configuredProjects/open-file-become-a-part-of-configured-project-if-it-is-referenced-from-root-file.js @@ -148,12 +148,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/c/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/c/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -348,14 +342,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/c/f2.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a/c/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/c/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/c/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/a/c/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) diff --git a/tests/baselines/reference/tsserver/configuredProjects/should-be-able-to-handle-@types-if-input-file-list-is-empty.js b/tests/baselines/reference/tsserver/configuredProjects/should-be-able-to-handle-@types-if-input-file-list-is-empty.js index c8793b38a537c..a71d297fed758 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/should-be-able-to-handle-@types-if-input-file-list-is-empty.js +++ b/tests/baselines/reference/tsserver/configuredProjects/should-be-able-to-handle-@types-if-input-file-list-is-empty.js @@ -167,12 +167,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/a/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) diff --git a/tests/baselines/reference/tsserver/configuredProjects/should-be-tolerated-without-crashing-the-server.js b/tests/baselines/reference/tsserver/configuredProjects/should-be-tolerated-without-crashing-the-server.js index 49792c42bba2a..db287b92cd987 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/should-be-tolerated-without-crashing-the-server.js +++ b/tests/baselines/reference/tsserver/configuredProjects/should-be-tolerated-without-crashing-the-server.js @@ -152,14 +152,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/configuredProjects/should-ignore-non-existing-files-specified-in-the-config-file.js b/tests/baselines/reference/tsserver/configuredProjects/should-ignore-non-existing-files-specified-in-the-config-file.js index a965ae3dbd5b3..a4cc8f0c1848d 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/should-ignore-non-existing-files-specified-in-the-config-file.js +++ b/tests/baselines/reference/tsserver/configuredProjects/should-ignore-non-existing-files-specified-in-the-config-file.js @@ -271,10 +271,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, currentDirectory: /user/username/projects/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/configuredProjects/should-not-close-configured-project-after-closing-last-open-file,-but-should-be-closed-on-next-file-open-if-its-not-the-file-from-same-project.js b/tests/baselines/reference/tsserver/configuredProjects/should-not-close-configured-project-after-closing-last-open-file,-but-should-be-closed-on-next-file-open-if-its-not-the-file-from-same-project.js index c35041d7c5aa0..d85cd8ff2fe12 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/should-not-close-configured-project-after-closing-last-open-file,-but-should-be-closed-on-next-file-open-if-its-not-the-file-from-same-project.js +++ b/tests/baselines/reference/tsserver/configuredProjects/should-not-close-configured-project-after-closing-last-open-file,-but-should-be-closed-on-next-file-open-if-its-not-the-file-from-same-project.js @@ -379,13 +379,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -424,7 +422,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -447,7 +444,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/configuredProjects/should-properly-handle-module-resolution-changes-in-config-file.js b/tests/baselines/reference/tsserver/configuredProjects/should-properly-handle-module-resolution-changes-in-config-file.js index 9a7dca654c5f5..59591aa707446 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/should-properly-handle-module-resolution-changes-in-config-file.js +++ b/tests/baselines/reference/tsserver/configuredProjects/should-properly-handle-module-resolution-changes-in-config-file.js @@ -73,11 +73,11 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/project/a/b/tsconfig.json +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/a/b/node_modules 1 undefined Project: /user/username/projects/project/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/a/b/node_modules 1 undefined Project: /user/username/projects/project/a/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/a/b/node_modules 1 undefined Project: /user/username/projects/project/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/a/b/node_modules 1 undefined Project: /user/username/projects/project/a/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/a/b/node_modules/package.json 2000 undefined Project: /user/username/projects/project/a/b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/a/b/package.json 2000 undefined Project: /user/username/projects/project/a/b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/a/package.json 2000 undefined Project: /user/username/projects/project/a/b/tsconfig.json WatchType: File location affecting resolution @@ -306,12 +306,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -477,13 +471,13 @@ Info seq [hh:mm:ss:mss] Config: /user/username/projects/project/a/b/tsconfig.js Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/project/a/b/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/a/b 0 undefined Project: /user/username/projects/project/a/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/a/b 0 undefined Project: /user/username/projects/project/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/a/b/node_modules 1 undefined Project: /user/username/projects/project/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/a/b/node_modules 1 undefined Project: /user/username/projects/project/a/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/project/a/b/node_modules/package.json 2000 undefined Project: /user/username/projects/project/a/b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/project/a/b/package.json 2000 undefined Project: /user/username/projects/project/a/b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/project/a/package.json 2000 undefined Project: /user/username/projects/project/a/b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/project/package.json 2000 undefined Project: /user/username/projects/project/a/b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/package.json 2000 undefined Project: /user/username/projects/project/a/b/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/a/b/node_modules 1 undefined Project: /user/username/projects/project/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/a/b/node_modules 1 undefined Project: /user/username/projects/project/a/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/project/a/b/tsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/project/a/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) @@ -548,14 +542,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/package.json 2000 undefined Project: /dev/null/inferredProject2* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/a/b/node_modules/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/a/b/node_modules/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/configuredProjects/should-stop-watching-the-extended-configs-of-closed-projects.js b/tests/baselines/reference/tsserver/configuredProjects/should-stop-watching-the-extended-configs-of-closed-projects.js index b438943115748..23bf4efe9daae 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/should-stop-watching-the-extended-configs-of-closed-projects.js +++ b/tests/baselines/reference/tsserver/configuredProjects/should-stop-watching-the-extended-configs-of-closed-projects.js @@ -256,10 +256,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -444,10 +440,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dummy/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dummy/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dummy/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dummy/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dummy/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dummy/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dummy/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dummy/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dummy/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dummy/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dummy/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -863,10 +855,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/b/b.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1170,10 +1158,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a/a.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dummy/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/configuredProjects/should-tolerate-invalid-include-files-that-start-in-subDirectory.js b/tests/baselines/reference/tsserver/configuredProjects/should-tolerate-invalid-include-files-that-start-in-subDirectory.js index 4813b90e78e32..8f4d957de08cf 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/should-tolerate-invalid-include-files-that-start-in-subDirectory.js +++ b/tests/baselines/reference/tsserver/configuredProjects/should-tolerate-invalid-include-files-that-start-in-subDirectory.js @@ -153,14 +153,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/configuredProjects/should-watch-the-extended-configs-of-multiple-projects.js b/tests/baselines/reference/tsserver/configuredProjects/should-watch-the-extended-configs-of-multiple-projects.js index ec79a47ba3c6d..372ba58fc468d 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/should-watch-the-extended-configs-of-multiple-projects.js +++ b/tests/baselines/reference/tsserver/configuredProjects/should-watch-the-extended-configs-of-multiple-projects.js @@ -250,10 +250,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/configuredProjects/when-default-configured-project-does-not-contain-the-file.js b/tests/baselines/reference/tsserver/configuredProjects/when-default-configured-project-does-not-contain-the-file.js index 17e25da6162ff..e3076a4039355 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/when-default-configured-project-does-not-contain-the-file.js +++ b/tests/baselines/reference/tsserver/configuredProjects/when-default-configured-project-does-not-contain-the-file.js @@ -287,14 +287,8 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/foobar 1 undefined Config: /user/username/projects/myproject/foobar/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/foobar 1 undefined Config: /user/username/projects/myproject/foobar/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/foobar/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/foo 1 undefined Project: /user/username/projects/myproject/foobar/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/foo 1 undefined Project: /user/username/projects/myproject/foobar/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/foobar/node_modules/@types 1 undefined Project: /user/username/projects/myproject/foobar/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/foobar/node_modules/@types 1 undefined Project: /user/username/projects/myproject/foobar/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/foobar/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/foobar/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/foobar/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/foobar/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/foobar/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/foobar/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) @@ -718,10 +712,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/foo/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/foo/node_modules/@types 1 undefined Project: /user/username/projects/myproject/foo/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/foo/node_modules/@types 1 undefined Project: /user/username/projects/myproject/foo/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/foo/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/foo/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/foo/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/foo/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/foo/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/foo/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/configuredProjects/when-multiple-projects-are-open-detects-correct-default-project.js b/tests/baselines/reference/tsserver/configuredProjects/when-multiple-projects-are-open-detects-correct-default-project.js index 95fb66e2a07a1..4bc1883226546 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/when-multiple-projects-are-open-detects-correct-default-project.js +++ b/tests/baselines/reference/tsserver/configuredProjects/when-multiple-projects-are-open-detects-correct-default-project.js @@ -97,16 +97,16 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/foo/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/bar/index.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/foo/node_modules/bar 1 undefined Project: /user/username/projects/myproject/foo/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/foo/node_modules/bar 1 undefined Project: /user/username/projects/myproject/foo/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/foo/node_modules 1 undefined Project: /user/username/projects/myproject/foo/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/foo/node_modules 1 undefined Project: /user/username/projects/myproject/foo/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/bar/index.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/foo/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/foo/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /user/username/projects/myproject/foo/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /user/username/projects/myproject/foo/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.es2017.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/foo/node_modules/bar 1 undefined Project: /user/username/projects/myproject/foo/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/foo/node_modules/bar 1 undefined Project: /user/username/projects/myproject/foo/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/foo/node_modules/@types 1 undefined Project: /user/username/projects/myproject/foo/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/foo/node_modules/@types 1 undefined Project: /user/username/projects/myproject/foo/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/foo/tsconfig.json WatchType: Type roots @@ -302,17 +302,9 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/bar/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/bar/node_modules 1 undefined Project: /user/username/projects/myproject/bar/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/bar/node_modules 1 undefined Project: /user/username/projects/myproject/bar/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/bar/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/bar/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /user/username/projects/myproject/bar/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /user/username/projects/myproject/bar/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.dom.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/bar/node_modules/@types 1 undefined Project: /user/username/projects/myproject/bar/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/bar/node_modules/@types 1 undefined Project: /user/username/projects/myproject/bar/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/bar/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/bar/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/bar/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/bar/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/bar/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/bar/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/does-not-jump-to-source-if-inlined-sources.js b/tests/baselines/reference/tsserver/declarationFileMaps/does-not-jump-to-source-if-inlined-sources.js index bde6b66c28afc..6e27f45006505 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/does-not-jump-to-source-if-inlined-sources.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/does-not-jump-to-source-if-inlined-sources.js @@ -584,10 +584,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -620,16 +616,12 @@ Info seq [hh:mm:ss:mss] Files (4) Root file specified for compilation Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/user/user.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/bin/a.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/bin/b.d.ts 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferences-starting-at-definition.js b/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferences-starting-at-definition.js index 0644c3fdbdc7d..7472d7c9a8f59 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferences-starting-at-definition.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferences-starting-at-definition.js @@ -390,10 +390,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -492,10 +488,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/tsconfig.json 2000 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/a.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -713,10 +705,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/b/bin/b.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -754,10 +742,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/tsconfig.json 2000 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/b.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -897,10 +881,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/a/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/a/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/a/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1322,10 +1302,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -1358,16 +1334,12 @@ Info seq [hh:mm:ss:mss] Files (4) Root file specified for compilation Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/user/user.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/bin/b.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/a/tsconfig.json' (Configured) diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferences-target-does-not-exist.js b/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferences-target-does-not-exist.js index 083443ee7e23f..154f589dc881b 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferences-target-does-not-exist.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferences-target-does-not-exist.js @@ -390,10 +390,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -492,10 +488,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/tsconfig.json 2000 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/a.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -713,10 +705,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/b/bin/b.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -754,10 +742,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/tsconfig.json 2000 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/b.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -1105,10 +1089,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -1141,16 +1121,12 @@ Info seq [hh:mm:ss:mss] Files (4) Root file specified for compilation Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/user/user.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/bin/a.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/bin/b.d.ts 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferences.js b/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferences.js index f1cc16850c85b..f919bc6a24234 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferences.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferences.js @@ -390,10 +390,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -492,10 +488,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/tsconfig.json 2000 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/a.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -713,10 +705,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/b/bin/b.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -754,10 +742,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/tsconfig.json 2000 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/b.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -902,10 +886,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/a/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/a/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/a/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1219,10 +1199,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -1254,10 +1230,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/tsconfig.json 2000 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -1277,16 +1249,12 @@ Info seq [hh:mm:ss:mss] Files (4) Root file specified for compilation Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/user/user.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/bin/a.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/bin/b.d.ts 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferencesFull-definition-is-in-mapped-file.js b/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferencesFull-definition-is-in-mapped-file.js index 625912ef2eae9..ae70750f7c65f 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferencesFull-definition-is-in-mapped-file.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferencesFull-definition-is-in-mapped-file.js @@ -358,10 +358,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferencesFull.js b/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferencesFull.js index 3b6a5587e9e9a..27738557ad07b 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferencesFull.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/findAllReferencesFull.js @@ -390,10 +390,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -492,10 +488,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/tsconfig.json 2000 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/a.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -713,10 +705,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/b/bin/b.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -754,10 +742,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/tsconfig.json 2000 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/b.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -902,10 +886,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/a/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/a/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/a/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1253,10 +1233,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -1288,10 +1264,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/tsconfig.json 2000 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -1311,16 +1283,12 @@ Info seq [hh:mm:ss:mss] Files (4) Root file specified for compilation Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/user/user.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/bin/a.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/bin/b.d.ts 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/getDefinitionAndBoundSpan-with-file-navigation.js b/tests/baselines/reference/tsserver/declarationFileMaps/getDefinitionAndBoundSpan-with-file-navigation.js index 10c6ee167e777..49f04f86ab969 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/getDefinitionAndBoundSpan-with-file-navigation.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/getDefinitionAndBoundSpan-with-file-navigation.js @@ -405,10 +405,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -507,10 +503,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/tsconfig.json 2000 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/a.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -767,10 +759,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/a/a.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /home/src/projects/project/user/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /home/src/projects/project/user/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/user/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/user/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/user/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/user/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/user/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/user/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) @@ -1110,10 +1098,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/a/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/a/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/a/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1372,10 +1356,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -1404,10 +1384,6 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/user/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) @@ -1430,14 +1406,10 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user 1 undefined Config: /home/src/projects/project/user/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user 1 undefined Config: /home/src/projects/project/user/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/user/tsconfig.json 2000 undefined Project: /home/src/projects/project/user/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b 1 undefined Project: /home/src/projects/project/user/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b 1 undefined Project: /home/src/projects/project/user/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /home/src/projects/project/user/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /home/src/projects/project/user/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/user/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/user/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/user/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/user/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b 1 undefined Project: /home/src/projects/project/user/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b 1 undefined Project: /home/src/projects/project/user/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/a/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1456,10 +1428,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/tsconfig.json 2000 undefined Project: /home/src/projects/project/user/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/user/user.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/a.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/getDefinitionAndBoundSpan.js b/tests/baselines/reference/tsserver/declarationFileMaps/getDefinitionAndBoundSpan.js index 1b9667495bec7..266de98e62bf8 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/getDefinitionAndBoundSpan.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/getDefinitionAndBoundSpan.js @@ -390,10 +390,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -492,10 +488,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/tsconfig.json 2000 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/a.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -713,10 +705,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/b/bin/b.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -754,10 +742,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/tsconfig.json 2000 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/b.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -1111,10 +1095,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -1147,16 +1127,12 @@ Info seq [hh:mm:ss:mss] Files (4) Root file specified for compilation Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/user/user.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/bin/a.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/bin/b.d.ts 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/getEditsForFileRename-when-referencing-project-doesnt-include-file-and-its-renamed.js b/tests/baselines/reference/tsserver/declarationFileMaps/getEditsForFileRename-when-referencing-project-doesnt-include-file-and-its-renamed.js index 048c06ad301d8..342bc08df9a0d 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/getEditsForFileRename-when-referencing-project-doesnt-include-file-and-its-renamed.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/getEditsForFileRename-when-referencing-project-doesnt-include-file-and-its-renamed.js @@ -274,10 +274,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/getEditsForFileRename.js b/tests/baselines/reference/tsserver/declarationFileMaps/getEditsForFileRename.js index 4634cac58d33a..f147a09afda0a 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/getEditsForFileRename.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/getEditsForFileRename.js @@ -390,10 +390,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -492,10 +488,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/tsconfig.json 2000 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/a.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -713,10 +705,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/b/bin/b.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -754,10 +742,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/tsconfig.json 2000 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/b.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -1117,10 +1101,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -1153,16 +1133,12 @@ Info seq [hh:mm:ss:mss] Files (4) Root file specified for compilation Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/user/user.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/bin/a.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/bin/b.d.ts 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/goToDefinition-target-does-not-exist.js b/tests/baselines/reference/tsserver/declarationFileMaps/goToDefinition-target-does-not-exist.js index 8a4fce161bbfa..36b83e2828380 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/goToDefinition-target-does-not-exist.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/goToDefinition-target-does-not-exist.js @@ -390,10 +390,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -492,10 +488,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/tsconfig.json 2000 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/a.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -713,10 +705,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/b/bin/b.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -754,10 +742,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/tsconfig.json 2000 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/b.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -1084,10 +1068,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -1120,16 +1100,12 @@ Info seq [hh:mm:ss:mss] Files (4) Root file specified for compilation Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/user/user.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/bin/a.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/bin/b.d.ts 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/goToDefinition.js b/tests/baselines/reference/tsserver/declarationFileMaps/goToDefinition.js index 606f31852c282..f52918cfd14d4 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/goToDefinition.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/goToDefinition.js @@ -390,10 +390,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -492,10 +488,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/tsconfig.json 2000 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/a.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -713,10 +705,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/b/bin/b.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -754,10 +742,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/tsconfig.json 2000 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/b.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -1099,10 +1083,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -1135,16 +1115,12 @@ Info seq [hh:mm:ss:mss] Files (4) Root file specified for compilation Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/user/user.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/bin/a.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/bin/b.d.ts 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/goToImplementation.js b/tests/baselines/reference/tsserver/declarationFileMaps/goToImplementation.js index 06ccb8b932f4c..4fe7472b9b6ad 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/goToImplementation.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/goToImplementation.js @@ -390,10 +390,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -492,10 +488,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/tsconfig.json 2000 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/a.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -713,10 +705,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/b/bin/b.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -754,10 +742,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/tsconfig.json 2000 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/b.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -1099,10 +1083,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -1135,16 +1115,12 @@ Info seq [hh:mm:ss:mss] Files (4) Root file specified for compilation Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/user/user.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/bin/a.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/bin/b.d.ts 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/goToType.js b/tests/baselines/reference/tsserver/declarationFileMaps/goToType.js index c0f65d3048091..c89ac26ff46c6 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/goToType.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/goToType.js @@ -390,10 +390,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -492,10 +488,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/tsconfig.json 2000 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/a.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -713,10 +705,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/b/bin/b.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -754,10 +742,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/tsconfig.json 2000 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/b.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -1099,10 +1083,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -1135,16 +1115,12 @@ Info seq [hh:mm:ss:mss] Files (4) Root file specified for compilation Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/user/user.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/bin/a.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/bin/b.d.ts 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/navigateTo.js b/tests/baselines/reference/tsserver/declarationFileMaps/navigateTo.js index d430da400e160..eec32a852cb4f 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/navigateTo.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/navigateTo.js @@ -390,10 +390,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -492,10 +488,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/tsconfig.json 2000 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/a.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -713,10 +705,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/b/bin/b.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -754,10 +742,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/tsconfig.json 2000 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/b.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -1130,10 +1114,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -1166,16 +1146,12 @@ Info seq [hh:mm:ss:mss] Files (4) Root file specified for compilation Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/user/user.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/bin/a.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/bin/b.d.ts 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/navigateToAll-file-is-not-specified-but-project-is.js b/tests/baselines/reference/tsserver/declarationFileMaps/navigateToAll-file-is-not-specified-but-project-is.js index cb6dfb0f0a56d..8a9a7f9ffb606 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/navigateToAll-file-is-not-specified-but-project-is.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/navigateToAll-file-is-not-specified-but-project-is.js @@ -405,10 +405,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -507,10 +503,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/tsconfig.json 2000 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/a.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -735,10 +727,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/a/a.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /home/src/projects/project/user/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /home/src/projects/project/user/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/user/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/user/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/user/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/user/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/user/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/user/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/navigateToAll-neither-file-not-project-is-specified.js b/tests/baselines/reference/tsserver/declarationFileMaps/navigateToAll-neither-file-not-project-is-specified.js index 225ef9f7723bd..b563ea6a1a587 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/navigateToAll-neither-file-not-project-is-specified.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/navigateToAll-neither-file-not-project-is-specified.js @@ -405,10 +405,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -507,10 +503,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/tsconfig.json 2000 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/a.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -735,10 +727,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/a/a.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /home/src/projects/project/user/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /home/src/projects/project/user/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/user/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/user/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/user/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/user/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/user/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/user/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/renameLocations-starting-at-definition.js b/tests/baselines/reference/tsserver/declarationFileMaps/renameLocations-starting-at-definition.js index 6b87e6308cf2a..6c650729b5e1a 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/renameLocations-starting-at-definition.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/renameLocations-starting-at-definition.js @@ -390,10 +390,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -492,10 +488,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/tsconfig.json 2000 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/a.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -713,10 +705,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/b/bin/b.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -754,10 +742,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/tsconfig.json 2000 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/b.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -897,10 +881,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/a/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/a/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/a/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1336,10 +1316,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -1372,16 +1348,12 @@ Info seq [hh:mm:ss:mss] Files (4) Root file specified for compilation Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/user/user.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/bin/b.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/a/tsconfig.json' (Configured) diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/renameLocations-target-does-not-exist.js b/tests/baselines/reference/tsserver/declarationFileMaps/renameLocations-target-does-not-exist.js index b575397507756..d85dbb45140cc 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/renameLocations-target-does-not-exist.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/renameLocations-target-does-not-exist.js @@ -390,10 +390,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -492,10 +488,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/tsconfig.json 2000 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/a.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -713,10 +705,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/b/bin/b.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -754,10 +742,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/tsconfig.json 2000 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/b.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -1122,10 +1106,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -1158,16 +1138,12 @@ Info seq [hh:mm:ss:mss] Files (4) Root file specified for compilation Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/user/user.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/bin/a.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/bin/b.d.ts 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/renameLocations.js b/tests/baselines/reference/tsserver/declarationFileMaps/renameLocations.js index 3d1398f6a90ab..1545f7f3f1883 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/renameLocations.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/renameLocations.js @@ -390,10 +390,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -492,10 +488,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/tsconfig.json 2000 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/a.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -713,10 +705,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/b/bin/b.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -754,10 +742,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/tsconfig.json 2000 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/b.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -901,10 +885,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/a/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/a/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/a/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1234,10 +1214,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -1269,10 +1245,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/tsconfig.json 2000 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -1292,16 +1264,12 @@ Info seq [hh:mm:ss:mss] Files (4) Root file specified for compilation Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/user/user.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/bin/a.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/bin/b.d.ts 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/declarationFileMaps/renameLocationsFull.js b/tests/baselines/reference/tsserver/declarationFileMaps/renameLocationsFull.js index c93792b2bb91a..de596ff11e65f 100644 --- a/tests/baselines/reference/tsserver/declarationFileMaps/renameLocationsFull.js +++ b/tests/baselines/reference/tsserver/declarationFileMaps/renameLocationsFull.js @@ -390,10 +390,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -492,10 +488,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/tsconfig.json 2000 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/a.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -713,10 +705,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/b/bin/b.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -754,10 +742,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/tsconfig.json 2000 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/b.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -901,10 +885,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/a/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/a/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/a/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1195,10 +1175,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -1230,10 +1206,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/tsconfig.json 2000 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -1253,16 +1225,12 @@ Info seq [hh:mm:ss:mss] Files (4) Root file specified for compilation Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/user/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/user/user.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/bin/a.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/b/bin/b.d.ts 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/documentRegistry/Caches-the-source-file-if-script-info-is-orphan,-and-orphan-script-info-changes.js b/tests/baselines/reference/tsserver/documentRegistry/Caches-the-source-file-if-script-info-is-orphan,-and-orphan-script-info-changes.js index ce7447d6ff42f..6431284fdac22 100644 --- a/tests/baselines/reference/tsserver/documentRegistry/Caches-the-source-file-if-script-info-is-orphan,-and-orphan-script-info-changes.js +++ b/tests/baselines/reference/tsserver/documentRegistry/Caches-the-source-file-if-script-info-is-orphan,-and-orphan-script-info-changes.js @@ -257,6 +257,8 @@ ScriptInfos:: /user/username/projects/myproject/tsconfig.json Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -282,6 +284,24 @@ export const a: number; export const b: number; +PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/user/username/projects/myproject/module1.d.ts: + {} +/user/username/projects/myproject/tsconfig.json: + {} + +FsWatches *deleted*:: +/user/username/projects/myproject: + {} + Projects:: /user/username/projects/myproject/tsconfig.json (Configured) *changed* projectStateVersion: 2 @@ -349,6 +369,8 @@ ScriptInfos:: containingProjects: 0 Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json projectStateVersion: 3 projectProgramVersion: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/documentRegistry/Caches-the-source-file-if-script-info-is-orphan.js b/tests/baselines/reference/tsserver/documentRegistry/Caches-the-source-file-if-script-info-is-orphan.js index 00af621318d46..4e203a3932716 100644 --- a/tests/baselines/reference/tsserver/documentRegistry/Caches-the-source-file-if-script-info-is-orphan.js +++ b/tests/baselines/reference/tsserver/documentRegistry/Caches-the-source-file-if-script-info-is-orphan.js @@ -257,6 +257,8 @@ ScriptInfos:: /user/username/projects/myproject/tsconfig.json Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -276,6 +278,24 @@ DocumentRegistry:: /home/src/tslibs/ts/lib/lib.d.ts: TS 1 Before request +PolledWatches:: +/user/username/projects/myproject/node_modules/@types: + {"pollingInterval":500} +/user/username/projects/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/user/username/projects/myproject/module1.d.ts: + {} +/user/username/projects/myproject/tsconfig.json: + {} + +FsWatches *deleted*:: +/user/username/projects/myproject: + {} + Projects:: /user/username/projects/myproject/tsconfig.json (Configured) *changed* projectStateVersion: 2 @@ -341,6 +361,8 @@ ScriptInfos:: containingProjects: 0 Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json projectStateVersion: 3 projectProgramVersion: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/documentRegistry/works-when-reusing-orphan-script-info-with-different-scriptKind.js b/tests/baselines/reference/tsserver/documentRegistry/works-when-reusing-orphan-script-info-with-different-scriptKind.js index 215648946d304..e2cd57d5db355 100644 --- a/tests/baselines/reference/tsserver/documentRegistry/works-when-reusing-orphan-script-info-with-different-scriptKind.js +++ b/tests/baselines/reference/tsserver/documentRegistry/works-when-reusing-orphan-script-info-with-different-scriptKind.js @@ -34,13 +34,13 @@ Info seq [hh:mm:ss:mss] request: Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: ^/inmemory/model/6 ProjectRootPath: /users/user/projects/san:: Result: undefined Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, currentDirectory: /users/user/projects/san Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/san/^ 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/san/^ 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/san/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/san/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/san/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/san/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots @@ -271,6 +271,12 @@ Info seq [hh:mm:ss:mss] request: } Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: ^/inmemory/model/4 ProjectRootPath: /users/user/projects/san:: Result: undefined Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/san/^ 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/san/^ 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/san/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/san/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 3 projectProgramVersion: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (3) @@ -306,6 +312,24 @@ Info seq [hh:mm:ss:mss] response: } After request +PolledWatches:: +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/san/node_modules/@types: + {"pollingInterval":500} + +PolledWatches *deleted*:: +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/san/^: + {"pollingInterval":500} +/users/user/projects/san/node_modules: + {"pollingInterval":500} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: + {} + Projects:: /dev/null/inferredProject1* (Inferred) *changed* projectStateVersion: 3 diff --git a/tests/baselines/reference/tsserver/duplicatePackages/works-with-import-fixes.js b/tests/baselines/reference/tsserver/duplicatePackages/works-with-import-fixes.js index 0a8894b2f2327..cdb7ada40a67e 100644 --- a/tests/baselines/reference/tsserver/duplicatePackages/works-with-import-fixes.js +++ b/tests/baselines/reference/tsserver/duplicatePackages/works-with-import-fixes.js @@ -83,17 +83,17 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/project Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project 1 undefined Config: /home/src/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/b/user.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/foo/package.json 2000 undefined Project: /home/src/projects/project/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/foo/package.json 2000 undefined Project: /home/src/projects/project/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/dynamicFiles/dynamic-file-with-projectRootPath-fails-when-useInferredProjectPerProjectRoot-is-false.js b/tests/baselines/reference/tsserver/dynamicFiles/dynamic-file-with-projectRootPath-fails-when-useInferredProjectPerProjectRoot-is-false.js index 5629ba21ed2d7..4cfd2f88efda6 100644 --- a/tests/baselines/reference/tsserver/dynamicFiles/dynamic-file-with-projectRootPath-fails-when-useInferredProjectPerProjectRoot-is-false.js +++ b/tests/baselines/reference/tsserver/dynamicFiles/dynamic-file-with-projectRootPath-fails-when-useInferredProjectPerProjectRoot-is-false.js @@ -142,13 +142,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -194,7 +192,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -218,7 +215,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/dynamicFiles/dynamic-file-with-projectRootPath-with-useInferredProjectPerProjectRoot.js b/tests/baselines/reference/tsserver/dynamicFiles/dynamic-file-with-projectRootPath-with-useInferredProjectPerProjectRoot.js index ab41801119cf0..63c31d46b4e5a 100644 --- a/tests/baselines/reference/tsserver/dynamicFiles/dynamic-file-with-projectRootPath-with-useInferredProjectPerProjectRoot.js +++ b/tests/baselines/reference/tsserver/dynamicFiles/dynamic-file-with-projectRootPath-with-useInferredProjectPerProjectRoot.js @@ -122,13 +122,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/myproject", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -174,7 +172,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -198,7 +195,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -317,12 +313,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -368,7 +362,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -392,7 +385,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/dynamicFiles/dynamic-file-with-reference-paths-without-external-project.js b/tests/baselines/reference/tsserver/dynamicFiles/dynamic-file-with-reference-paths-without-external-project.js index f0caa377af25a..d0fece9572c4d 100644 --- a/tests/baselines/reference/tsserver/dynamicFiles/dynamic-file-with-reference-paths-without-external-project.js +++ b/tests/baselines/reference/tsserver/dynamicFiles/dynamic-file-with-reference-paths-without-external-project.js @@ -126,13 +126,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -178,7 +176,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -202,7 +199,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/dynamicFiles/dynamic-file-without-external-project.js b/tests/baselines/reference/tsserver/dynamicFiles/dynamic-file-without-external-project.js index b168e904d9ca1..d693476d2edf1 100644 --- a/tests/baselines/reference/tsserver/dynamicFiles/dynamic-file-without-external-project.js +++ b/tests/baselines/reference/tsserver/dynamicFiles/dynamic-file-without-external-project.js @@ -143,13 +143,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -195,7 +193,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -219,7 +216,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/dynamicFiles/opening-and-closing-untitled-files-when-projectRootPath-is-different-from-currentDirectory.js b/tests/baselines/reference/tsserver/dynamicFiles/opening-and-closing-untitled-files-when-projectRootPath-is-different-from-currentDirectory.js index 6d4a8eaba92bf..bec773fbdc0c9 100644 --- a/tests/baselines/reference/tsserver/dynamicFiles/opening-and-closing-untitled-files-when-projectRootPath-is-different-from-currentDirectory.js +++ b/tests/baselines/reference/tsserver/dynamicFiles/opening-and-closing-untitled-files-when-projectRootPath-is-different-from-currentDirectory.js @@ -122,13 +122,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/myproject", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -167,7 +165,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -190,7 +187,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -315,10 +311,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -418,10 +410,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Directory location for typing installer Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Directory location for typing installer TI:: [hh:mm:ss:mss] Closing file watchers for project '/dev/null/inferredProject1*' - done. -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/dynamicFiles/opening-untitled-files.js b/tests/baselines/reference/tsserver/dynamicFiles/opening-untitled-files.js index 47d526fe35efd..46ff01125e5c0 100644 --- a/tests/baselines/reference/tsserver/dynamicFiles/opening-untitled-files.js +++ b/tests/baselines/reference/tsserver/dynamicFiles/opening-untitled-files.js @@ -119,13 +119,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/myproject", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -164,7 +162,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -187,7 +184,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -272,10 +268,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -528,12 +520,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/myproject", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -564,7 +554,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -587,7 +576,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/dynamicFiles/untitled-can-convert-positions-to-locations.js b/tests/baselines/reference/tsserver/dynamicFiles/untitled-can-convert-positions-to-locations.js index 2c72f9c82f4b0..9877fa1c1a1fd 100644 --- a/tests/baselines/reference/tsserver/dynamicFiles/untitled-can-convert-positions-to-locations.js +++ b/tests/baselines/reference/tsserver/dynamicFiles/untitled-can-convert-positions-to-locations.js @@ -211,12 +211,6 @@ Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: untitled:^Untitled-1 P Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, currentDirectory: /home/src/projects/project/proj Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /typings/@epic/Core.d.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/proj/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/proj/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/events/largeFileReferenced/when-large-js-file-is-included-by-module-resolution.js b/tests/baselines/reference/tsserver/events/largeFileReferenced/when-large-js-file-is-included-by-module-resolution.js index ae429dbfe79d6..8b61bd9783352 100644 --- a/tests/baselines/reference/tsserver/events/largeFileReferenced/when-large-js-file-is-included-by-module-resolution.js +++ b/tests/baselines/reference/tsserver/events/largeFileReferenced/when-large-js-file-is-included-by-module-resolution.js @@ -41,10 +41,10 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/large 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/large 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/large 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/large 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/large.js 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Skipped loading contents of large file /user/username/projects/myproject/src/large.js for info /user/username/projects/myproject/src/large.js: fileSize: 4194305 Info seq [hh:mm:ss:mss] event: diff --git a/tests/baselines/reference/tsserver/events/projectLanguageServiceState/language-service-disabled-events-are-triggered.js b/tests/baselines/reference/tsserver/events/projectLanguageServiceState/language-service-disabled-events-are-triggered.js index 7efaa6cd4cb6d..f5c5a029663c9 100644 --- a/tests/baselines/reference/tsserver/events/projectLanguageServiceState/language-service-disabled-events-are-triggered.js +++ b/tests/baselines/reference/tsserver/events/projectLanguageServiceState/language-service-disabled-events-are-triggered.js @@ -268,6 +268,10 @@ Info seq [hh:mm:ss:mss] Config: /user/username/projects/project/jsconfig.json : "configFilePath": "/user/username/projects/project/jsconfig.json" } } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/project/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/project/jsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -296,6 +300,12 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- TI:: Creating typing installer +PolledWatches:: +/user/username/projects/node_modules/@types: *new* + {"pollingInterval":500} +/user/username/projects/project/node_modules/@types: *new* + {"pollingInterval":500} + FsWatches:: /home/src/tslibs/TS/Lib/lib.d.ts: {} @@ -493,10 +503,14 @@ Info seq [hh:mm:ss:mss] event: After running Timeout callback:: count: 0 PolledWatches:: +/user/username/projects/node_modules/@types: + {"pollingInterval":500} /user/username/projects/project/bower_components: *new* {"pollingInterval":500} /user/username/projects/project/node_modules: *new* {"pollingInterval":500} +/user/username/projects/project/node_modules/@types: + {"pollingInterval":500} FsWatches:: /home/src/tslibs/TS/Lib/lib.d.ts: diff --git a/tests/baselines/reference/tsserver/events/projectLoading/opening-original-location-project-disableSourceOfProjectReferenceRedirect-when-using-default-event-handler.js b/tests/baselines/reference/tsserver/events/projectLoading/opening-original-location-project-disableSourceOfProjectReferenceRedirect-when-using-default-event-handler.js index 65ba2a2ab2a9e..c5451b266e071 100644 --- a/tests/baselines/reference/tsserver/events/projectLoading/opening-original-location-project-disableSourceOfProjectReferenceRedirect-when-using-default-event-handler.js +++ b/tests/baselines/reference/tsserver/events/projectLoading/opening-original-location-project-disableSourceOfProjectReferenceRedirect-when-using-default-event-handler.js @@ -303,8 +303,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/a/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/a/node_modules/@types 1 undefined Project: /user/username/projects/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/a/node_modules/@types 1 undefined Project: /user/username/projects/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/a/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/a/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/events/projectLoading/opening-original-location-project-disableSourceOfProjectReferenceRedirect-when-using-event-handler.js b/tests/baselines/reference/tsserver/events/projectLoading/opening-original-location-project-disableSourceOfProjectReferenceRedirect-when-using-event-handler.js index c9ccf7d28c7e4..2acc5b05da748 100644 --- a/tests/baselines/reference/tsserver/events/projectLoading/opening-original-location-project-disableSourceOfProjectReferenceRedirect-when-using-event-handler.js +++ b/tests/baselines/reference/tsserver/events/projectLoading/opening-original-location-project-disableSourceOfProjectReferenceRedirect-when-using-event-handler.js @@ -300,8 +300,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/a/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/a/node_modules/@types 1 undefined Project: /user/username/projects/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/a/node_modules/@types 1 undefined Project: /user/username/projects/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/a/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/a/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/events/projectLoading/opening-original-location-project-when-using-default-event-handler.js b/tests/baselines/reference/tsserver/events/projectLoading/opening-original-location-project-when-using-default-event-handler.js index 65d3b184a807a..121ab84f88d5e 100644 --- a/tests/baselines/reference/tsserver/events/projectLoading/opening-original-location-project-when-using-default-event-handler.js +++ b/tests/baselines/reference/tsserver/events/projectLoading/opening-original-location-project-when-using-default-event-handler.js @@ -294,8 +294,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/a/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/a/node_modules/@types 1 undefined Project: /user/username/projects/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/a/node_modules/@types 1 undefined Project: /user/username/projects/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/a/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/a/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/events/projectLoading/opening-original-location-project-when-using-event-handler.js b/tests/baselines/reference/tsserver/events/projectLoading/opening-original-location-project-when-using-event-handler.js index 078b75ad99bbe..050a5a76e09e7 100644 --- a/tests/baselines/reference/tsserver/events/projectLoading/opening-original-location-project-when-using-event-handler.js +++ b/tests/baselines/reference/tsserver/events/projectLoading/opening-original-location-project-when-using-event-handler.js @@ -291,8 +291,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/a/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/a/node_modules/@types 1 undefined Project: /user/username/projects/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/a/node_modules/@types 1 undefined Project: /user/username/projects/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/a/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/a/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/events/projectLoading/project-is-created-by-open-file-when-using-default-event-handler.js b/tests/baselines/reference/tsserver/events/projectLoading/project-is-created-by-open-file-when-using-default-event-handler.js index cec71d5055691..93989266a2941 100644 --- a/tests/baselines/reference/tsserver/events/projectLoading/project-is-created-by-open-file-when-using-default-event-handler.js +++ b/tests/baselines/reference/tsserver/events/projectLoading/project-is-created-by-open-file-when-using-default-event-handler.js @@ -232,8 +232,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/b/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/b/node_modules/@types 1 undefined Project: /user/username/projects/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/b/node_modules/@types 1 undefined Project: /user/username/projects/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/events/projectLoading/project-is-created-by-open-file-when-using-event-handler.js b/tests/baselines/reference/tsserver/events/projectLoading/project-is-created-by-open-file-when-using-event-handler.js index 4b755cecb9328..f8e391a7a6b66 100644 --- a/tests/baselines/reference/tsserver/events/projectLoading/project-is-created-by-open-file-when-using-event-handler.js +++ b/tests/baselines/reference/tsserver/events/projectLoading/project-is-created-by-open-file-when-using-event-handler.js @@ -229,8 +229,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/b/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/b/node_modules/@types 1 undefined Project: /user/username/projects/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/b/node_modules/@types 1 undefined Project: /user/username/projects/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-project-is-at-root-level.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-project-is-at-root-level.js index 2e07b3cf05cbf..50afa138c3dc1 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-project-is-at-root-level.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-project-is-at-root-level.js @@ -68,9 +68,9 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /a/b/project 1 un Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/project 1 undefined Config: /a/b/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /a/b/project/file3.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /a/b/project/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /a/b/project/node_modules 1 undefined Project: /a/b/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/project/node_modules 1 undefined Project: /a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /a/b/project/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/a/b/project/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-project-is-not-at-root-level.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-project-is-not-at-root-level.js index 4d296d5007b0a..5941ea1873bbd 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-project-is-not-at-root-level.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-project-is-not-at-root-level.js @@ -68,7 +68,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/ro Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/file3.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations @@ -79,6 +78,7 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/ro Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-always-return-the-file-itself-if---isolatedModules-is-specified.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-always-return-the-file-itself-if---isolatedModules-is-specified.js index a37a83fa43547..5d087cfa58418 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-always-return-the-file-itself-if---isolatedModules-is-specified.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-always-return-the-file-itself-if---isolatedModules-is-specified.js @@ -63,10 +63,10 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/projects/project/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-be-up-to-date-with-deleted-files.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-be-up-to-date-with-deleted-files.js index c65d1b8c08b27..4881271ad6e15 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-be-up-to-date-with-deleted-files.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-be-up-to-date-with-deleted-files.js @@ -58,10 +58,10 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/projects/project/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-be-up-to-date-with-newly-created-files.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-be-up-to-date-with-newly-created-files.js index 1740679555753..7f821e62c922c 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-be-up-to-date-with-newly-created-files.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-be-up-to-date-with-newly-created-files.js @@ -58,10 +58,10 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/projects/project/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-be-up-to-date-with-the-reference-map-changes.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-be-up-to-date-with-the-reference-map-changes.js index d9e86e8b5610c..66e6d1d5625bb 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-be-up-to-date-with-the-reference-map-changes.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-be-up-to-date-with-the-reference-map-changes.js @@ -58,10 +58,10 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/projects/project/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots @@ -308,6 +308,10 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/username/projec Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile2.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/projects/project/tsconfig.json +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/username/projects/project/tsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/users/username/projects/project/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (6) @@ -367,16 +371,16 @@ After running Timeout callback:: count: 0 PolledWatches:: /users/username/projects/node_modules/@types: {"pollingInterval":500} -/users/username/projects/project/moduleFile1: - {"pollingInterval":500} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/users/username/projects/project/moduleFile1: + {"pollingInterval":500} + FsWatches:: /home/src/tslibs/TS/Lib/lib.d.ts: {} -/users/username/projects/project: - {} /users/username/projects/project/file1Consumer2.ts: *new* {} /users/username/projects/project/globalFile3.ts: *new* @@ -388,6 +392,10 @@ FsWatches:: /users/username/projects/project/tsconfig.json: {} +FsWatches *deleted*:: +/users/username/projects/project: + {} + FsWatchesRecursive:: /users/username/projects/project: {} @@ -655,10 +663,6 @@ ScriptInfos:: Info seq [hh:mm:ss:mss] Running: /users/username/projects/project/tsconfig.json Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/projects/project/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/username/projects/project/tsconfig.json projectStateVersion: 4 projectProgramVersion: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/users/username/projects/project/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (6) @@ -700,38 +704,6 @@ Info seq [hh:mm:ss:mss] event: } After running Timeout callback:: count: 0 -PolledWatches:: -/users/username/projects/node_modules/@types: - {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} - -PolledWatches *deleted*:: -/users/username/projects/project/moduleFile1: - {"pollingInterval":500} - -FsWatches:: -/home/src/tslibs/TS/Lib/lib.d.ts: - {} -/users/username/projects/project/file1Consumer2.ts: - {} -/users/username/projects/project/globalFile3.ts: - {} -/users/username/projects/project/moduleFile1.ts: - {} -/users/username/projects/project/moduleFile2.ts: - {} -/users/username/projects/project/tsconfig.json: - {} - -FsWatches *deleted*:: -/users/username/projects/project: - {} - -FsWatchesRecursive:: -/users/username/projects/project: - {} - Projects:: /users/username/projects/project/tsconfig.json (Configured) *changed* projectStateVersion: 4 diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-contains-only-itself.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-contains-only-itself.js index 8b2d3cdeb4401..d487714644eb3 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-contains-only-itself.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-contains-only-itself.js @@ -58,10 +58,10 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/projects/project/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-detect-changes-in-non-root-files.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-detect-changes-in-non-root-files.js index 89a0c349a838c..51ba23a2059e3 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-detect-changes-in-non-root-files.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-detect-changes-in-non-root-files.js @@ -60,10 +60,10 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/projects/project/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-return-all-files-if-a-global-file-changed-shape.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-return-all-files-if-a-global-file-changed-shape.js index c85425bb2d6c9..f71f07f9a15bf 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-return-all-files-if-a-global-file-changed-shape.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-return-all-files-if-a-global-file-changed-shape.js @@ -58,10 +58,10 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/projects/project/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-return-cascaded-affected-file-list.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-return-cascaded-affected-file-list.js index cc1f3aecfbb76..08843363ed36e 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-return-cascaded-affected-file-list.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-should-return-cascaded-affected-file-list.js @@ -58,10 +58,10 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/projects/project/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-project-is-at-root-level.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-project-is-at-root-level.js index f98b9deb4a622..466ee1e0659c3 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-project-is-at-root-level.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-project-is-at-root-level.js @@ -68,9 +68,9 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /a/b/project 1 un Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/project 1 undefined Config: /a/b/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /a/b/project/file3.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /a/b/project/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /a/b/project/node_modules 1 undefined Project: /a/b/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/project/node_modules 1 undefined Project: /a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /a/b/project/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/a/b/project/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-project-is-not-at-root-level.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-project-is-not-at-root-level.js index ca16a6e2f882b..d5d4cee03b2c0 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-project-is-not-at-root-level.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-project-is-not-at-root-level.js @@ -68,7 +68,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/ro Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/file3.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations @@ -79,6 +78,7 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/ro Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-always-return-the-file-itself-if---isolatedModules-is-specified.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-always-return-the-file-itself-if---isolatedModules-is-specified.js index 3ee141a749957..7438272bd9e9b 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-always-return-the-file-itself-if---isolatedModules-is-specified.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-always-return-the-file-itself-if---isolatedModules-is-specified.js @@ -63,10 +63,10 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/projects/project/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-deleted-files.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-deleted-files.js index 4bf39e8fcd670..456fa5088ef59 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-deleted-files.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-deleted-files.js @@ -58,10 +58,10 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/projects/project/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-newly-created-files.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-newly-created-files.js index 667a9b8265106..bc95f8ac90674 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-newly-created-files.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-newly-created-files.js @@ -58,10 +58,10 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/projects/project/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-the-reference-map-changes.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-the-reference-map-changes.js index 81521f8080c4f..5722e8591b7ea 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-the-reference-map-changes.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-the-reference-map-changes.js @@ -58,10 +58,10 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/projects/project/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots @@ -311,6 +311,10 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/username/projec Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile2.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/projects/project/tsconfig.json +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/username/projects/project/tsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/users/username/projects/project/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (6) @@ -371,16 +375,16 @@ After running Timeout callback:: count: 0 PolledWatches:: /users/username/projects/node_modules/@types: {"pollingInterval":500} -/users/username/projects/project/moduleFile1: - {"pollingInterval":500} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/users/username/projects/project/moduleFile1: + {"pollingInterval":500} + FsWatches:: /home/src/tslibs/TS/Lib/lib.d.ts: {} -/users/username/projects/project: - {} /users/username/projects/project/file1Consumer2.ts: *new* {} /users/username/projects/project/globalFile3.ts: *new* @@ -392,6 +396,10 @@ FsWatches:: /users/username/projects/project/tsconfig.json: {} +FsWatches *deleted*:: +/users/username/projects/project: + {} + FsWatchesRecursive:: /users/username/projects/project: {} @@ -660,10 +668,6 @@ ScriptInfos:: Info seq [hh:mm:ss:mss] Running: /users/username/projects/project/tsconfig.json Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/projects/project/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/username/projects/project/tsconfig.json projectStateVersion: 4 projectProgramVersion: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/users/username/projects/project/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (6) @@ -706,38 +710,6 @@ Info seq [hh:mm:ss:mss] event: } After running Timeout callback:: count: 0 -PolledWatches:: -/users/username/projects/node_modules/@types: - {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} - -PolledWatches *deleted*:: -/users/username/projects/project/moduleFile1: - {"pollingInterval":500} - -FsWatches:: -/home/src/tslibs/TS/Lib/lib.d.ts: - {} -/users/username/projects/project/file1Consumer2.ts: - {} -/users/username/projects/project/globalFile3.ts: - {} -/users/username/projects/project/moduleFile1.ts: - {} -/users/username/projects/project/moduleFile2.ts: - {} -/users/username/projects/project/tsconfig.json: - {} - -FsWatches *deleted*:: -/users/username/projects/project: - {} - -FsWatchesRecursive:: -/users/username/projects/project: - {} - Projects:: /users/username/projects/project/tsconfig.json (Configured) *changed* projectStateVersion: 4 diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-contains-only-itself.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-contains-only-itself.js index 940bc4e722c4c..b6dc843351adb 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-contains-only-itself.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-contains-only-itself.js @@ -58,10 +58,10 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/projects/project/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-detect-changes-in-non-root-files.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-detect-changes-in-non-root-files.js index ad108980fa971..726dfb43ef45d 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-detect-changes-in-non-root-files.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-detect-changes-in-non-root-files.js @@ -60,10 +60,10 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/projects/project/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-return-all-files-if-a-global-file-changed-shape.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-return-all-files-if-a-global-file-changed-shape.js index 571edde4495d4..dadca2d0d5bae 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-return-all-files-if-a-global-file-changed-shape.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-return-all-files-if-a-global-file-changed-shape.js @@ -58,10 +58,10 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/projects/project/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-return-cascaded-affected-file-list.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-return-cascaded-affected-file-list.js index 333c4f7027de3..40b58318b7da9 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-return-cascaded-affected-file-list.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-should-return-cascaded-affected-file-list.js @@ -58,10 +58,10 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/projects/project/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-project-is-at-root-level.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-project-is-at-root-level.js index f1c90cc5f6220..6f320a7c02cea 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-project-is-at-root-level.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-project-is-at-root-level.js @@ -68,9 +68,9 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /a/b/project 1 un Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/project 1 undefined Config: /a/b/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /a/b/project/file3.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /a/b/project/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /a/b/project/node_modules 1 undefined Project: /a/b/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/project/node_modules 1 undefined Project: /a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /a/b/project/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/a/b/project/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-project-is-not-at-root-level.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-project-is-not-at-root-level.js index 01d2264fc83b5..b38c9b2bbd16a 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-project-is-not-at-root-level.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-project-is-not-at-root-level.js @@ -68,7 +68,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/ro Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/file3.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations @@ -79,6 +78,7 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/ro Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-always-return-the-file-itself-if---isolatedModules-is-specified.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-always-return-the-file-itself-if---isolatedModules-is-specified.js index 350e975d95dab..2ed496963f801 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-always-return-the-file-itself-if---isolatedModules-is-specified.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-always-return-the-file-itself-if---isolatedModules-is-specified.js @@ -63,10 +63,10 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/projects/project/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-deleted-files.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-deleted-files.js index 6cbcd8c502267..d6ce6e5d6caba 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-deleted-files.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-deleted-files.js @@ -58,10 +58,10 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/projects/project/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-newly-created-files.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-newly-created-files.js index c6eae4ab81c17..9912a235d5004 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-newly-created-files.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-newly-created-files.js @@ -58,10 +58,10 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/projects/project/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-the-reference-map-changes.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-the-reference-map-changes.js index 9679452640e57..37aab7737b748 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-the-reference-map-changes.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-be-up-to-date-with-the-reference-map-changes.js @@ -58,10 +58,10 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/projects/project/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots @@ -311,6 +311,10 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/username/projec Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile2.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/projects/project/tsconfig.json +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/username/projects/project/tsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/users/username/projects/project/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (6) @@ -372,16 +376,16 @@ After running Timeout callback:: count: 1 PolledWatches:: /users/username/projects/node_modules/@types: {"pollingInterval":500} -/users/username/projects/project/moduleFile1: - {"pollingInterval":500} /users/username/projects/project/node_modules/@types: {"pollingInterval":500} +PolledWatches *deleted*:: +/users/username/projects/project/moduleFile1: + {"pollingInterval":500} + FsWatches:: /home/src/tslibs/TS/Lib/lib.d.ts: {} -/users/username/projects/project: - {} /users/username/projects/project/file1Consumer2.ts: *new* {} /users/username/projects/project/globalFile3.ts: *new* @@ -393,6 +397,10 @@ FsWatches:: /users/username/projects/project/tsconfig.json: {} +FsWatches *deleted*:: +/users/username/projects/project: + {} + FsWatchesRecursive:: /users/username/projects/project: {} @@ -683,10 +691,6 @@ ScriptInfos:: Info seq [hh:mm:ss:mss] Running: /users/username/projects/project/tsconfig.json Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/projects/project/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/username/projects/project/tsconfig.json projectStateVersion: 4 projectProgramVersion: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/users/username/projects/project/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (6) @@ -730,38 +734,6 @@ Info seq [hh:mm:ss:mss] event: } After running Timeout callback:: count: 1 -PolledWatches:: -/users/username/projects/node_modules/@types: - {"pollingInterval":500} -/users/username/projects/project/node_modules/@types: - {"pollingInterval":500} - -PolledWatches *deleted*:: -/users/username/projects/project/moduleFile1: - {"pollingInterval":500} - -FsWatches:: -/home/src/tslibs/TS/Lib/lib.d.ts: - {} -/users/username/projects/project/file1Consumer2.ts: - {} -/users/username/projects/project/globalFile3.ts: - {} -/users/username/projects/project/moduleFile1.ts: - {} -/users/username/projects/project/moduleFile2.ts: - {} -/users/username/projects/project/tsconfig.json: - {} - -FsWatches *deleted*:: -/users/username/projects/project: - {} - -FsWatchesRecursive:: -/users/username/projects/project: - {} - Timeout callback:: count: 1 21: checkOne *new* diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-contains-only-itself.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-contains-only-itself.js index 57a4f05d10ad4..b9c6314c33e0c 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-contains-only-itself.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-contains-only-itself.js @@ -58,10 +58,10 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/projects/project/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-detect-changes-in-non-root-files.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-detect-changes-in-non-root-files.js index 53bd7e3305887..f9b29988c23b4 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-detect-changes-in-non-root-files.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-detect-changes-in-non-root-files.js @@ -60,10 +60,10 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/projects/project/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-return-all-files-if-a-global-file-changed-shape.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-return-all-files-if-a-global-file-changed-shape.js index d24caf1455529..c14efe8eff17e 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-return-all-files-if-a-global-file-changed-shape.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-return-all-files-if-a-global-file-changed-shape.js @@ -58,10 +58,10 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/projects/project/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-return-cascaded-affected-file-list.js b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-return-cascaded-affected-file-list.js index 6b1fa2204cf85..3ab1b13197ecc 100644 --- a/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-return-cascaded-affected-file-list.js +++ b/tests/baselines/reference/tsserver/events/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-should-return-cascaded-affected-file-list.js @@ -58,10 +58,10 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/projects/project/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/events/watchEvents/canUseWatchEvents-on-windows.js b/tests/baselines/reference/tsserver/events/watchEvents/canUseWatchEvents-on-windows.js index 8637859c76ffb..15fce752e0ef9 100644 --- a/tests/baselines/reference/tsserver/events/watchEvents/canUseWatchEvents-on-windows.js +++ b/tests/baselines/reference/tsserver/events/watchEvents/canUseWatchEvents-on-windows.js @@ -117,7 +117,7 @@ Info seq [hh:mm:ss:mss] event: } Custom watchFile:: Added:: {"id":4,"path":"c:/projects/myproject/m.ts"} Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: c:/projects/myproject/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: c:/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: c:/projects/myproject/node_modules 1 undefined Project: c:/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -130,6 +130,8 @@ Info seq [hh:mm:ss:mss] event: } } Custom watchDirectory:: Added:: {"id":5,"path":"c:/projects/myproject/node_modules","recursive":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/projects/myproject/node_modules 1 undefined Project: c:/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: c:/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: c:/home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] event: @@ -143,8 +145,6 @@ Info seq [hh:mm:ss:mss] event: } } Custom watchFile:: Added:: {"id":6,"path":"c:/home/src/tslibs/TS/Lib/lib.d.ts"} -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: c:/projects/myproject/node_modules 1 undefined Project: c:/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/projects/myproject/node_modules 1 undefined Project: c:/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: c:/projects/myproject/node_modules/something/package.json 2000 undefined Project: c:/projects/myproject/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] event: { @@ -1342,19 +1342,19 @@ Info seq [hh:mm:ss:mss] request: "seq": 8, "type": "request" } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with c:/projects/myproject/node_modules/something/index.d.ts :: WatchInfo: c:/projects/myproject/node_modules 1 undefined Project: c:/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Scheduled: c:/projects/myproject/tsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with c:/projects/myproject/node_modules/something/index.d.ts :: WatchInfo: c:/projects/myproject/node_modules 1 undefined Project: c:/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with c:/projects/myproject/node_modules/something/index.d.ts :: WatchInfo: c:/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] Scheduled: c:/projects/myproject/tsconfig.json Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with c:/projects/myproject/node_modules/something/index.d.ts :: WatchInfo: c:/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with c:/projects/myproject/node_modules/something/index.d.ts :: WatchInfo: c:/projects/myproject/node_modules 1 undefined Project: c:/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Scheduled: c:/projects/myproject/tsconfig.jsonFailedLookupInvalidation -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with c:/projects/myproject/node_modules/something/index.d.ts :: WatchInfo: c:/projects/myproject/node_modules 1 undefined Project: c:/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations After request Timeout callback:: count: 3 -13: c:/projects/myproject/tsconfig.json *new* -14: *ensureProjectForOpenFiles* *new* -15: c:/projects/myproject/tsconfig.jsonFailedLookupInvalidation *new* +13: c:/projects/myproject/tsconfig.jsonFailedLookupInvalidation *new* +14: c:/projects/myproject/tsconfig.json *new* +15: *ensureProjectForOpenFiles* *new* Projects:: c:/projects/myproject/tsconfig.json (Configured) *changed* @@ -1398,12 +1398,26 @@ c:/projects/myproject/node_modules/something/index.d.ts *changed* c:/projects/myproject/tsconfig.json Before running Timeout callback:: count: 3 -13: c:/projects/myproject/tsconfig.json -14: *ensureProjectForOpenFiles* -15: c:/projects/myproject/tsconfig.jsonFailedLookupInvalidation +13: c:/projects/myproject/tsconfig.jsonFailedLookupInvalidation +14: c:/projects/myproject/tsconfig.json +15: *ensureProjectForOpenFiles* -Info seq [hh:mm:ss:mss] Running: c:/projects/myproject/tsconfig.json +Info seq [hh:mm:ss:mss] Running: c:/projects/myproject/tsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Scheduled: c:/projects/myproject/tsconfig.json, Cancelled earlier one Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +After running Timeout callback:: count: 2 + +Timeout callback:: count: 2 +14: c:/projects/myproject/tsconfig.json *deleted* +15: *ensureProjectForOpenFiles* *deleted* +16: c:/projects/myproject/tsconfig.json *new* +17: *ensureProjectForOpenFiles* *new* + +Before running Timeout callback:: count: 2 +16: c:/projects/myproject/tsconfig.json +17: *ensureProjectForOpenFiles* + +Info seq [hh:mm:ss:mss] Running: c:/projects/myproject/tsconfig.json Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: c:/projects/myproject/tsconfig.json Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: c:/projects/myproject/tsconfig.json projectStateVersion: 6 projectProgramVersion: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms Info seq [hh:mm:ss:mss] Project 'c:/projects/myproject/tsconfig.json' (Configured) @@ -1418,12 +1432,36 @@ Info seq [hh:mm:ss:mss] Files (8) c:/projects/myproject/e.ts Text-1 "export class a { prop = \"hello\"; foo() { return this.prop; } }" Info seq [hh:mm:ss:mss] ----------------------------------------------- -After running Timeout callback:: count: 1 +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project 'c:/projects/myproject/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (8) -Timeout callback:: count: 1 -14: *ensureProjectForOpenFiles* *deleted* -15: c:/projects/myproject/tsconfig.jsonFailedLookupInvalidation *deleted* -16: *ensureProjectForOpenFiles* *new* +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: c:/projects/myproject/a.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: c:/projects/myproject/tsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project 'c:/projects/myproject/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (8) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: c:/projects/myproject/a.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: c:/projects/myproject/tsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background c:/projects/myproject/a.ts +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "c:/projects/myproject/a.ts" + ] + } + } +After running Timeout callback:: count: 0 Projects:: c:/projects/myproject/tsconfig.json (Configured) *changed* @@ -1465,37 +1503,3 @@ c:/projects/myproject/node_modules/something/index.d.ts *changed* pendingReloadFromDisk: false *changed* containingProjects: 1 c:/projects/myproject/tsconfig.json - -Before running Timeout callback:: count: 1 -16: *ensureProjectForOpenFiles* - -Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* -Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: -Info seq [hh:mm:ss:mss] Project 'c:/projects/myproject/tsconfig.json' (Configured) -Info seq [hh:mm:ss:mss] Files (8) - -Info seq [hh:mm:ss:mss] ----------------------------------------------- -Info seq [hh:mm:ss:mss] Open files: -Info seq [hh:mm:ss:mss] FileName: c:/projects/myproject/a.ts ProjectRootPath: undefined -Info seq [hh:mm:ss:mss] Projects: c:/projects/myproject/tsconfig.json -Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: -Info seq [hh:mm:ss:mss] Project 'c:/projects/myproject/tsconfig.json' (Configured) -Info seq [hh:mm:ss:mss] Files (8) - -Info seq [hh:mm:ss:mss] ----------------------------------------------- -Info seq [hh:mm:ss:mss] Open files: -Info seq [hh:mm:ss:mss] FileName: c:/projects/myproject/a.ts ProjectRootPath: undefined -Info seq [hh:mm:ss:mss] Projects: c:/projects/myproject/tsconfig.json -Info seq [hh:mm:ss:mss] got projects updated in background c:/projects/myproject/a.ts -Info seq [hh:mm:ss:mss] event: - { - "seq": 0, - "type": "event", - "event": "projectsUpdatedInBackground", - "body": { - "openFiles": [ - "c:/projects/myproject/a.ts" - ] - } - } -After running Timeout callback:: count: 0 diff --git a/tests/baselines/reference/tsserver/events/watchEvents/canUseWatchEvents-without-canUseEvents.js b/tests/baselines/reference/tsserver/events/watchEvents/canUseWatchEvents-without-canUseEvents.js index d03e0b6009ff9..85981db845e33 100644 --- a/tests/baselines/reference/tsserver/events/watchEvents/canUseWatchEvents-without-canUseEvents.js +++ b/tests/baselines/reference/tsserver/events/watchEvents/canUseWatchEvents-without-canUseEvents.js @@ -61,11 +61,11 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/m.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/something/package.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/package.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution diff --git a/tests/baselines/reference/tsserver/events/watchEvents/canUseWatchEvents.js b/tests/baselines/reference/tsserver/events/watchEvents/canUseWatchEvents.js index 80fe1693bdf7f..435e2dbb9746c 100644 --- a/tests/baselines/reference/tsserver/events/watchEvents/canUseWatchEvents.js +++ b/tests/baselines/reference/tsserver/events/watchEvents/canUseWatchEvents.js @@ -117,7 +117,7 @@ Info seq [hh:mm:ss:mss] event: } Custom watchFile:: Added:: {"id":4,"path":"/user/username/projects/myproject/m.ts"} Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -130,6 +130,8 @@ Info seq [hh:mm:ss:mss] event: } } Custom watchDirectory:: Added:: {"id":5,"path":"/user/username/projects/myproject/node_modules","recursive":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] event: @@ -143,8 +145,6 @@ Info seq [hh:mm:ss:mss] event: } } Custom watchFile:: Added:: {"id":6,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"} -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/something/package.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] event: { @@ -1342,19 +1342,19 @@ Info seq [hh:mm:ss:mss] request: "seq": 8, "type": "request" } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/something/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/something/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/something/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/myproject/tsconfig.json Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/something/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/something/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/something/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations After request Timeout callback:: count: 3 -13: /user/username/projects/myproject/tsconfig.json *new* -14: *ensureProjectForOpenFiles* *new* -15: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation *new* +13: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation *new* +14: /user/username/projects/myproject/tsconfig.json *new* +15: *ensureProjectForOpenFiles* *new* Projects:: /user/username/projects/myproject/tsconfig.json (Configured) *changed* @@ -1398,12 +1398,26 @@ ScriptInfos:: /user/username/projects/myproject/tsconfig.json Before running Timeout callback:: count: 3 -13: /user/username/projects/myproject/tsconfig.json -14: *ensureProjectForOpenFiles* -15: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation +13: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation +14: /user/username/projects/myproject/tsconfig.json +15: *ensureProjectForOpenFiles* -Info seq [hh:mm:ss:mss] Running: /user/username/projects/myproject/tsconfig.json +Info seq [hh:mm:ss:mss] Running: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +After running Timeout callback:: count: 2 + +Timeout callback:: count: 2 +14: /user/username/projects/myproject/tsconfig.json *deleted* +15: *ensureProjectForOpenFiles* *deleted* +16: /user/username/projects/myproject/tsconfig.json *new* +17: *ensureProjectForOpenFiles* *new* + +Before running Timeout callback:: count: 2 +16: /user/username/projects/myproject/tsconfig.json +17: *ensureProjectForOpenFiles* + +Info seq [hh:mm:ss:mss] Running: /user/username/projects/myproject/tsconfig.json Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json projectStateVersion: 6 projectProgramVersion: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig.json' (Configured) @@ -1418,12 +1432,36 @@ Info seq [hh:mm:ss:mss] Files (8) /user/username/projects/myproject/e.ts Text-1 "export class a { prop = \"hello\"; foo() { return this.prop; } }" Info seq [hh:mm:ss:mss] ----------------------------------------------- -After running Timeout callback:: count: 1 +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (8) -Timeout callback:: count: 1 -14: *ensureProjectForOpenFiles* *deleted* -15: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation *deleted* -16: *ensureProjectForOpenFiles* *new* +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /user/username/projects/myproject/tsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (8) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /user/username/projects/myproject/tsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /user/username/projects/myproject/a.ts +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/user/username/projects/myproject/a.ts" + ] + } + } +After running Timeout callback:: count: 0 Projects:: /user/username/projects/myproject/tsconfig.json (Configured) *changed* @@ -1465,37 +1503,3 @@ ScriptInfos:: pendingReloadFromDisk: false *changed* containingProjects: 1 /user/username/projects/myproject/tsconfig.json - -Before running Timeout callback:: count: 1 -16: *ensureProjectForOpenFiles* - -Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* -Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: -Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info seq [hh:mm:ss:mss] Files (8) - -Info seq [hh:mm:ss:mss] ----------------------------------------------- -Info seq [hh:mm:ss:mss] Open files: -Info seq [hh:mm:ss:mss] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined -Info seq [hh:mm:ss:mss] Projects: /user/username/projects/myproject/tsconfig.json -Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: -Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info seq [hh:mm:ss:mss] Files (8) - -Info seq [hh:mm:ss:mss] ----------------------------------------------- -Info seq [hh:mm:ss:mss] Open files: -Info seq [hh:mm:ss:mss] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined -Info seq [hh:mm:ss:mss] Projects: /user/username/projects/myproject/tsconfig.json -Info seq [hh:mm:ss:mss] got projects updated in background /user/username/projects/myproject/a.ts -Info seq [hh:mm:ss:mss] event: - { - "seq": 0, - "type": "event", - "event": "projectsUpdatedInBackground", - "body": { - "openFiles": [ - "/user/username/projects/myproject/a.ts" - ] - } - } -After running Timeout callback:: count: 0 diff --git a/tests/baselines/reference/tsserver/exportMapCache/does-not-invalidate-the-cache-when-referenced-project-changes-inconsequentially-referencedInProject.js b/tests/baselines/reference/tsserver/exportMapCache/does-not-invalidate-the-cache-when-referenced-project-changes-inconsequentially-referencedInProject.js index 6c249dda370f0..3b2a257599335 100644 --- a/tests/baselines/reference/tsserver/exportMapCache/does-not-invalidate-the-cache-when-referenced-project-changes-inconsequentially-referencedInProject.js +++ b/tests/baselines/reference/tsserver/exportMapCache/does-not-invalidate-the-cache-when-referenced-project-changes-inconsequentially-referencedInProject.js @@ -340,12 +340,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/packages/lib/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/lib/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/lib/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/lib/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/lib/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/lib/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/lib/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/lib/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/lib/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/lib/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/lib/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/packages/lib/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/packages/lib/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/exportMapCache/does-not-invalidate-the-cache-when-referenced-project-changes-inconsequentially.js b/tests/baselines/reference/tsserver/exportMapCache/does-not-invalidate-the-cache-when-referenced-project-changes-inconsequentially.js index b850cec1d29ca..cc0c0314a3984 100644 --- a/tests/baselines/reference/tsserver/exportMapCache/does-not-invalidate-the-cache-when-referenced-project-changes-inconsequentially.js +++ b/tests/baselines/reference/tsserver/exportMapCache/does-not-invalidate-the-cache-when-referenced-project-changes-inconsequentially.js @@ -338,12 +338,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/packages/lib/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/lib/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/lib/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/lib/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/lib/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/lib/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/lib/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/lib/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/lib/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/lib/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/lib/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/packages/lib/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/packages/lib/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/exportMapCache/invalidates-the-cache-when-referenced-project-changes-signatures-referencedInProject.js b/tests/baselines/reference/tsserver/exportMapCache/invalidates-the-cache-when-referenced-project-changes-signatures-referencedInProject.js index f759ceaf1d24b..dcaf5ef016202 100644 --- a/tests/baselines/reference/tsserver/exportMapCache/invalidates-the-cache-when-referenced-project-changes-signatures-referencedInProject.js +++ b/tests/baselines/reference/tsserver/exportMapCache/invalidates-the-cache-when-referenced-project-changes-signatures-referencedInProject.js @@ -340,12 +340,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/packages/lib/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/lib/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/lib/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/lib/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/lib/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/lib/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/lib/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/lib/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/lib/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/lib/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/lib/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/packages/lib/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/packages/lib/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/exportMapCache/invalidates-the-cache-when-referenced-project-changes-signatures.js b/tests/baselines/reference/tsserver/exportMapCache/invalidates-the-cache-when-referenced-project-changes-signatures.js index 0fd0835af2f83..553243dc8af82 100644 --- a/tests/baselines/reference/tsserver/exportMapCache/invalidates-the-cache-when-referenced-project-changes-signatures.js +++ b/tests/baselines/reference/tsserver/exportMapCache/invalidates-the-cache-when-referenced-project-changes-signatures.js @@ -338,12 +338,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/packages/lib/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/lib/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/lib/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/lib/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/lib/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/lib/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/lib/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/lib/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/lib/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/lib/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/lib/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/packages/lib/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/packages/lib/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/extends/configDir-template.js b/tests/baselines/reference/tsserver/extends/configDir-template.js index 0965ee45cdd26..32144c9ec3fe7 100644 --- a/tests/baselines/reference/tsserver/extends/configDir-template.js +++ b/tests/baselines/reference/tsserver/extends/configDir-template.js @@ -210,8 +210,6 @@ Info seq [hh:mm:ss:mss] File '/home/src/projects/myproject/root2/other/sometype Info seq [hh:mm:ss:mss] File '/home/src/projects/myproject/root2/other/sometype2/index.d.ts' exists - use it as a name resolution result. Info seq [hh:mm:ss:mss] Resolving real path for '/home/src/projects/myproject/root2/other/sometype2/index.d.ts', result '/home/src/projects/myproject/root2/other/sometype2/index.d.ts'. Info seq [hh:mm:ss:mss] ======== Module name 'other/sometype2' was successfully resolved to '/home/src/projects/myproject/root2/other/sometype2/index.d.ts'. ======== -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/myproject/root2/other/sometype2/index.d.ts 500 {"excludeDirectories":["/home/src/Vscode/Projects/bin/node_modules"]} WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 {"excludeDirectories":["/home/src/Vscode/Projects/bin/node_modules"]} WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/myproject/other 1 {"excludeDirectories":["/home/src/projects/myproject/node_modules"],"excludeFiles":["/home/src/projects/myproject/main.ts"]} Project: /home/src/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/myproject/other 1 {"excludeDirectories":["/home/src/projects/myproject/node_modules"],"excludeFiles":["/home/src/projects/myproject/main.ts"]} Project: /home/src/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/myproject/src 1 {"excludeDirectories":["/home/src/projects/myproject/node_modules"],"excludeFiles":["/home/src/projects/myproject/main.ts"]} Project: /home/src/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations @@ -223,6 +221,8 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/project Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/configs 1 {"excludeDirectories":["/home/src/projects/myproject/node_modules"],"excludeFiles":["/home/src/projects/myproject/main.ts"]} Project: /home/src/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/myproject/root2 1 {"excludeDirectories":["/home/src/projects/myproject/node_modules"],"excludeFiles":["/home/src/projects/myproject/main.ts"]} Project: /home/src/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/myproject/root2 1 {"excludeDirectories":["/home/src/projects/myproject/node_modules"],"excludeFiles":["/home/src/projects/myproject/main.ts"]} Project: /home/src/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/myproject/root2/other/sometype2/index.d.ts 500 {"excludeDirectories":["/home/src/Vscode/Projects/bin/node_modules"]} WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 {"excludeDirectories":["/home/src/Vscode/Projects/bin/node_modules"]} WatchType: Closed Script info Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/myproject/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/myproject/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (5) diff --git a/tests/baselines/reference/tsserver/externalProjects/can-update-external-project-when-set-of-root-files-was-not-changed.js b/tests/baselines/reference/tsserver/externalProjects/can-update-external-project-when-set-of-root-files-was-not-changed.js index 4fe32bdd92f73..2822a1b118d27 100644 --- a/tests/baselines/reference/tsserver/externalProjects/can-update-external-project-when-set-of-root-files-was-not-changed.js +++ b/tests/baselines/reference/tsserver/externalProjects/can-update-external-project-when-set-of-root-files-was-not-changed.js @@ -52,7 +52,6 @@ Info seq [hh:mm:ss:mss] Creating ExternalProject: project, currentDirectory: Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/f1.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/f2.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: project -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/node_modules 1 undefined Project: project WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/node_modules 1 undefined Project: project WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules 1 undefined Project: project WatchType: Failed Lookup Locations @@ -61,6 +60,7 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/project Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: project WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: project WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: project WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin/node_modules/@types 1 undefined Project: project WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin/node_modules/@types 1 undefined Project: project WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/node_modules/@types 1 undefined Project: project WatchType: Type roots @@ -203,9 +203,9 @@ Info seq [hh:mm:ss:mss] request: "type": "request" } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: project -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/a/m.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects 1 undefined Project: project WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects 1 undefined Project: project WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/a/m.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules 1 undefined Project: project WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules 1 undefined Project: project WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules 1 undefined Project: project WatchType: Failed Lookup Locations diff --git a/tests/baselines/reference/tsserver/externalProjects/correctly-handling-add-or-remove-tsconfig---1-with-lazyConfiguredProjectsFromExternalProject.js b/tests/baselines/reference/tsserver/externalProjects/correctly-handling-add-or-remove-tsconfig---1-with-lazyConfiguredProjectsFromExternalProject.js index 0d5282ddbef2c..31604ef315296 100644 --- a/tests/baselines/reference/tsserver/externalProjects/correctly-handling-add-or-remove-tsconfig---1-with-lazyConfiguredProjectsFromExternalProject.js +++ b/tests/baselines/reference/tsserver/externalProjects/correctly-handling-add-or-remove-tsconfig---1-with-lazyConfiguredProjectsFromExternalProject.js @@ -594,14 +594,6 @@ Info seq [hh:mm:ss:mss] request: } Info seq [hh:mm:ss:mss] Creating ExternalProject: /home/src/projects/project/a/b/proj1, currentDirectory: /home/src/projects/project/a/b Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/a/b/proj1 -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/a/b/proj1 projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/a/b/proj1' (External) Info seq [hh:mm:ss:mss] Files (3) @@ -634,14 +626,6 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b 1 undefined Config: /home/src/projects/project/a/b/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b 1 undefined Config: /home/src/projects/project/a/b/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/tsconfig.json 2000 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/a/b/proj1' (External) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/externalProjects/correctly-handling-add-or-remove-tsconfig---1.js b/tests/baselines/reference/tsserver/externalProjects/correctly-handling-add-or-remove-tsconfig---1.js index 1674fdd6f1668..890026c22d0ab 100644 --- a/tests/baselines/reference/tsserver/externalProjects/correctly-handling-add-or-remove-tsconfig---1.js +++ b/tests/baselines/reference/tsserver/externalProjects/correctly-handling-add-or-remove-tsconfig---1.js @@ -325,14 +325,6 @@ Info seq [hh:mm:ss:mss] Config: /home/src/projects/project/a/b/tsconfig.json : Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b 1 undefined Config: /home/src/projects/project/a/b/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b 1 undefined Config: /home/src/projects/project/a/b/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/a/b/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/a/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/a/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -423,14 +415,6 @@ Info seq [hh:mm:ss:mss] Files (3) Root file specified for compilation Info seq [hh:mm:ss:mss] ----------------------------------------------- -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/a/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -561,14 +545,6 @@ Info seq [hh:mm:ss:mss] request: } Info seq [hh:mm:ss:mss] Creating ExternalProject: /home/src/projects/project/a/b/proj1, currentDirectory: /home/src/projects/project/a/b Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/a/b/proj1 -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/a/b/proj1 projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/a/b/proj1' (External) Info seq [hh:mm:ss:mss] Files (3) @@ -601,14 +577,6 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b 1 undefined Config: /home/src/projects/project/a/b/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b 1 undefined Config: /home/src/projects/project/a/b/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/tsconfig.json 2000 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/a/b/proj1' (External) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/externalProjects/correctly-handling-add-or-remove-tsconfig---2-with-lazyConfiguredProjectsFromExternalProject.js b/tests/baselines/reference/tsserver/externalProjects/correctly-handling-add-or-remove-tsconfig---2-with-lazyConfiguredProjectsFromExternalProject.js index a9162dff678f4..10b9d9294ac54 100644 --- a/tests/baselines/reference/tsserver/externalProjects/correctly-handling-add-or-remove-tsconfig---2-with-lazyConfiguredProjectsFromExternalProject.js +++ b/tests/baselines/reference/tsserver/externalProjects/correctly-handling-add-or-remove-tsconfig---2-with-lazyConfiguredProjectsFromExternalProject.js @@ -420,14 +420,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/a/b/d/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/d/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/d/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/a/b/d/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/a/b/d/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -624,14 +616,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/c/tsconfig.json 2000 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/c/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/c/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/a/b/d/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -731,14 +715,6 @@ Info seq [hh:mm:ss:mss] request: } Info seq [hh:mm:ss:mss] Creating ExternalProject: /home/src/projects/project/a/b/proj1, currentDirectory: /home/src/projects/project/a/b Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/a/b/proj1 -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/a/b/proj1 projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/a/b/proj1' (External) Info seq [hh:mm:ss:mss] Files (2) @@ -770,14 +746,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/d/tsconfig.json 2000 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/d/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/d/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/a/b/proj1' (External) Info seq [hh:mm:ss:mss] Files (2) @@ -893,14 +861,14 @@ Info seq [hh:mm:ss:mss] Files (2) Root file specified for compilation Info seq [hh:mm:ss:mss] ----------------------------------------------- -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/a/b/c/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (0) InitialLoadPending @@ -1060,14 +1028,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/a/b/d/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/d/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/d/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/a/b/d/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/a/b/d/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1214,14 +1174,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/c/tsconfig.json 2000 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/c/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/c/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/a/b/d/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1240,14 +1192,14 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/d/tsconfig.json 2000 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/d/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/d/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Open files: Info seq [hh:mm:ss:mss] response: { diff --git a/tests/baselines/reference/tsserver/externalProjects/correctly-handling-add-or-remove-tsconfig---2.js b/tests/baselines/reference/tsserver/externalProjects/correctly-handling-add-or-remove-tsconfig---2.js index 87063f7974d85..2191c29b6200d 100644 --- a/tests/baselines/reference/tsserver/externalProjects/correctly-handling-add-or-remove-tsconfig---2.js +++ b/tests/baselines/reference/tsserver/externalProjects/correctly-handling-add-or-remove-tsconfig---2.js @@ -229,14 +229,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/a/b/c/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/c/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/c/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/a/b/c/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/a/b/c/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -337,14 +329,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/a/b/d/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/d/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/d/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/a/b/d/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/a/b/d/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -432,14 +416,6 @@ Info seq [hh:mm:ss:mss] Files (2) Root file specified for compilation Info seq [hh:mm:ss:mss] ----------------------------------------------- -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/a/b/c/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -563,14 +539,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/c/tsconfig.json 2000 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/c/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/c/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/a/b/d/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -670,14 +638,6 @@ Info seq [hh:mm:ss:mss] request: } Info seq [hh:mm:ss:mss] Creating ExternalProject: /home/src/projects/project/a/b/proj1, currentDirectory: /home/src/projects/project/a/b Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/a/b/proj1 -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/a/b/proj1 projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/a/b/proj1' (External) Info seq [hh:mm:ss:mss] Files (2) @@ -709,14 +669,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/d/tsconfig.json 2000 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/d/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/d/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/a/b/proj1' (External) Info seq [hh:mm:ss:mss] Files (2) @@ -840,14 +792,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/a/b/c/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/c/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/c/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/a/b/c/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/a/b/c/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -906,14 +850,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/a/b/d/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/d/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/d/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/a/b/d/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/a/b/d/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -960,14 +896,6 @@ Info seq [hh:mm:ss:mss] Files (2) Root file specified for compilation Info seq [hh:mm:ss:mss] ----------------------------------------------- -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/a/b/c/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1082,14 +1010,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/c/tsconfig.json 2000 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/c/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/c/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/a/b/d/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1108,14 +1028,14 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/d/tsconfig.json 2000 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/d/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/d/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/d/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/proj1 WatchType: Type roots Info seq [hh:mm:ss:mss] Open files: Info seq [hh:mm:ss:mss] response: { diff --git a/tests/baselines/reference/tsserver/externalProjects/deleting-config-file-opened-from-the-external-project-works-with-lazyConfiguredProjectsFromExternalProject.js b/tests/baselines/reference/tsserver/externalProjects/deleting-config-file-opened-from-the-external-project-works-with-lazyConfiguredProjectsFromExternalProject.js index 2eed6f0e7d45f..fe1d0f29ab2b6 100644 --- a/tests/baselines/reference/tsserver/externalProjects/deleting-config-file-opened-from-the-external-project-works-with-lazyConfiguredProjectsFromExternalProject.js +++ b/tests/baselines/reference/tsserver/externalProjects/deleting-config-file-opened-from-the-external-project-works-with-lazyConfiguredProjectsFromExternalProject.js @@ -290,13 +290,11 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/someuser/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -339,7 +337,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -360,7 +357,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/externalProjects/deleting-config-file-opened-from-the-external-project-works.js b/tests/baselines/reference/tsserver/externalProjects/deleting-config-file-opened-from-the-external-project-works.js index 07fc4a74acf4f..6904f7e7279b6 100644 --- a/tests/baselines/reference/tsserver/externalProjects/deleting-config-file-opened-from-the-external-project-works.js +++ b/tests/baselines/reference/tsserver/externalProjects/deleting-config-file-opened-from-the-external-project-works.js @@ -319,10 +319,6 @@ Info seq [hh:mm:ss:mss] Creating ExternalProject: /user/someuser/projects/proje Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/someuser/projects/project/js/site.js 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/someuser/projects/project/WebApplication6.csproj Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/someuser/projects/project/node_modules/@types 1 undefined Project: /user/someuser/projects/project/WebApplication6.csproj WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/someuser/projects/project/node_modules/@types 1 undefined Project: /user/someuser/projects/project/WebApplication6.csproj WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/someuser/projects/node_modules/@types 1 undefined Project: /user/someuser/projects/project/WebApplication6.csproj WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/someuser/projects/node_modules/@types 1 undefined Project: /user/someuser/projects/project/WebApplication6.csproj WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/someuser/projects/project/WebApplication6.csproj projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/someuser/projects/project/WebApplication6.csproj' (External) Info seq [hh:mm:ss:mss] Files (2) @@ -413,13 +409,11 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/someuser/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -462,7 +456,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -483,7 +476,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -537,10 +529,6 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/someuser/projects/project 1 undefined Config: /user/someuser/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/someuser/projects/project 1 undefined Config: /user/someuser/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/someuser/projects/project/tsconfig.json 2000 undefined Project: /user/someuser/projects/project/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/someuser/projects/project/node_modules/@types 1 undefined Project: /user/someuser/projects/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/someuser/projects/project/node_modules/@types 1 undefined Project: /user/someuser/projects/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/someuser/projects/node_modules/@types 1 undefined Project: /user/someuser/projects/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/someuser/projects/node_modules/@types 1 undefined Project: /user/someuser/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/user/someuser/projects/project/WebApplication6.csproj' (External) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/externalProjects/external-project-that-included-config-files.js b/tests/baselines/reference/tsserver/externalProjects/external-project-that-included-config-files.js index 7fd3a18f3b1f2..9ce4f7d49b367 100644 --- a/tests/baselines/reference/tsserver/externalProjects/external-project-that-included-config-files.js +++ b/tests/baselines/reference/tsserver/externalProjects/external-project-that-included-config-files.js @@ -194,12 +194,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/a/c/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/c/node_modules/@types 1 undefined Project: /home/src/projects/project/a/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/c/node_modules/@types 1 undefined Project: /home/src/projects/project/a/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/a/c/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/a/c/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -438,12 +432,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/d/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/d/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -582,12 +570,6 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/c/tsconfig.json 2000 undefined Project: /home/src/projects/project/a/c/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/c/node_modules/@types 1 undefined Project: /home/src/projects/project/a/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/c/node_modules/@types 1 undefined Project: /home/src/projects/project/a/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/a/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -908,12 +890,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/a/c/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/c/node_modules/@types 1 undefined Project: /home/src/projects/project/a/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/c/node_modules/@types 1 undefined Project: /home/src/projects/project/a/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/a/c/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/a/c/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -963,12 +939,6 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/tsconfig.json 2000 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -984,12 +954,6 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/d/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/d/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/f1.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/d/f3.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/a/c/tsconfig.json' (Configured) diff --git a/tests/baselines/reference/tsserver/externalProjects/external-project-with-included-config-file-opened-after-configured-project-and-then-closed.js b/tests/baselines/reference/tsserver/externalProjects/external-project-with-included-config-file-opened-after-configured-project-and-then-closed.js index cd5c400aadc89..14533da136edf 100644 --- a/tests/baselines/reference/tsserver/externalProjects/external-project-with-included-config-file-opened-after-configured-project-and-then-closed.js +++ b/tests/baselines/reference/tsserver/externalProjects/external-project-with-included-config-file-opened-after-configured-project-and-then-closed.js @@ -343,12 +343,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -380,12 +374,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/tsconfig.json 2000 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/f1.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/externalProjects/handles-creation-of-external-project-with-jsconfig-before-jsconfig-creation-watcher-is-invoked.js b/tests/baselines/reference/tsserver/externalProjects/handles-creation-of-external-project-with-jsconfig-before-jsconfig-creation-watcher-is-invoked.js index 0d09647ae0c7f..d6b310aa14811 100644 --- a/tests/baselines/reference/tsserver/externalProjects/handles-creation-of-external-project-with-jsconfig-before-jsconfig-creation-watcher-is-invoked.js +++ b/tests/baselines/reference/tsserver/externalProjects/handles-creation-of-external-project-with-jsconfig-before-jsconfig-creation-watcher-is-invoked.js @@ -260,10 +260,6 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -354,13 +350,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/myproject", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -400,7 +394,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -424,7 +417,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -540,10 +532,6 @@ Info seq [hh:mm:ss:mss] Config: /user/username/projects/myproject/jsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/jsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/jsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/jsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/jsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/jsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/jsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -578,12 +566,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/myproject", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -624,7 +610,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -649,7 +634,6 @@ Info seq [hh:mm:ss:mss] event: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/externalProjects/language-service-disabled-state-is-updated-in-external-projects.js b/tests/baselines/reference/tsserver/externalProjects/language-service-disabled-state-is-updated-in-external-projects.js index 429f334a6f95e..f776d827fdc92 100644 --- a/tests/baselines/reference/tsserver/externalProjects/language-service-disabled-state-is-updated-in-external-projects.js +++ b/tests/baselines/reference/tsserver/externalProjects/language-service-disabled-state-is-updated-in-external-projects.js @@ -167,6 +167,12 @@ Info seq [hh:mm:ss:mss] request: "seq": 2, "type": "request" } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/proj.csproj WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/proj.csproj WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/proj.csproj WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/proj.csproj WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/proj.csproj WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/proj.csproj WatchType: Type roots Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -179,12 +185,6 @@ Info seq [hh:mm:ss:mss] event: } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/a/proj.csproj Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/proj.csproj WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/proj.csproj WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/proj.csproj WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/proj.csproj WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/proj.csproj WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/proj.csproj WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/a/proj.csproj projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/a/proj.csproj' (External) Info seq [hh:mm:ss:mss] Files (2) @@ -270,13 +270,11 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -312,7 +310,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -332,7 +329,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/externalProjects/remove-not-listed-external-projects.js b/tests/baselines/reference/tsserver/externalProjects/remove-not-listed-external-projects.js index 4b181574f1aa9..1bef37ec9f82c 100644 --- a/tests/baselines/reference/tsserver/externalProjects/remove-not-listed-external-projects.js +++ b/tests/baselines/reference/tsserver/externalProjects/remove-not-listed-external-projects.js @@ -121,10 +121,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/b/app.ts.csproj Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/app.ts.csproj WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/app.ts.csproj WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/app.ts.csproj WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/app.ts.csproj WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/app.ts.csproj WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/app.ts.csproj WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/b/app.ts.csproj projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/b/app.ts.csproj' (External) Info seq [hh:mm:ss:mss] Files (2) @@ -276,10 +272,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/c/app.ts.csproj Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/c/node_modules/@types 1 undefined Project: /home/src/projects/project/c/app.ts.csproj WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/c/node_modules/@types 1 undefined Project: /home/src/projects/project/c/app.ts.csproj WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/c/app.ts.csproj WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/c/app.ts.csproj WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/c/app.ts.csproj WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/c/app.ts.csproj WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/c/app.ts.csproj projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/c/app.ts.csproj' (External) Info seq [hh:mm:ss:mss] Files (2) @@ -345,10 +337,6 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/app.ts.csproj WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/app.ts.csproj WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/app.ts.csproj WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/app.ts.csproj WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/app.ts.csproj WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/app.ts.csproj WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/a/app.ts.csproj' (External) Info seq [hh:mm:ss:mss] Files (2) @@ -450,10 +438,6 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/app.ts.csproj WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/app.ts.csproj WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/app.ts.csproj WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/app.ts.csproj WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/app.ts.csproj WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/app.ts.csproj WatchType: Type roots Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/c/app.ts.csproj' (External) Info seq [hh:mm:ss:mss] Files (2) @@ -469,10 +453,10 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/c/node_modules/@types 1 undefined Project: /home/src/projects/project/c/app.ts.csproj WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/c/node_modules/@types 1 undefined Project: /home/src/projects/project/c/app.ts.csproj WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/c/app.ts.csproj WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/c/app.ts.csproj WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/c/app.ts.csproj WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/c/app.ts.csproj WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/app.ts.csproj WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/app.ts.csproj WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/app.ts.csproj WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/app.ts.csproj WatchType: Type roots Info seq [hh:mm:ss:mss] Open files: Info seq [hh:mm:ss:mss] response: { diff --git a/tests/baselines/reference/tsserver/findAllReferences/does-not-try-to-open-a-file-in-a-project-that-was-updated-and-no-longer-has-the-file.js b/tests/baselines/reference/tsserver/findAllReferences/does-not-try-to-open-a-file-in-a-project-that-was-updated-and-no-longer-has-the-file.js index cd7211a0415cd..290384a45f282 100644 --- a/tests/baselines/reference/tsserver/findAllReferences/does-not-try-to-open-a-file-in-a-project-that-was-updated-and-no-longer-has-the-file.js +++ b/tests/baselines/reference/tsserver/findAllReferences/does-not-try-to-open-a-file-in-a-project-that-was-updated-and-no-longer-has-the-file.js @@ -349,12 +349,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/packages/core/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/core/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/core/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/core/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/core/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/core/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/core/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/core/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/core/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/core/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/core/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/packages/core/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/packages/core/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/forceConsistentCasingInFileNames/when-file-is-included-from-multiple-places-with-different-casing.js b/tests/baselines/reference/tsserver/forceConsistentCasingInFileNames/when-file-is-included-from-multiple-places-with-different-casing.js index 101e58d6b07f8..708dd70b2eb08 100644 --- a/tests/baselines/reference/tsserver/forceConsistentCasingInFileNames/when-file-is-included-from-multiple-places-with-different-casing.js +++ b/tests/baselines/reference/tsserver/forceConsistentCasingInFileNames/when-file-is-included-from-multiple-places-with-different-casing.js @@ -86,11 +86,11 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/src 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/src 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/fp-ts/lib/package.json 2000 undefined Project: /home/src/projects/project/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/fp-ts/package.json 2000 undefined Project: /home/src/projects/project/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/package.json 2000 undefined Project: /home/src/projects/project/tsconfig.json WatchType: File location affecting resolution diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportCrossPackage_pathsAndSymlink.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportCrossPackage_pathsAndSymlink.js index 3a5fb4da1e300..3677b86f1a35a 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportCrossPackage_pathsAndSymlink.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportCrossPackage_pathsAndSymlink.js @@ -231,20 +231,8 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/packages/app/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/app/node_modules 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/app/node_modules 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/app/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/app/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/packages/app/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/packages/app/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) @@ -361,16 +349,12 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} *new* /home/src/workspaces/project/node_modules: {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} *new* /home/src/workspaces/project/packages/app: *new* {} /home/src/workspaces/project/packages/app/node_modules: *new* @@ -383,10 +367,8 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/project/packages/node_modules: {} - {} *new* /home/src/workspaces/project/packages/node_modules/@types: {} - {} *new* Projects:: /dev/null/autoImportProviderProject1* (AutoImportProvider) *new* @@ -628,17 +610,13 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules: - {} {} {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/packages/app: {} /home/src/workspaces/project/packages/app/node_modules: @@ -651,10 +629,8 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/project/packages/node_modules: {} - {} /home/src/workspaces/project/packages/node_modules/@types: {} - {} Projects:: /dev/null/autoImportProviderProject1* (AutoImportProvider) *changed* diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportCrossProject_baseUrl_toDist.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportCrossProject_baseUrl_toDist.js index d769a252a86fc..5587c0cdffb4e 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportCrossProject_baseUrl_toDist.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportCrossProject_baseUrl_toDist.js @@ -247,16 +247,8 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/common/src/MyModule.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/web/node_modules 1 undefined Project: /home/src/workspaces/project/web/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/web/node_modules 1 undefined Project: /home/src/workspaces/project/web/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/web/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/web/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/web/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/web/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/web/node_modules/@types 1 undefined Project: /home/src/workspaces/project/web/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/web/node_modules/@types 1 undefined Project: /home/src/workspaces/project/web/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/web/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/web/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/web/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/web/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/web/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/web/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (6) @@ -356,10 +348,8 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} *new* /home/src/workspaces/project/common: *new* {} /home/src/workspaces/project/common/node_modules: @@ -370,10 +360,8 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/project/node_modules: {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} *new* /home/src/workspaces/project/web/node_modules: *new* {} /home/src/workspaces/project/web/node_modules/@types: *new* diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportCrossProject_paths_sharedOutDir.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportCrossProject_paths_sharedOutDir.js index f015ef13515bb..689d04c6a2d71 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportCrossProject_paths_sharedOutDir.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportCrossProject_paths_sharedOutDir.js @@ -229,28 +229,20 @@ Info seq [hh:mm:ss:mss] Config: /home/src/workspaces/project/packages/dep/tscon Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep/tsconfig.json 2000 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep 1 undefined Config: /home/src/workspaces/project/packages/dep/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep 1 undefined Config: /home/src/workspaces/project/packages/dep/tsconfig.json WatchType: Wild card directory -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep/index.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages 0 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages 0 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep/index.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep/sub 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep/sub 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep/sub/folder/index.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/app/node_modules 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/app/node_modules 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages 0 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages 0 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/app/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/app/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/packages/app/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/packages/app/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (7) @@ -370,26 +362,22 @@ watchedDirectories:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} *new* /home/src/workspaces/project/node_modules: {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} *new* -/home/src/workspaces/project/packages/app: *new* +/home/src/workspaces/project/packages: *new* {} -/home/src/workspaces/project/packages/app/node_modules: *new* +/home/src/workspaces/project/packages/app: *new* {} /home/src/workspaces/project/packages/app/node_modules/@types: *new* {} /home/src/workspaces/project/packages/dep: *new* {} {} -/home/src/workspaces/project/packages/node_modules: *new* +/home/src/workspaces/project/packages/dep/sub: *new* {} /home/src/workspaces/project/packages/node_modules/@types: *new* {} diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportCrossProject_paths_stripSrc.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportCrossProject_paths_stripSrc.js index c3a4f1761d644..0cbca2e1bae3a 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportCrossProject_paths_stripSrc.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportCrossProject_paths_stripSrc.js @@ -127,8 +127,8 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/p Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep 1 undefined Config: /home/src/workspaces/project/packages/dep/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep 1 undefined Config: /home/src/workspaces/project/packages/dep/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep/src/main.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep/src 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep/src 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep/src/sub/folder/index.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/app/node_modules 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations @@ -237,22 +237,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/p Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/app/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/app/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/app/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/app/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -333,33 +317,26 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: *new* {} - {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project/node_modules: *new* {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} /home/src/workspaces/project/packages/app: *new* {} /home/src/workspaces/project/packages/app/node_modules: *new* {} - {} /home/src/workspaces/project/packages/app/node_modules/@types: *new* {} - {} /home/src/workspaces/project/packages/dep: *new* {} +/home/src/workspaces/project/packages/dep/src: *new* {} /home/src/workspaces/project/packages/node_modules: *new* {} - {} /home/src/workspaces/project/packages/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -484,33 +461,26 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/packages/app: {} /home/src/workspaces/project/packages/app/node_modules: {} - {} /home/src/workspaces/project/packages/app/node_modules/@types: {} - {} /home/src/workspaces/project/packages/dep: {} +/home/src/workspaces/project/packages/dep/src: {} /home/src/workspaces/project/packages/node_modules: {} - {} /home/src/workspaces/project/packages/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) @@ -941,33 +911,26 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/packages/app: {} /home/src/workspaces/project/packages/app/node_modules: {} - {} /home/src/workspaces/project/packages/app/node_modules/@types: {} - {} /home/src/workspaces/project/packages/dep: {} +/home/src/workspaces/project/packages/dep/src: {} /home/src/workspaces/project/packages/node_modules: {} - {} /home/src/workspaces/project/packages/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportCrossProject_paths_toDist.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportCrossProject_paths_toDist.js index 4e4de259059a2..be2dc4503392f 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportCrossProject_paths_toDist.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportCrossProject_paths_toDist.js @@ -127,8 +127,8 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/p Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep 1 undefined Config: /home/src/workspaces/project/packages/dep/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep 1 undefined Config: /home/src/workspaces/project/packages/dep/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep/src/main.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep/src 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep/src 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep/src/sub/folder/index.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/app/node_modules 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations @@ -237,22 +237,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/p Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/app/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/app/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/app/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/app/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -333,33 +317,26 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: *new* {} - {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project/node_modules: *new* {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} /home/src/workspaces/project/packages/app: *new* {} /home/src/workspaces/project/packages/app/node_modules: *new* {} - {} /home/src/workspaces/project/packages/app/node_modules/@types: *new* {} - {} /home/src/workspaces/project/packages/dep: *new* {} +/home/src/workspaces/project/packages/dep/src: *new* {} /home/src/workspaces/project/packages/node_modules: *new* {} - {} /home/src/workspaces/project/packages/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -484,33 +461,26 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/packages/app: {} /home/src/workspaces/project/packages/app/node_modules: {} - {} /home/src/workspaces/project/packages/app/node_modules/@types: {} - {} /home/src/workspaces/project/packages/dep: {} +/home/src/workspaces/project/packages/dep/src: {} /home/src/workspaces/project/packages/node_modules: {} - {} /home/src/workspaces/project/packages/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) @@ -941,33 +911,26 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/packages/app: {} /home/src/workspaces/project/packages/app/node_modules: {} - {} /home/src/workspaces/project/packages/app/node_modules/@types: {} - {} /home/src/workspaces/project/packages/dep: {} +/home/src/workspaces/project/packages/dep/src: {} /home/src/workspaces/project/packages/node_modules: {} - {} /home/src/workspaces/project/packages/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportCrossProject_paths_toDist2.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportCrossProject_paths_toDist2.js index 82b3d6467c25d..78798d6b9d8d6 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportCrossProject_paths_toDist2.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportCrossProject_paths_toDist2.js @@ -249,21 +249,13 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspa Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/web/src 1 undefined Config: /home/src/workspaces/project/web/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/web/src/MyApp.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/web/tsconfig.json +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/common 1 undefined Project: /home/src/workspaces/project/web/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/common 1 undefined Project: /home/src/workspaces/project/web/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/common/src/MyModule.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/web/node_modules 1 undefined Project: /home/src/workspaces/project/web/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/web/node_modules 1 undefined Project: /home/src/workspaces/project/web/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/web/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/web/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/web/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/web/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/common 1 undefined Project: /home/src/workspaces/project/web/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/common 1 undefined Project: /home/src/workspaces/project/web/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/web/node_modules/@types 1 undefined Project: /home/src/workspaces/project/web/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/web/node_modules/@types 1 undefined Project: /home/src/workspaces/project/web/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/web/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/web/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/web/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/web/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/web/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/web/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (6) @@ -363,10 +355,8 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} *new* /home/src/workspaces/project/common: *new* {} /home/src/workspaces/project/common/node_modules: @@ -377,10 +367,8 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/project/node_modules: {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} *new* /home/src/workspaces/project/web/node_modules: *new* {} /home/src/workspaces/project/web/node_modules/@types: *new* diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportCrossProject_paths_toSrc.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportCrossProject_paths_toSrc.js index 9980fa1ccd535..bfdd5ac0b09e5 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportCrossProject_paths_toSrc.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportCrossProject_paths_toSrc.js @@ -127,8 +127,8 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/p Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep 1 undefined Config: /home/src/workspaces/project/packages/dep/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep 1 undefined Config: /home/src/workspaces/project/packages/dep/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep/src/main.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep/src 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep/src 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep/src/sub/folder/index.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/app/node_modules 1 undefined Project: /home/src/workspaces/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations @@ -237,22 +237,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/p Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/app/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/app/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/app/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/app/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -333,33 +317,26 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: *new* {} - {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project/node_modules: *new* {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} /home/src/workspaces/project/packages/app: *new* {} /home/src/workspaces/project/packages/app/node_modules: *new* {} - {} /home/src/workspaces/project/packages/app/node_modules/@types: *new* {} - {} /home/src/workspaces/project/packages/dep: *new* {} +/home/src/workspaces/project/packages/dep/src: *new* {} /home/src/workspaces/project/packages/node_modules: *new* {} - {} /home/src/workspaces/project/packages/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -484,33 +461,26 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/packages/app: {} /home/src/workspaces/project/packages/app/node_modules: {} - {} /home/src/workspaces/project/packages/app/node_modules/@types: {} - {} /home/src/workspaces/project/packages/dep: {} +/home/src/workspaces/project/packages/dep/src: {} /home/src/workspaces/project/packages/node_modules: {} - {} /home/src/workspaces/project/packages/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) @@ -941,33 +911,26 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/packages/app: {} /home/src/workspaces/project/packages/app/node_modules: {} - {} /home/src/workspaces/project/packages/app/node_modules/@types: {} - {} /home/src/workspaces/project/packages/dep: {} +/home/src/workspaces/project/packages/dep/src: {} /home/src/workspaces/project/packages/node_modules: {} - {} /home/src/workspaces/project/packages/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportCrossProject_symlinks_stripSrc.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportCrossProject_symlinks_stripSrc.js index b2f68bd4c0f4c..e0d64c1d26f36 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportCrossProject_symlinks_stripSrc.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportCrossProject_symlinks_stripSrc.js @@ -207,22 +207,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/p Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/app/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/app/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/app/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/app/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -295,32 +279,24 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: *new* {} - {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project/node_modules: *new* {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} /home/src/workspaces/project/packages/app: *new* {} /home/src/workspaces/project/packages/app/node_modules: *new* {} - {} /home/src/workspaces/project/packages/app/node_modules/@types: *new* {} - {} /home/src/workspaces/project/packages/dep: *new* {} /home/src/workspaces/project/packages/node_modules: *new* {} - {} /home/src/workspaces/project/packages/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -421,32 +397,24 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/packages/app: {} /home/src/workspaces/project/packages/app/node_modules: {} - {} /home/src/workspaces/project/packages/app/node_modules/@types: {} - {} /home/src/workspaces/project/packages/dep: {} /home/src/workspaces/project/packages/node_modules: {} - {} /home/src/workspaces/project/packages/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) @@ -594,8 +562,8 @@ Info seq [hh:mm:ss:mss] AutoImportProviderProject: found 1 root files in 1 depe Info seq [hh:mm:ss:mss] Creating AutoImportProviderProject: /dev/null/autoImportProviderProject1*, currentDirectory: /home/src/workspaces/project/packages/app Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/autoImportProviderProject1* Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep/src/index.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep/src 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep/src 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep/src/sub/folder/index.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/autoImportProviderProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider) @@ -681,34 +649,27 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/packages/app: {} /home/src/workspaces/project/packages/app/node_modules: - {} {} {} *new* /home/src/workspaces/project/packages/app/node_modules/@types: {} - {} /home/src/workspaces/project/packages/dep: {} - {} *new* -/home/src/workspaces/project/packages/node_modules: +/home/src/workspaces/project/packages/dep/src: *new* {} +/home/src/workspaces/project/packages/node_modules: {} /home/src/workspaces/project/packages/node_modules/@types: {} - {} Projects:: /dev/null/autoImportProviderProject1* (AutoImportProvider) *new* diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportCrossProject_symlinks_toDist.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportCrossProject_symlinks_toDist.js index f789a357bf3ff..4a3bfdd0e67a4 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportCrossProject_symlinks_toDist.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportCrossProject_symlinks_toDist.js @@ -207,22 +207,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/p Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/app/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/app/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/app/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/app/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -295,32 +279,24 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: *new* {} - {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project/node_modules: *new* {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} /home/src/workspaces/project/packages/app: *new* {} /home/src/workspaces/project/packages/app/node_modules: *new* {} - {} /home/src/workspaces/project/packages/app/node_modules/@types: *new* {} - {} /home/src/workspaces/project/packages/dep: *new* {} /home/src/workspaces/project/packages/node_modules: *new* {} - {} /home/src/workspaces/project/packages/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -421,32 +397,24 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/packages/app: {} /home/src/workspaces/project/packages/app/node_modules: {} - {} /home/src/workspaces/project/packages/app/node_modules/@types: {} - {} /home/src/workspaces/project/packages/dep: {} /home/src/workspaces/project/packages/node_modules: {} - {} /home/src/workspaces/project/packages/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) @@ -594,8 +562,8 @@ Info seq [hh:mm:ss:mss] AutoImportProviderProject: found 1 root files in 1 depe Info seq [hh:mm:ss:mss] Creating AutoImportProviderProject: /dev/null/autoImportProviderProject1*, currentDirectory: /home/src/workspaces/project/packages/app Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/autoImportProviderProject1* Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep/src/index.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep/src 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep/src 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep/src/sub/folder/index.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/autoImportProviderProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider) @@ -681,34 +649,27 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/packages/app: {} /home/src/workspaces/project/packages/app/node_modules: - {} {} {} *new* /home/src/workspaces/project/packages/app/node_modules/@types: {} - {} /home/src/workspaces/project/packages/dep: {} - {} *new* -/home/src/workspaces/project/packages/node_modules: +/home/src/workspaces/project/packages/dep/src: *new* {} +/home/src/workspaces/project/packages/node_modules: {} /home/src/workspaces/project/packages/node_modules/@types: {} - {} Projects:: /dev/null/autoImportProviderProject1* (AutoImportProvider) *new* diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportCrossProject_symlinks_toSrc.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportCrossProject_symlinks_toSrc.js index 1136134965c19..6f1c26e6ee8de 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportCrossProject_symlinks_toSrc.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportCrossProject_symlinks_toSrc.js @@ -198,22 +198,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/p Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/app/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/app/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/app/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/app/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -286,32 +270,24 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: *new* {} - {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project/node_modules: *new* {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} /home/src/workspaces/project/packages/app: *new* {} /home/src/workspaces/project/packages/app/node_modules: *new* {} - {} /home/src/workspaces/project/packages/app/node_modules/@types: *new* {} - {} /home/src/workspaces/project/packages/dep: *new* {} /home/src/workspaces/project/packages/node_modules: *new* {} - {} /home/src/workspaces/project/packages/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -412,32 +388,24 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/packages/app: {} /home/src/workspaces/project/packages/app/node_modules: {} - {} /home/src/workspaces/project/packages/app/node_modules/@types: {} - {} /home/src/workspaces/project/packages/dep: {} /home/src/workspaces/project/packages/node_modules: {} - {} /home/src/workspaces/project/packages/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) @@ -585,8 +553,8 @@ Info seq [hh:mm:ss:mss] AutoImportProviderProject: found 1 root files in 1 depe Info seq [hh:mm:ss:mss] Creating AutoImportProviderProject: /dev/null/autoImportProviderProject1*, currentDirectory: /home/src/workspaces/project/packages/app Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/autoImportProviderProject1* Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep/src/index.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep/src 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep/src 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/dep/src/sub/folder/index.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/autoImportProviderProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider) @@ -672,34 +640,27 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/packages/app: {} /home/src/workspaces/project/packages/app/node_modules: - {} {} {} *new* /home/src/workspaces/project/packages/app/node_modules/@types: {} - {} /home/src/workspaces/project/packages/dep: {} - {} *new* -/home/src/workspaces/project/packages/node_modules: +/home/src/workspaces/project/packages/dep/src: *new* {} +/home/src/workspaces/project/packages/node_modules: {} /home/src/workspaces/project/packages/node_modules/@types: {} - {} Projects:: /dev/null/autoImportProviderProject1* (AutoImportProvider) *new* diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportFileExcludePatterns1.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportFileExcludePatterns1.js index 909ad43ea8bad..48bc13b301930 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportFileExcludePatterns1.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportFileExcludePatterns1.js @@ -167,14 +167,6 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -199,8 +191,6 @@ Info seq [hh:mm:ss:mss] AutoImportProviderProject: found 1 root files in 1 depe Info seq [hh:mm:ss:mss] Creating AutoImportProviderProject: /dev/null/autoImportProviderProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/aws-sdk/index.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/autoImportProviderProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/aws-sdk/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/aws-sdk/clients/s3.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/aws-sdk/clients/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution @@ -280,17 +270,12 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} *new* /home/src/workspaces/project/node_modules: {} - {} *new* - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} *new* /home/src/workspaces/project/node_modules/aws-sdk/node_modules: {} /home/src/workspaces/project/node_modules/aws-sdk/node_modules/@types: diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportFileExcludePatterns2.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportFileExcludePatterns2.js index f9cfac0f64f6f..c6638aac8fb53 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportFileExcludePatterns2.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportFileExcludePatterns2.js @@ -167,14 +167,6 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -199,8 +191,6 @@ Info seq [hh:mm:ss:mss] AutoImportProviderProject: found 1 root files in 1 depe Info seq [hh:mm:ss:mss] Creating AutoImportProviderProject: /dev/null/autoImportProviderProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/aws-sdk/index.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/autoImportProviderProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/aws-sdk/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/aws-sdk/clients/s3.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/aws-sdk/clients/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution @@ -280,17 +270,12 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} *new* /home/src/workspaces/project/node_modules: {} - {} *new* - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} *new* /home/src/workspaces/project/node_modules/aws-sdk/node_modules: {} /home/src/workspaces/project/node_modules/aws-sdk/node_modules/@types: diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportFileExcludePatterns_networkPaths.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportFileExcludePatterns_networkPaths.js index afa1f084006e2..c55ca3165dd9a 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportFileExcludePatterns_networkPaths.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportFileExcludePatterns_networkPaths.js @@ -167,14 +167,6 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: //tsclient/home/src/solution/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: //tsclient/home/src/solution/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: //tsclient/home/src/solution/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: //tsclient/home/src/solution/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: //tsclient/home/src/solution/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: //tsclient/home/src/solution/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: //tsclient/home/src/solution/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: //tsclient/home/src/solution/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: //tsclient/home/src/solution/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: //tsclient/home/src/solution/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -199,8 +191,6 @@ Info seq [hh:mm:ss:mss] AutoImportProviderProject: found 1 root files in 1 depe Info seq [hh:mm:ss:mss] Creating AutoImportProviderProject: /dev/null/autoImportProviderProject1*, currentDirectory: //tsclient/home/src/solution/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: //tsclient/home/src/solution/project/node_modules/aws-sdk/index.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/autoImportProviderProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: //tsclient/home/src/solution/project/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: //tsclient/home/src/solution/project/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: //tsclient/home/src/solution/project/node_modules/aws-sdk/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: //tsclient/home/src/solution/project/node_modules/aws-sdk/clients/s3.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: //tsclient/home/src/solution/project/node_modules/aws-sdk/clients/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution @@ -280,17 +270,12 @@ watchedFiles:: watchedDirectoriesRecursive:: //tsclient/home/src/solution/node_modules: {} - {} *new* //tsclient/home/src/solution/node_modules/@types: {} - {} *new* //tsclient/home/src/solution/project/node_modules: {} - {} *new* - {} *new* //tsclient/home/src/solution/project/node_modules/@types: {} - {} *new* //tsclient/home/src/solution/project/node_modules/aws-sdk/node_modules: {} //tsclient/home/src/solution/project/node_modules/aws-sdk/node_modules/@types: diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportFileExcludePatterns_symlinks.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportFileExcludePatterns_symlinks.js index a7b2186baf309..d15cf9e8c82f8 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportFileExcludePatterns_symlinks.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportFileExcludePatterns_symlinks.js @@ -189,14 +189,6 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -299,13 +291,10 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} *new* /home/src/workspaces/project/node_modules: {} - {} *new* /home/src/workspaces/project/node_modules/.store/@remix-run-server-runtime-virtual-c72daf0d/node_modules/@types: {} /home/src/workspaces/project/node_modules/.store/@remix-run-server-runtime-virtual-c72daf0d/package/node_modules: @@ -316,7 +305,6 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/project/node_modules/@types: {} - {} *new* /home/src/workspaces/project/node_modules/node_modules/@types: {} diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportFileExcludePatterns_symlinks2.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportFileExcludePatterns_symlinks2.js index c3957a2c4debb..f806599e0d8df 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportFileExcludePatterns_symlinks2.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportFileExcludePatterns_symlinks2.js @@ -195,14 +195,6 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: c:/workspaces/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: c:/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: c:/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: c:/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: c:/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: c:/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -314,13 +306,10 @@ c:/workspaces/project/tsconfig.json: *new* watchedDirectoriesRecursive:: c:/workspaces/node_modules: {} - {} *new* c:/workspaces/node_modules/@types: {} - {} *new* c:/workspaces/project/node_modules: {} - {} *new* c:/workspaces/project/node_modules/.store/aws-sdk-virtual-adfe098/node_modules/@types: {} c:/workspaces/project/node_modules/.store/aws-sdk-virtual-adfe098/package/node_modules: @@ -331,7 +320,6 @@ c:/workspaces/project/node_modules/.store/node_modules/@types: {} c:/workspaces/project/node_modules/@types: {} - {} *new* c:/workspaces/project/node_modules/node_modules/@types: {} diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportFileExcludePatterns_windowsPaths.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportFileExcludePatterns_windowsPaths.js index a22199f97b1ce..0b91d8f352605 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportFileExcludePatterns_windowsPaths.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportFileExcludePatterns_windowsPaths.js @@ -167,14 +167,6 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: c:/workspaces/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: c:/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: c:/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: c:/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: c:/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: c:/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -199,8 +191,6 @@ Info seq [hh:mm:ss:mss] AutoImportProviderProject: found 1 root files in 1 depe Info seq [hh:mm:ss:mss] Creating AutoImportProviderProject: /dev/null/autoImportProviderProject1*, currentDirectory: c:/workspaces/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: c:/workspaces/project/node_modules/aws-sdk/index.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/autoImportProviderProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: c:/workspaces/project/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/workspaces/project/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: c:/workspaces/project/node_modules/aws-sdk/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: c:/workspaces/project/node_modules/aws-sdk/clients/s3.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: c:/workspaces/project/node_modules/aws-sdk/clients/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution @@ -280,17 +270,12 @@ c:/workspaces/project/tsconfig.json: *new* watchedDirectoriesRecursive:: c:/workspaces/node_modules: {} - {} *new* c:/workspaces/node_modules/@types: {} - {} *new* c:/workspaces/project/node_modules: {} - {} *new* - {} *new* c:/workspaces/project/node_modules/@types: {} - {} *new* c:/workspaces/project/node_modules/aws-sdk/node_modules: {} c:/workspaces/project/node_modules/aws-sdk/node_modules/@types: diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportNodeModuleSymlinkRenamed.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportNodeModuleSymlinkRenamed.js index 587c36b3e0fc8..d0d79f5c22000 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportNodeModuleSymlinkRenamed.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportNodeModuleSymlinkRenamed.js @@ -242,22 +242,12 @@ Info seq [hh:mm:ss:mss] Config: /home/src/workspaces/solution/packages/utils/ts Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/solution/packages/utils/tsconfig.json 2000 undefined Project: /home/src/workspaces/solution/packages/web/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/solution/packages/utils/src 1 undefined Config: /home/src/workspaces/solution/packages/utils/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/solution/packages/utils/src 1 undefined Config: /home/src/workspaces/solution/packages/utils/tsconfig.json WatchType: Wild card directory -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/solution/packages/web/node_modules 1 undefined Project: /home/src/workspaces/solution/packages/web/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/solution/packages/web/node_modules 1 undefined Project: /home/src/workspaces/solution/packages/web/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/solution/packages/node_modules 1 undefined Project: /home/src/workspaces/solution/packages/web/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/solution/packages/node_modules 1 undefined Project: /home/src/workspaces/solution/packages/web/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/solution/node_modules 1 undefined Project: /home/src/workspaces/solution/packages/web/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/solution/node_modules 1 undefined Project: /home/src/workspaces/solution/packages/web/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/solution/packages/web/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/solution/packages/web/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/solution/packages 1 undefined Project: /home/src/workspaces/solution/packages/web/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/solution/packages 1 undefined Project: /home/src/workspaces/solution/packages/web/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/solution/packages/web/node_modules/@types 1 undefined Project: /home/src/workspaces/solution/packages/web/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/solution/packages/web/node_modules/@types 1 undefined Project: /home/src/workspaces/solution/packages/web/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/solution/packages/node_modules/@types 1 undefined Project: /home/src/workspaces/solution/packages/web/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/solution/packages/node_modules/@types 1 undefined Project: /home/src/workspaces/solution/packages/web/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/solution/node_modules/@types 1 undefined Project: /home/src/workspaces/solution/packages/web/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/solution/node_modules/@types 1 undefined Project: /home/src/workspaces/solution/packages/web/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/solution/packages/web/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/solution/packages/web/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/solution/packages/web/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/solution/packages/web/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) @@ -368,24 +358,18 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} *new* /home/src/workspaces/solution/node_modules: {} - {} *new* /home/src/workspaces/solution/node_modules/@types: {} - {} *new* -/home/src/workspaces/solution/packages/node_modules: *new* +/home/src/workspaces/solution/packages: *new* {} /home/src/workspaces/solution/packages/node_modules/@types: *new* {} /home/src/workspaces/solution/packages/utils/src: *new* {} -/home/src/workspaces/solution/packages/web/node_modules: *new* - {} /home/src/workspaces/solution/packages/web/node_modules/@types: *new* {} /home/src/workspaces/solution/packages/web/src: *new* @@ -625,25 +609,19 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/solution/node_modules: - {} {} {} *new* /home/src/workspaces/solution/node_modules/@types: {} - {} -/home/src/workspaces/solution/packages/node_modules: +/home/src/workspaces/solution/packages: {} /home/src/workspaces/solution/packages/node_modules/@types: {} /home/src/workspaces/solution/packages/utils/src: {} -/home/src/workspaces/solution/packages/web/node_modules: - {} /home/src/workspaces/solution/packages/web/node_modules/@types: {} /home/src/workspaces/solution/packages/web/src: diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportPackageJsonFilterExistingImport1.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportPackageJsonFilterExistingImport1.js index c9f286b105a5b..9ebe4c685a1c9 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportPackageJsonFilterExistingImport1.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportPackageJsonFilterExistingImport1.js @@ -192,18 +192,6 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/react/package.json 2000 undefined Project: /dev/null/inferredProject2* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/package.json 2000 undefined Project: /dev/null/inferredProject2* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/package.json 2000 undefined Project: /dev/null/inferredProject2* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined Project: /dev/null/inferredProject2* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (5) @@ -254,28 +242,14 @@ Info seq [hh:mm:ss:mss] Files (4) Entry point for implicit type library 'react' Info seq [hh:mm:ss:mss] ----------------------------------------------- -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types/react/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types/react/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types/react 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types/react 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types/react/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types/react/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types/react/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types/react 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types/react 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (5) @@ -307,54 +281,36 @@ watchedFiles:: /home/src/workspaces/project/jsconfig.json: *new* {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/package.json: - {"pollingInterval":2000} *new* + {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/react/package.json: - {"pollingInterval":2000} *new* + {"pollingInterval":2000} /home/src/workspaces/project/node_modules/package.json: - {"pollingInterval":2000} *new* + {"pollingInterval":2000} /home/src/workspaces/project/package.json: + {"pollingInterval":2000} {"pollingInterval":250} *new* - {"pollingInterval":2000} *new* /home/src/workspaces/project/tsconfig.json: *new* {"pollingInterval":2000} watchedFiles *deleted*:: /home/src/workspaces/project/node_modules/@types/jsconfig.json: {"pollingInterval":2000} -/home/src/workspaces/project/node_modules/@types/package.json: - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/react/jsconfig.json: {"pollingInterval":2000} -/home/src/workspaces/project/node_modules/@types/react/package.json: - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/react/tsconfig.json: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/tsconfig.json: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/jsconfig.json: {"pollingInterval":2000} -/home/src/workspaces/project/node_modules/package.json: - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/tsconfig.json: {"pollingInterval":2000} -/home/src/workspaces/project/package.json: - {"pollingInterval":2000} watchedDirectories *deleted*:: /home/src/workspaces/project/node_modules/@types/react: {} watchedDirectoriesRecursive:: -/home/src/workspaces/node_modules: - {} *new* -/home/src/workspaces/node_modules/@types: - {} *new* -/home/src/workspaces/project/node_modules: - {} *new* -/home/src/workspaces/project/node_modules/@types: - {} *new* - -watchedDirectoriesRecursive *deleted*:: /home/src/workspaces/node_modules: {} /home/src/workspaces/node_modules/@types: @@ -363,10 +319,12 @@ watchedDirectoriesRecursive *deleted*:: {} /home/src/workspaces/project/node_modules/@types: {} -/home/src/workspaces/project/node_modules/@types/node_modules/@types: - {} /home/src/workspaces/project/node_modules/@types/react/node_modules: {} + +watchedDirectoriesRecursive *deleted*:: +/home/src/workspaces/project/node_modules/@types/node_modules/@types: + {} /home/src/workspaces/project/node_modules/@types/react/node_modules/@types: {} /home/src/workspaces/project/node_modules/node_modules/@types: diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportPackageJsonFilterExistingImport2.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportPackageJsonFilterExistingImport2.js index 3f53a4475bd00..16e61a42d366c 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportPackageJsonFilterExistingImport2.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportPackageJsonFilterExistingImport2.js @@ -191,18 +191,6 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/react/package.json 2000 undefined Project: /dev/null/inferredProject2* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/package.json 2000 undefined Project: /dev/null/inferredProject2* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/package.json 2000 undefined Project: /dev/null/inferredProject2* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined Project: /dev/null/inferredProject2* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (5) @@ -252,28 +240,14 @@ Info seq [hh:mm:ss:mss] Files (4) Entry point for implicit type library 'react' Info seq [hh:mm:ss:mss] ----------------------------------------------- -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types/react/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types/react/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types/react 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types/react 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types/react/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types/react/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types/react/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types/react 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types/react 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (5) @@ -305,54 +279,36 @@ watchedFiles:: /home/src/workspaces/project/jsconfig.json: *new* {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/package.json: - {"pollingInterval":2000} *new* + {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/react/package.json: - {"pollingInterval":2000} *new* + {"pollingInterval":2000} /home/src/workspaces/project/node_modules/package.json: - {"pollingInterval":2000} *new* + {"pollingInterval":2000} /home/src/workspaces/project/package.json: + {"pollingInterval":2000} {"pollingInterval":250} *new* - {"pollingInterval":2000} *new* /home/src/workspaces/project/tsconfig.json: *new* {"pollingInterval":2000} watchedFiles *deleted*:: /home/src/workspaces/project/node_modules/@types/jsconfig.json: {"pollingInterval":2000} -/home/src/workspaces/project/node_modules/@types/package.json: - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/react/jsconfig.json: {"pollingInterval":2000} -/home/src/workspaces/project/node_modules/@types/react/package.json: - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/react/tsconfig.json: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/tsconfig.json: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/jsconfig.json: {"pollingInterval":2000} -/home/src/workspaces/project/node_modules/package.json: - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/tsconfig.json: {"pollingInterval":2000} -/home/src/workspaces/project/package.json: - {"pollingInterval":2000} watchedDirectories *deleted*:: /home/src/workspaces/project/node_modules/@types/react: {} watchedDirectoriesRecursive:: -/home/src/workspaces/node_modules: - {} *new* -/home/src/workspaces/node_modules/@types: - {} *new* -/home/src/workspaces/project/node_modules: - {} *new* -/home/src/workspaces/project/node_modules/@types: - {} *new* - -watchedDirectoriesRecursive *deleted*:: /home/src/workspaces/node_modules: {} /home/src/workspaces/node_modules/@types: @@ -361,10 +317,12 @@ watchedDirectoriesRecursive *deleted*:: {} /home/src/workspaces/project/node_modules/@types: {} -/home/src/workspaces/project/node_modules/@types/node_modules/@types: - {} /home/src/workspaces/project/node_modules/@types/react/node_modules: {} + +watchedDirectoriesRecursive *deleted*:: +/home/src/workspaces/project/node_modules/@types/node_modules/@types: + {} /home/src/workspaces/project/node_modules/@types/react/node_modules/@types: {} /home/src/workspaces/project/node_modules/node_modules/@types: diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportPackageJsonFilterExistingImport3.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportPackageJsonFilterExistingImport3.js index c27820c52a6da..6bb86388430e5 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportPackageJsonFilterExistingImport3.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportPackageJsonFilterExistingImport3.js @@ -193,18 +193,6 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/node/package.json 2000 undefined Project: /dev/null/inferredProject2* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/package.json 2000 undefined Project: /dev/null/inferredProject2* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/package.json 2000 undefined Project: /dev/null/inferredProject2* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined Project: /dev/null/inferredProject2* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (5) @@ -254,28 +242,14 @@ Info seq [hh:mm:ss:mss] Files (4) Entry point for implicit type library 'node' Info seq [hh:mm:ss:mss] ----------------------------------------------- -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types/node/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types/node/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types/node 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types/node 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types/node/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types/node/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types/node/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types/node 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types/node 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (5) @@ -307,14 +281,14 @@ watchedFiles:: /home/src/workspaces/project/jsconfig.json: *new* {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/node/package.json: - {"pollingInterval":2000} *new* + {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/package.json: - {"pollingInterval":2000} *new* + {"pollingInterval":2000} /home/src/workspaces/project/node_modules/package.json: - {"pollingInterval":2000} *new* + {"pollingInterval":2000} /home/src/workspaces/project/package.json: + {"pollingInterval":2000} {"pollingInterval":250} *new* - {"pollingInterval":2000} *new* /home/src/workspaces/project/tsconfig.json: *new* {"pollingInterval":2000} @@ -323,38 +297,20 @@ watchedFiles *deleted*:: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/node/jsconfig.json: {"pollingInterval":2000} -/home/src/workspaces/project/node_modules/@types/node/package.json: - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/node/tsconfig.json: {"pollingInterval":2000} -/home/src/workspaces/project/node_modules/@types/package.json: - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/tsconfig.json: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/jsconfig.json: {"pollingInterval":2000} -/home/src/workspaces/project/node_modules/package.json: - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/tsconfig.json: {"pollingInterval":2000} -/home/src/workspaces/project/package.json: - {"pollingInterval":2000} watchedDirectories *deleted*:: /home/src/workspaces/project/node_modules/@types/node: {} watchedDirectoriesRecursive:: -/home/src/workspaces/node_modules: - {} *new* -/home/src/workspaces/node_modules/@types: - {} *new* -/home/src/workspaces/project/node_modules: - {} *new* -/home/src/workspaces/project/node_modules/@types: - {} *new* - -watchedDirectoriesRecursive *deleted*:: /home/src/workspaces/node_modules: {} /home/src/workspaces/node_modules/@types: @@ -365,6 +321,8 @@ watchedDirectoriesRecursive *deleted*:: {} /home/src/workspaces/project/node_modules/@types/node/node_modules: {} + +watchedDirectoriesRecursive *deleted*:: /home/src/workspaces/project/node_modules/@types/node/node_modules/@types: {} /home/src/workspaces/project/node_modules/@types/node_modules/@types: diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider1.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider1.js index 1b59029277918..61dea52d3c835 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider1.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider1.js @@ -196,14 +196,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 1 undefined Config: /home/src/workspaces/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 1 undefined Config: /home/src/workspaces/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) @@ -320,15 +312,12 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} *new* /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: {} - {} *new* /home/src/workspaces/project/node_modules/@angular/forms/node_modules: {} /home/src/workspaces/project/node_modules/@angular/forms/node_modules/@types: @@ -337,7 +326,6 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/project/node_modules/@types: {} - {} *new* /home/src/workspaces/project/node_modules/node_modules/@types: {} @@ -596,14 +584,11 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: - {} {} {} *new* /home/src/workspaces/project/node_modules/@angular/forms/node_modules: @@ -614,7 +599,6 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules/node_modules/@types: {} diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider2.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider2.js index 9e7e47cea8de8..b02d7a94daee1 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider2.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider2.js @@ -193,14 +193,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 1 undefined Config: /home/src/workspaces/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 1 undefined Config: /home/src/workspaces/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) @@ -225,10 +217,8 @@ Info seq [hh:mm:ss:mss] AutoImportProviderProject: found 1 root files in 1 depe Info seq [hh:mm:ss:mss] Creating AutoImportProviderProject: /dev/null/autoImportProviderProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/direct-dependency/index.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/autoImportProviderProject1* -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/indirect-dependency/index.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/indirect-dependency/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/indirect-dependency/index.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/direct-dependency/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/autoImportProviderProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider) @@ -324,19 +314,14 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} *new* /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: {} - {} *new* - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} *new* /home/src/workspaces/project/node_modules/direct-dependency/node_modules: {} /home/src/workspaces/project/node_modules/direct-dependency/node_modules/@types: diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider3.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider3.js index 83a2b12427af0..9d2b5e5faefb1 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider3.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider3.js @@ -205,10 +205,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspa Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/a/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/packages/a/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/packages/a/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (1) @@ -402,12 +398,10 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: {} - {} *new* /home/src/workspaces/project/node_modules: {} /home/src/workspaces/project/node_modules/@types: {} - {} *new* /home/src/workspaces/project/node_modules/common-dependency/node_modules: {} /home/src/workspaces/project/node_modules/common-dependency/node_modules/@types: diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider4.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider4.js index 16d9e7d90b70f..cf1f4c8c0d062 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider4.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider4.js @@ -202,12 +202,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspa Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -301,21 +295,18 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project/a: *new* {} /home/src/workspaces/project/a/node_modules: *new* {} /home/src/workspaces/project/a/node_modules/@types: *new* {} - {} /home/src/workspaces/project/b: *new* {} /home/src/workspaces/project/node_modules: *new* {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/autoImportProviderProject1* (AutoImportProvider) *new* @@ -426,21 +417,18 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/a: {} /home/src/workspaces/project/a/node_modules: {} /home/src/workspaces/project/a/node_modules/@types: {} - {} /home/src/workspaces/project/b: {} /home/src/workspaces/project/node_modules: {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/autoImportProviderProject1* (AutoImportProvider) @@ -670,7 +658,6 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/a: {} /home/src/workspaces/project/a/node_modules: @@ -678,14 +665,12 @@ watchedDirectoriesRecursive:: {} *new* /home/src/workspaces/project/a/node_modules/@types: {} - {} /home/src/workspaces/project/b: {} /home/src/workspaces/project/node_modules: {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/autoImportProviderProject1* (AutoImportProvider) diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider5.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider5.js index f3ed1b9b855e7..b13f3459626ff 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider5.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider5.js @@ -76,8 +76,6 @@ Info seq [hh:mm:ss:mss] AutoImportProviderProject: found 1 root files in 1 depe Info seq [hh:mm:ss:mss] Creating AutoImportProviderProject: /dev/null/autoImportProviderProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/react-hook-form/dist/index.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/autoImportProviderProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/react-hook-form/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/react-hook-form/dist/useForm.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/react-hook-form/dist/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution @@ -147,7 +145,6 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/project/node_modules: *new* {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} @@ -198,14 +195,6 @@ Info seq [hh:mm:ss:mss] request: Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/project/index.ts ProjectRootPath: undefined:: Result: undefined Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -228,10 +217,6 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] AutoImportProviderProject: found 1 root files in 1 dependencies 0 referenced projects in * ms Info seq [hh:mm:ss:mss] Creating AutoImportProviderProject: /dev/null/autoImportProviderProject2*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/autoImportProviderProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/autoImportProviderProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/autoImportProviderProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/react-hook-form/package.json 2000 undefined Project: /dev/null/autoImportProviderProject2* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/react-hook-form/dist/package.json 2000 undefined Project: /dev/null/autoImportProviderProject2* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/autoImportProviderProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/autoImportProviderProject2*' (AutoImportProvider) Info seq [hh:mm:ss:mss] Files (2) @@ -279,46 +264,6 @@ Info seq [hh:mm:ss:mss] response: } } After Request -watchedFiles:: -/home/src/tslibs/TS/Lib/lib.d.ts: - {"pollingInterval":500} -/home/src/tslibs/TS/Lib/lib.decorators.d.ts: - {"pollingInterval":500} -/home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts: - {"pollingInterval":500} -/home/src/workspaces/project/jsconfig.json: - {"pollingInterval":2000} -/home/src/workspaces/project/node_modules/react-hook-form/dist/index.d.ts: - {"pollingInterval":500} -/home/src/workspaces/project/node_modules/react-hook-form/dist/package.json: - {"pollingInterval":2000} - {"pollingInterval":2000} *new* -/home/src/workspaces/project/node_modules/react-hook-form/dist/useForm.d.ts: - {"pollingInterval":500} -/home/src/workspaces/project/node_modules/react-hook-form/package.json: - {"pollingInterval":2000} - {"pollingInterval":2000} *new* -/home/src/workspaces/project/package.json: - {"pollingInterval":250} -/home/src/workspaces/project/tsconfig.json: - {"pollingInterval":2000} - -watchedDirectoriesRecursive:: -/home/src/workspaces/node_modules: - {} - {} *new* -/home/src/workspaces/node_modules/@types: - {} - {} *new* -/home/src/workspaces/project/node_modules: - {} - {} - {} *new* - {} *new* -/home/src/workspaces/project/node_modules/@types: - {} - {} *new* - Projects:: /dev/null/autoImportProviderProject1* (AutoImportProvider) projectStateVersion: 1 @@ -547,12 +492,10 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/project/node_modules/react-hook-form/dist/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/react-hook-form/dist/useForm.d.ts: {"pollingInterval":500} /home/src/workspaces/project/node_modules/react-hook-form/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/package.json: {"pollingInterval":250} /home/src/workspaces/project/tsconfig.json: @@ -561,19 +504,13 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules: - {} - {} - {} {} {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} Info seq [hh:mm:ss:mss] request: { diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider6.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider6.js index 19bf013015a44..76cec34085e1f 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider6.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider6.js @@ -370,19 +370,7 @@ Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/p Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/react/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (5) @@ -510,17 +498,13 @@ watchedFiles:: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/react/index.d.ts: *new* {"pollingInterval":500} /home/src/workspaces/project/node_modules/@types/react/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/package.json: *new* - {"pollingInterval":2000} {"pollingInterval":2000} {"pollingInterval":250} /home/src/workspaces/project/tsconfig.json: *new* @@ -529,18 +513,14 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: *new* {} - {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -829,17 +809,13 @@ watchedFiles:: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/react/index.d.ts: {"pollingInterval":500} /home/src/workspaces/project/node_modules/@types/react/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/package.json: - {"pollingInterval":2000} {"pollingInterval":2000} {"pollingInterval":250} /home/src/workspaces/project/tsconfig.json: @@ -852,18 +828,14 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider7.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider7.js index 346cdee8eb025..793df7f42daea 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider7.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider7.js @@ -154,14 +154,6 @@ Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/p Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -185,8 +177,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/p Info seq [hh:mm:ss:mss] AutoImportProviderProject: found 1 root files in 1 dependencies 0 referenced projects in * ms Info seq [hh:mm:ss:mss] Creating AutoImportProviderProject: /dev/null/autoImportProviderProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/autoImportProviderProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/autoImportProviderProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider) Info seq [hh:mm:ss:mss] Files (4) @@ -261,21 +251,16 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: *new* {} - {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} /home/src/workspaces/project/packages: *new* {} - {} Projects:: /dev/null/autoImportProviderProject1* (AutoImportProvider) *new* @@ -401,21 +386,16 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/packages: {} - {} Projects:: /dev/null/autoImportProviderProject1* (AutoImportProvider) @@ -1333,22 +1313,17 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: - {} {} {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/packages: {} - {} Projects:: /dev/null/autoImportProviderProject1* (AutoImportProvider) diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider8.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider8.js index 2df67634f1125..ec9ef91c47be3 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider8.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider8.js @@ -154,14 +154,6 @@ Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/p Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -185,8 +177,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/p Info seq [hh:mm:ss:mss] AutoImportProviderProject: found 1 root files in 1 dependencies 0 referenced projects in * ms Info seq [hh:mm:ss:mss] Creating AutoImportProviderProject: /dev/null/autoImportProviderProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/autoImportProviderProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/autoImportProviderProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider) Info seq [hh:mm:ss:mss] Files (4) @@ -261,21 +251,16 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: *new* {} - {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} /home/src/workspaces/project/packages: *new* {} - {} Projects:: /dev/null/autoImportProviderProject1* (AutoImportProvider) *new* @@ -401,21 +386,16 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/packages: {} - {} Projects:: /dev/null/autoImportProviderProject1* (AutoImportProvider) @@ -1333,22 +1313,17 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: - {} {} {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/packages: {} - {} Projects:: /dev/null/autoImportProviderProject1* (AutoImportProvider) diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider9.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider9.js index b44740a043b06..bb2c5826e498a 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider9.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider9.js @@ -2126,8 +2126,8 @@ Info seq [hh:mm:ss:mss] request: "command": "syntacticDiagnosticsSync" } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/lib2/index.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/lib2/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/lib2/index.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (5) diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_exportMap1.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_exportMap1.js index 7d01d3abc8859..a86616de3b472 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_exportMap1.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_exportMap1.js @@ -181,10 +181,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspa Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -254,14 +250,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -356,14 +350,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) @@ -989,7 +981,6 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: @@ -997,7 +988,6 @@ watchedDirectoriesRecursive:: {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/autoImportProviderProject1* (AutoImportProvider) *new* diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_exportMap2.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_exportMap2.js index a3c5703217712..dee5f66628af2 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_exportMap2.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_exportMap2.js @@ -141,14 +141,6 @@ Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/p Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -239,18 +231,14 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: *new* {} - {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/autoImportProviderProject1* (AutoImportProvider) *new* @@ -358,18 +346,14 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/autoImportProviderProject1* (AutoImportProvider) @@ -466,8 +450,6 @@ Info seq [hh:mm:ss:mss] getCompletionData: Get previous token: * Info seq [hh:mm:ss:mss] AutoImportProviderProject: found 1 root files in 1 dependencies 0 referenced projects in * ms Info seq [hh:mm:ss:mss] Creating AutoImportProviderProject: /dev/null/autoImportProviderProject2*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/autoImportProviderProject2* -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/dependency/lib/package.json 2000 undefined Project: /dev/null/autoImportProviderProject2* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/dependency/package.json 2000 undefined Project: /dev/null/autoImportProviderProject2* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/autoImportProviderProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/autoImportProviderProject2*' (AutoImportProvider) Info seq [hh:mm:ss:mss] Files (1) @@ -1214,10 +1196,8 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/project/node_modules/dependency/lib/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} *new* /home/src/workspaces/project/node_modules/dependency/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} *new* /home/src/workspaces/project/package.json: {"pollingInterval":250} /home/src/workspaces/project/tsconfig.json: @@ -1226,19 +1206,15 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: - {} {} {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/autoImportProviderProject1* (AutoImportProvider) diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_exportMap3.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_exportMap3.js index 1452af168a84f..8340945a5bf12 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_exportMap3.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_exportMap3.js @@ -174,10 +174,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspa Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -274,14 +270,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/autoImportProviderProject1* (AutoImportProvider) *new* @@ -393,14 +387,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/autoImportProviderProject1* (AutoImportProvider) @@ -495,8 +487,6 @@ Info seq [hh:mm:ss:mss] AutoImportProviderProject: found 2 root files in 1 depe Info seq [hh:mm:ss:mss] Creating AutoImportProviderProject: /dev/null/autoImportProviderProject2*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/dependency/lib/lol.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/autoImportProviderProject2* -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/dependency/lib/package.json 2000 undefined Project: /dev/null/autoImportProviderProject2* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/dependency/package.json 2000 undefined Project: /dev/null/autoImportProviderProject2* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/autoImportProviderProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/autoImportProviderProject2*' (AutoImportProvider) Info seq [hh:mm:ss:mss] Files (2) @@ -999,10 +989,8 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/project/node_modules/dependency/lib/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} *new* /home/src/workspaces/project/node_modules/dependency/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} *new* /home/src/workspaces/project/package.json: {"pollingInterval":2000} {"pollingInterval":250} @@ -1016,7 +1004,6 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: @@ -1024,7 +1011,6 @@ watchedDirectoriesRecursive:: {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/autoImportProviderProject1* (AutoImportProvider) diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_exportMap4.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_exportMap4.js index 816c1e6c7a3b4..10125c4b8fa94 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_exportMap4.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_exportMap4.js @@ -177,10 +177,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspa Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -250,14 +246,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -352,14 +346,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) @@ -956,7 +948,6 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: @@ -964,7 +955,6 @@ watchedDirectoriesRecursive:: {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/autoImportProviderProject1* (AutoImportProvider) *new* diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_exportMap5.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_exportMap5.js index 0cdf074a978d8..75107c31a70d8 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_exportMap5.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_exportMap5.js @@ -199,19 +199,9 @@ Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/p Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/dependency/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/dependency/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -272,10 +262,8 @@ watchedFiles:: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/dependency/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/dependency/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/package.json: *new* {"pollingInterval":2000} {"pollingInterval":250} @@ -289,18 +277,14 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: *new* {} - {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -388,10 +372,8 @@ watchedFiles:: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/dependency/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/dependency/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/package.json: {"pollingInterval":2000} {"pollingInterval":250} @@ -407,18 +389,14 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) @@ -506,8 +484,6 @@ Info seq [hh:mm:ss:mss] AutoImportProviderProject: found 1 root files in 1 depe Info seq [hh:mm:ss:mss] Creating AutoImportProviderProject: /dev/null/autoImportProviderProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/dependency/lib/lol.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/autoImportProviderProject1* -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/dependency/lib/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/dependency/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/autoImportProviderProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider) Info seq [hh:mm:ss:mss] Files (1) @@ -1026,14 +1002,10 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/project/node_modules/@types/dependency/lib/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} *new* /home/src/workspaces/project/node_modules/@types/dependency/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} - {"pollingInterval":2000} *new* /home/src/workspaces/project/node_modules/dependency/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/package.json: {"pollingInterval":2000} {"pollingInterval":250} @@ -1045,19 +1017,15 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: - {} {} {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/autoImportProviderProject1* (AutoImportProvider) *new* diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_exportMap6.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_exportMap6.js index b3ac3d285b834..0aeb2b7f0fb51 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_exportMap6.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_exportMap6.js @@ -208,19 +208,9 @@ Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/p Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/dependency/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/dependency/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -277,14 +267,12 @@ watchedFiles:: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/dependency/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/dependency/lib/index.d.ts: *new* {"pollingInterval":500} /home/src/workspaces/project/node_modules/dependency/lib/package.json: *new* {"pollingInterval":2000} /home/src/workspaces/project/node_modules/dependency/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/package.json: *new* {"pollingInterval":2000} {"pollingInterval":250} @@ -298,18 +286,14 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: *new* {} - {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -393,14 +377,12 @@ watchedFiles:: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/dependency/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/dependency/lib/index.d.ts: {"pollingInterval":500} /home/src/workspaces/project/node_modules/dependency/lib/package.json: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/dependency/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/package.json: {"pollingInterval":2000} {"pollingInterval":250} @@ -416,18 +398,14 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) @@ -515,8 +493,6 @@ Info seq [hh:mm:ss:mss] AutoImportProviderProject: found 1 root files in 1 depe Info seq [hh:mm:ss:mss] Creating AutoImportProviderProject: /dev/null/autoImportProviderProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/dependency/lib/lol.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/autoImportProviderProject1* -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/dependency/lib/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/dependency/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/autoImportProviderProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider) Info seq [hh:mm:ss:mss] Files (1) @@ -1031,18 +1007,14 @@ watchedFiles:: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/dependency/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/dependency/lib/index.d.ts: {"pollingInterval":500} /home/src/workspaces/project/node_modules/dependency/lib/lol.d.ts: *new* {"pollingInterval":500} /home/src/workspaces/project/node_modules/dependency/lib/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} *new* /home/src/workspaces/project/node_modules/dependency/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} - {"pollingInterval":2000} *new* /home/src/workspaces/project/package.json: {"pollingInterval":2000} {"pollingInterval":250} @@ -1054,19 +1026,15 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: - {} {} {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/autoImportProviderProject1* (AutoImportProvider) *new* diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_exportMap7.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_exportMap7.js index 98425f481cf03..4751990ad8e36 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_exportMap7.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_exportMap7.js @@ -91,11 +91,11 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/bar.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/foo.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/dependency/lib/index.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/dependency/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/dependency/lib/index.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/dependency/lib/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.esnext.full.d.ts 500 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Missing file @@ -199,10 +199,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspa Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -280,14 +276,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} /home/src/workspaces/project/src: *new* {} @@ -400,14 +394,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/src: {} @@ -501,8 +493,6 @@ Info seq [hh:mm:ss:mss] AutoImportProviderProject: found 1 root files in 1 depe Info seq [hh:mm:ss:mss] Creating AutoImportProviderProject: /dev/null/autoImportProviderProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/dependency/lib/lol.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/autoImportProviderProject1* -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/dependency/lib/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/dependency/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/autoImportProviderProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider) Info seq [hh:mm:ss:mss] Files (1) @@ -1021,10 +1011,8 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/project/node_modules/dependency/lib/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} *new* /home/src/workspaces/project/node_modules/dependency/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} *new* /home/src/workspaces/project/package.json: {"pollingInterval":2000} {"pollingInterval":250} @@ -1040,7 +1028,6 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: @@ -1048,7 +1035,6 @@ watchedDirectoriesRecursive:: {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/src: {} diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_exportMap8.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_exportMap8.js index e7f743f253055..ff433a500f228 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_exportMap8.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_exportMap8.js @@ -196,16 +196,8 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -279,18 +271,14 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: *new* {} - {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} /home/src/workspaces/project/src: *new* {} @@ -399,18 +387,14 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/src: {} @@ -506,7 +490,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/p Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/dependency/lib/lol.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/autoImportProviderProject1* Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/dependency/lib/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/dependency/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/autoImportProviderProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider) Info seq [hh:mm:ss:mss] Files (2) @@ -1011,7 +994,6 @@ watchedFiles:: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/dependency/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} *new* /home/src/workspaces/project/package.json: {"pollingInterval":2000} {"pollingInterval":250} @@ -1027,19 +1009,15 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: - {} {} {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/src: {} @@ -1151,7 +1129,6 @@ watchedFiles:: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/dependency/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/package.json: {"pollingInterval":2000} {"pollingInterval":250} @@ -1169,19 +1146,15 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/src: {} @@ -1746,7 +1719,6 @@ watchedFiles:: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/dependency/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/package.json: {"pollingInterval":2000} {"pollingInterval":250} @@ -1760,19 +1732,15 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: - {} {} {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/src: {} diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_exportMap9.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_exportMap9.js index 6ae4f6c1237e9..d079a5158d1e2 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_exportMap9.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_exportMap9.js @@ -186,16 +186,8 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -267,18 +259,14 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: *new* {} - {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} /home/src/workspaces/project/src: *new* {} @@ -381,18 +369,14 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/src: {} @@ -483,7 +467,6 @@ Info seq [hh:mm:ss:mss] Creating AutoImportProviderProject: /dev/null/autoImpor Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/dependency/lib/index.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/autoImportProviderProject1* Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/dependency/lib/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/dependency/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/autoImportProviderProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider) Info seq [hh:mm:ss:mss] Files (1) @@ -982,7 +965,6 @@ watchedFiles:: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/dependency/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} *new* /home/src/workspaces/project/package.json: {"pollingInterval":2000} {"pollingInterval":250} @@ -996,19 +978,15 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: - {} {} {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/src: {} diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_globalTypingsCache.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_globalTypingsCache.js index 4769f9c67bad5..bc4b8cfe5c135 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_globalTypingsCache.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_globalTypingsCache.js @@ -251,7 +251,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/p Info seq [hh:mm:ss:mss] AutoImportProviderProject: found 1 root files in 1 dependencies 0 referenced projects in * ms Info seq [hh:mm:ss:mss] Creating AutoImportProviderProject: /dev/null/autoImportProviderProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/autoImportProviderProject1* -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/react-router-dom/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/autoImportProviderProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider) Info seq [hh:mm:ss:mss] Files (1) @@ -325,7 +324,6 @@ watchedFiles:: {"pollingInterval":2000} /home/src/Library/Caches/typescript/node_modules/@types/react-router-dom/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} *new* /home/src/Library/Caches/typescript/node_modules/@types/react-router-dom/tsconfig.json: {"pollingInterval":2000} /home/src/Library/Caches/typescript/node_modules/@types/tsconfig.json: @@ -1069,7 +1067,6 @@ watchedFiles:: {"pollingInterval":2000} /home/src/Library/Caches/typescript/node_modules/@types/react-router-dom/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/Library/Caches/typescript/node_modules/@types/react-router-dom/tsconfig.json: {"pollingInterval":2000} /home/src/Library/Caches/typescript/node_modules/@types/tsconfig.json: diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_importsMap1.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_importsMap1.js index 2d5faff7623a1..ff1cc60e01584 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_importsMap1.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_importsMap1.js @@ -186,10 +186,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspa Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -265,14 +261,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_importsMap2.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_importsMap2.js index 032203ca84370..f49a79db90278 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_importsMap2.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_importsMap2.js @@ -174,10 +174,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspa Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -251,14 +247,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_importsMap3.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_importsMap3.js index c47ca4cd4b5d9..2879b812b6db1 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_importsMap3.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_importsMap3.js @@ -174,10 +174,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspa Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -251,14 +247,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_importsMap4.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_importsMap4.js index dc1c5c7c0eac5..38d323186541f 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_importsMap4.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_importsMap4.js @@ -177,10 +177,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspa Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -254,14 +250,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_importsMap5.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_importsMap5.js index 0702c20a42d4c..ed47327eaeede 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_importsMap5.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_importsMap5.js @@ -193,10 +193,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspa Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -270,14 +266,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_namespaceSameNameAsIntrinsic.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_namespaceSameNameAsIntrinsic.js index 5a4e9f3db3c0d..44729209f3f30 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_namespaceSameNameAsIntrinsic.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_namespaceSameNameAsIntrinsic.js @@ -191,14 +191,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 1 undefined Config: /home/src/workspaces/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 1 undefined Config: /home/src/workspaces/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) @@ -223,8 +215,6 @@ Info seq [hh:mm:ss:mss] AutoImportProviderProject: found 1 root files in 1 depe Info seq [hh:mm:ss:mss] Creating AutoImportProviderProject: /dev/null/autoImportProviderProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/fp-ts/index.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/autoImportProviderProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/fp-ts/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/fp-ts/lib/string.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/fp-ts/lib/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution @@ -322,19 +312,14 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} *new* /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: {} - {} *new* - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} *new* /home/src/workspaces/project/node_modules/fp-ts/node_modules: {} /home/src/workspaces/project/node_modules/fp-ts/node_modules/@types: @@ -1396,20 +1381,15 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: - {} - {} {} {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules/fp-ts/node_modules: {} /home/src/workspaces/project/node_modules/fp-ts/node_modules/@types: diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_pnpm.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_pnpm.js index 9e80c56eaa245..1f795204dd713 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_pnpm.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_pnpm.js @@ -117,14 +117,6 @@ Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/p Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -214,18 +206,14 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: *new* {} - {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/autoImportProviderProject1* (AutoImportProvider) *new* @@ -333,18 +321,14 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/autoImportProviderProject1* (AutoImportProvider) @@ -498,8 +482,6 @@ Info seq [hh:mm:ss:mss] request: Info seq [hh:mm:ss:mss] AutoImportProviderProject: found 1 root files in 1 dependencies 0 referenced projects in * ms Info seq [hh:mm:ss:mss] Creating AutoImportProviderProject: /dev/null/autoImportProviderProject2*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/autoImportProviderProject2* -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/.pnpm/mobx@6.0.4/node_modules/mobx/dist/package.json 2000 undefined Project: /dev/null/autoImportProviderProject2* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/.pnpm/mobx@6.0.4/node_modules/mobx/package.json 2000 undefined Project: /dev/null/autoImportProviderProject2* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/autoImportProviderProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/autoImportProviderProject2*' (AutoImportProvider) Info seq [hh:mm:ss:mss] Files (1) @@ -563,10 +545,8 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/project/node_modules/.pnpm/mobx@6.0.4/node_modules/mobx/dist/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} *new* /home/src/workspaces/project/node_modules/.pnpm/mobx@6.0.4/node_modules/mobx/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} *new* /home/src/workspaces/project/package.json: {"pollingInterval":250} /home/src/workspaces/project/tsconfig.json: @@ -575,19 +555,15 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: - {} {} {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/autoImportProviderProject1* (AutoImportProvider) diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_referencesCrash.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_referencesCrash.js index 0134abe4efb7c..0a679696efebe 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_referencesCrash.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_referencesCrash.js @@ -143,18 +143,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/p Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/a/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/a/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -221,24 +209,18 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: *new* {} - {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project/a: *new* {} /home/src/workspaces/project/a/node_modules: *new* {} - {} /home/src/workspaces/project/a/node_modules/@types: *new* {} - {} /home/src/workspaces/project/node_modules: *new* {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -316,16 +298,8 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/c/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/c/node_modules 1 undefined Project: /home/src/workspaces/project/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/c/node_modules 1 undefined Project: /home/src/workspaces/project/c/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/c/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/c/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/c/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/c/node_modules/@types 1 undefined Project: /home/src/workspaces/project/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/c/node_modules/@types 1 undefined Project: /home/src/workspaces/project/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/c/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/c/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) @@ -469,20 +443,14 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} - {} *new* /home/src/workspaces/project/a: {} /home/src/workspaces/project/a/node_modules: {} - {} /home/src/workspaces/project/a/node_modules/@types: {} - {} /home/src/workspaces/project/c: *new* {} /home/src/workspaces/project/c/node_modules: *new* @@ -491,12 +459,8 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/project/node_modules: {} - {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} - {} *new* Projects:: /dev/null/autoImportProviderProject1* (AutoImportProvider) *new* @@ -591,16 +555,8 @@ Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspac Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/a/index.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/b/node_modules 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/b/node_modules 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/b/node_modules/@types 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/b/node_modules/@types 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (5) @@ -728,22 +684,14 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} - {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} - {} - {} *new* /home/src/workspaces/project/a: {} /home/src/workspaces/project/a/node_modules: {} - {} /home/src/workspaces/project/a/node_modules/@types: {} - {} /home/src/workspaces/project/b: *new* {} /home/src/workspaces/project/b/node_modules: *new* @@ -758,14 +706,8 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/project/node_modules: {} - {} - {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} - {} - {} *new* Projects:: /dev/null/autoImportProviderProject1* (AutoImportProvider) @@ -932,22 +874,14 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} - {} - {} /home/src/workspaces/node_modules/@types: {} - {} - {} - {} /home/src/workspaces/project/a: {} /home/src/workspaces/project/a/node_modules: {} - {} /home/src/workspaces/project/a/node_modules/@types: {} - {} /home/src/workspaces/project/b: {} /home/src/workspaces/project/b/node_modules: @@ -962,14 +896,8 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/project/node_modules: {} - {} - {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} - {} - {} Projects:: /dev/null/autoImportProviderProject1* (AutoImportProvider) diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_wildcardExports1.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_wildcardExports1.js index 2ae58d0fc95b3..d8b90cf03103e 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_wildcardExports1.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_wildcardExports1.js @@ -224,10 +224,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.esnext.full.d.ts 500 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Missing file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (1) @@ -425,14 +421,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: {} - {} *new* /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: {} /home/src/workspaces/project/node_modules/@types: {} - {} *new* /home/src/workspaces/project/node_modules/node_modules/@types: {} /home/src/workspaces/project/node_modules/pkg/node_modules: @@ -1145,7 +1139,6 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: @@ -1153,7 +1146,6 @@ watchedDirectoriesRecursive:: {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules/node_modules/@types: {} /home/src/workspaces/project/node_modules/pkg/node_modules: diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_wildcardExports2.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_wildcardExports2.js index 46f54be3a0075..60dbc787c6063 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_wildcardExports2.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_wildcardExports2.js @@ -207,10 +207,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.esnext.full.d.ts 500 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Missing file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (1) @@ -373,14 +369,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: {} - {} *new* /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: {} /home/src/workspaces/project/node_modules/@types: {} - {} *new* /home/src/workspaces/project/node_modules/node_modules/@types: {} /home/src/workspaces/project/node_modules/pkg/node_modules: @@ -973,7 +967,6 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: @@ -981,7 +974,6 @@ watchedDirectoriesRecursive:: {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules/node_modules/@types: {} /home/src/workspaces/project/node_modules/pkg/node_modules: diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_wildcardExports3.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_wildcardExports3.js index 3265dcacce2b0..9b66adc20e713 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_wildcardExports3.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportProvider_wildcardExports3.js @@ -229,18 +229,10 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspa Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/apps/web/node_modules 1 undefined Project: /home/src/workspaces/project/apps/web/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/apps/node_modules 1 undefined Project: /home/src/workspaces/project/apps/web/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/apps/node_modules 1 undefined Project: /home/src/workspaces/project/apps/web/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/apps/web/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/apps/web/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/apps/web/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/apps/web/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/apps/web/node_modules/@types 1 undefined Project: /home/src/workspaces/project/apps/web/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/apps/web/node_modules/@types 1 undefined Project: /home/src/workspaces/project/apps/web/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/apps/node_modules/@types 1 undefined Project: /home/src/workspaces/project/apps/web/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/apps/node_modules/@types 1 undefined Project: /home/src/workspaces/project/apps/web/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/apps/web/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/apps/web/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/apps/web/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/apps/web/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/apps/web/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/apps/web/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) @@ -356,10 +348,8 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} *new* /home/src/workspaces/project/apps/node_modules: *new* {} /home/src/workspaces/project/apps/node_modules/@types: *new* @@ -372,10 +362,8 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/project/node_modules: {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} *new* /home/src/workspaces/project/packages/node_modules: {} /home/src/workspaces/project/packages/node_modules/@types: @@ -833,10 +821,8 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/apps/node_modules: {} /home/src/workspaces/project/apps/node_modules/@types: @@ -850,10 +836,8 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/packages/node_modules: {} /home/src/workspaces/project/packages/node_modules/@types: diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportReExportFromAmbientModule.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportReExportFromAmbientModule.js index f05d45a003e3e..a774453ab81ae 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportReExportFromAmbientModule.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportReExportFromAmbientModule.js @@ -68,10 +68,10 @@ Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspac Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/fs-extra/index.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/node/index.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/node/index.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/fs-extra/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution @@ -133,20 +133,6 @@ Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/p Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/fs-extra/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/node/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (6) @@ -204,7 +190,6 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/index.ts: *new* {"pollingInterval":500} /home/src/workspaces/project/jsconfig.json: *new* @@ -213,39 +198,30 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/project/node_modules/@types/fs-extra/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/node/index.d.ts: *new* {"pollingInterval":500} /home/src/workspaces/project/node_modules/@types/node/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/tsconfig.json: *new* {"pollingInterval":2000} watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: *new* {} - {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -334,28 +310,22 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/jsconfig.json: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/fs-extra/index.d.ts: {"pollingInterval":500} /home/src/workspaces/project/node_modules/@types/fs-extra/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/node/index.d.ts: {"pollingInterval":500} /home/src/workspaces/project/node_modules/@types/node/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/tsconfig.json: {"pollingInterval":2000} @@ -366,18 +336,14 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) @@ -1213,47 +1179,37 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/jsconfig.json: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/fs-extra/index.d.ts: {"pollingInterval":500} /home/src/workspaces/project/node_modules/@types/fs-extra/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/node/index.d.ts: {"pollingInterval":500} /home/src/workspaces/project/node_modules/@types/node/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/tsconfig.json: {"pollingInterval":2000} watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: - {} {} {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportRelativePathToMonorepoPackage.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportRelativePathToMonorepoPackage.js index 96b9acbd9cd72..790a305e22211 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportRelativePathToMonorepoPackage.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportRelativePathToMonorepoPackage.js @@ -75,12 +75,12 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/p Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/app/node_modules/utils 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/app/node_modules/utils 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/utils/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/utils/dist/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/app/dist/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution @@ -191,10 +191,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspa Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -282,14 +278,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} /home/src/workspaces/project/packages: *new* {} /home/src/workspaces/project/packages/app/node_modules/utils: *new* @@ -415,14 +409,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/packages: {} /home/src/workspaces/project/packages/app/node_modules/utils: @@ -666,14 +658,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/packages: {} /home/src/workspaces/project/packages/app/node_modules: *new* diff --git a/tests/baselines/reference/tsserver/fourslashServer/autoImportSymlinkedJsPackages.js b/tests/baselines/reference/tsserver/fourslashServer/autoImportSymlinkedJsPackages.js index bce196bd1c38d..ec826353288b0 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/autoImportSymlinkedJsPackages.js +++ b/tests/baselines/reference/tsserver/fourslashServer/autoImportSymlinkedJsPackages.js @@ -214,22 +214,6 @@ Info seq [hh:mm:ss:mss] request: Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/project/packages/a/index.js ProjectRootPath: undefined:: Result: undefined Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, currentDirectory: /home/src/workspaces/project/packages/a Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/a/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/a/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -320,28 +304,20 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} *new* /home/src/workspaces/project/node_modules: {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} *new* /home/src/workspaces/project/packages/a/node_modules: {} - {} *new* /home/src/workspaces/project/packages/a/node_modules/@types: {} - {} *new* /home/src/workspaces/project/packages/node_modules: {} - {} *new* /home/src/workspaces/project/packages/node_modules/@types: {} - {} *new* Projects:: /dev/null/autoImportProviderProject1* (AutoImportProvider) *new* @@ -1062,29 +1038,21 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/packages/a/node_modules: - {} {} {} *new* /home/src/workspaces/project/packages/a/node_modules/@types: {} - {} /home/src/workspaces/project/packages/node_modules: {} - {} /home/src/workspaces/project/packages/node_modules/@types: {} - {} Projects:: /dev/null/autoImportProviderProject1* (AutoImportProvider) *changed* diff --git a/tests/baselines/reference/tsserver/fourslashServer/completionEntryDetailAcrossFiles01.js b/tests/baselines/reference/tsserver/fourslashServer/completionEntryDetailAcrossFiles01.js index f83baf8867692..bb33d13ff9466 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/completionEntryDetailAcrossFiles01.js +++ b/tests/baselines/reference/tsserver/fourslashServer/completionEntryDetailAcrossFiles01.js @@ -871,18 +871,10 @@ Info seq [hh:mm:ss:mss] request: Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /tests/cases/fourslash/server/b.ts ProjectRootPath: undefined:: Result: undefined Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, currentDirectory: /tests/cases/fourslash/server Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/a 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/a 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server 0 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server 0 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/a 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/a 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (5) @@ -924,14 +916,6 @@ Info seq [hh:mm:ss:mss] Files (4) Root file specified for compilation Info seq [hh:mm:ss:mss] ----------------------------------------------- -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (5) @@ -970,22 +954,12 @@ watchedDirectories:: {} watchedDirectoriesRecursive:: -/tests/cases/fourslash/node_modules: - {} *new* -/tests/cases/fourslash/node_modules/@types: - {} *new* -/tests/cases/fourslash/server/a: *new* - {} -/tests/cases/fourslash/server/node_modules: - {} *new* -/tests/cases/fourslash/server/node_modules/@types: - {} *new* - -watchedDirectoriesRecursive *deleted*:: /tests/cases/fourslash/node_modules: {} /tests/cases/fourslash/node_modules/@types: {} +/tests/cases/fourslash/server/a: *new* + {} /tests/cases/fourslash/server/node_modules: {} /tests/cases/fourslash/server/node_modules/@types: diff --git a/tests/baselines/reference/tsserver/fourslashServer/completionEntryDetailAcrossFiles02.js b/tests/baselines/reference/tsserver/fourslashServer/completionEntryDetailAcrossFiles02.js index 36653f4562ba6..1239d222eee4a 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/completionEntryDetailAcrossFiles02.js +++ b/tests/baselines/reference/tsserver/fourslashServer/completionEntryDetailAcrossFiles02.js @@ -877,18 +877,10 @@ Info seq [hh:mm:ss:mss] request: Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /tests/cases/fourslash/server/b.ts ProjectRootPath: undefined:: Result: undefined Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, currentDirectory: /tests/cases/fourslash/server Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/a 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/a 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server 0 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server 0 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/a 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/a 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (5) @@ -930,14 +922,6 @@ Info seq [hh:mm:ss:mss] Files (4) Root file specified for compilation Info seq [hh:mm:ss:mss] ----------------------------------------------- -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (5) @@ -976,22 +960,12 @@ watchedDirectories:: {} watchedDirectoriesRecursive:: -/tests/cases/fourslash/node_modules: - {} *new* -/tests/cases/fourslash/node_modules/@types: - {} *new* -/tests/cases/fourslash/server/a: *new* - {} -/tests/cases/fourslash/server/node_modules: - {} *new* -/tests/cases/fourslash/server/node_modules/@types: - {} *new* - -watchedDirectoriesRecursive *deleted*:: /tests/cases/fourslash/node_modules: {} /tests/cases/fourslash/node_modules/@types: {} +/tests/cases/fourslash/server/a: *new* + {} /tests/cases/fourslash/server/node_modules: {} /tests/cases/fourslash/server/node_modules/@types: diff --git a/tests/baselines/reference/tsserver/fourslashServer/completionsImport_addToNamedWithDifferentCacheValue.js b/tests/baselines/reference/tsserver/fourslashServer/completionsImport_addToNamedWithDifferentCacheValue.js index de9391af4a93e..8800ffece6ee4 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/completionsImport_addToNamedWithDifferentCacheValue.js +++ b/tests/baselines/reference/tsserver/fourslashServer/completionsImport_addToNamedWithDifferentCacheValue.js @@ -151,14 +151,6 @@ Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/p Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -226,18 +218,14 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: *new* {} - {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} /home/src/workspaces/project/packages: *new* {} @@ -352,18 +340,14 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/packages: {} @@ -1527,18 +1511,14 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/packages: {} @@ -5150,18 +5130,14 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/packages: {} /home/src/workspaces/project/src: *new* diff --git a/tests/baselines/reference/tsserver/fourslashServer/completionsImport_computedSymbolName.js b/tests/baselines/reference/tsserver/fourslashServer/completionsImport_computedSymbolName.js index 784a68dfeddab..279dd1d698298 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/completionsImport_computedSymbolName.js +++ b/tests/baselines/reference/tsserver/fourslashServer/completionsImport_computedSymbolName.js @@ -145,20 +145,6 @@ Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/p Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/node/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/ts-node/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (6) @@ -216,7 +202,6 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/index.ts: *new* {"pollingInterval":500} /home/src/workspaces/project/jsconfig.json: *new* @@ -225,39 +210,30 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/project/node_modules/@types/node/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/ts-node/index.d.ts: *new* {"pollingInterval":500} /home/src/workspaces/project/node_modules/@types/ts-node/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/tsconfig.json: *new* {"pollingInterval":2000} watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: *new* {} - {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -346,28 +322,22 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/jsconfig.json: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/node/index.d.ts: {"pollingInterval":500} /home/src/workspaces/project/node_modules/@types/node/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/ts-node/index.d.ts: {"pollingInterval":500} /home/src/workspaces/project/node_modules/@types/ts-node/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/tsconfig.json: {"pollingInterval":2000} @@ -378,18 +348,14 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) diff --git a/tests/baselines/reference/tsserver/fourslashServer/completionsImport_defaultAndNamedConflict_server.js b/tests/baselines/reference/tsserver/fourslashServer/completionsImport_defaultAndNamedConflict_server.js index 55b0d5d3cfd06..0add98270be61 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/completionsImport_defaultAndNamedConflict_server.js +++ b/tests/baselines/reference/tsserver/fourslashServer/completionsImport_defaultAndNamedConflict_server.js @@ -133,10 +133,6 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (1) @@ -185,12 +181,10 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -266,12 +260,10 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) diff --git a/tests/baselines/reference/tsserver/fourslashServer/completionsImport_jsModuleExportsAssignment.js b/tests/baselines/reference/tsserver/fourslashServer/completionsImport_jsModuleExportsAssignment.js index f56d9fd156ab7..8d4300f743036 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/completionsImport_jsModuleExportsAssignment.js +++ b/tests/baselines/reference/tsserver/fourslashServer/completionsImport_jsModuleExportsAssignment.js @@ -136,14 +136,6 @@ Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/p Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -205,18 +197,14 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: *new* {} - {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -352,18 +340,14 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) diff --git a/tests/baselines/reference/tsserver/fourslashServer/completionsImport_mergedReExport.js b/tests/baselines/reference/tsserver/fourslashServer/completionsImport_mergedReExport.js index 7d3ab1d2dbbb6..465c2d481fd5d 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/completionsImport_mergedReExport.js +++ b/tests/baselines/reference/tsserver/fourslashServer/completionsImport_mergedReExport.js @@ -132,14 +132,6 @@ Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/p Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -164,8 +156,6 @@ Info seq [hh:mm:ss:mss] AutoImportProviderProject: found 1 root files in 1 depe Info seq [hh:mm:ss:mss] Creating AutoImportProviderProject: /dev/null/autoImportProviderProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@jest/types/index.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/autoImportProviderProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@jest/types/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@jest/types/Config.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/autoImportProviderProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms @@ -234,19 +224,14 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: *new* {} - {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} - {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/autoImportProviderProject1* (AutoImportProvider) *new* @@ -358,19 +343,14 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} - {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/autoImportProviderProject1* (AutoImportProvider) @@ -469,9 +449,6 @@ Info seq [hh:mm:ss:mss] getCompletionData: Get previous token: * Info seq [hh:mm:ss:mss] AutoImportProviderProject: found 1 root files in 1 dependencies 0 referenced projects in * ms Info seq [hh:mm:ss:mss] Creating AutoImportProviderProject: /dev/null/autoImportProviderProject2*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/autoImportProviderProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/autoImportProviderProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/autoImportProviderProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@jest/types/package.json 2000 undefined Project: /dev/null/autoImportProviderProject2* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/autoImportProviderProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/autoImportProviderProject2*' (AutoImportProvider) Info seq [hh:mm:ss:mss] Files (2) @@ -1198,45 +1175,6 @@ Info seq [hh:mm:ss:mss] response: } } After Request -watchedFiles:: -/home/src/tslibs/TS/Lib/lib.d.ts: - {"pollingInterval":500} -/home/src/tslibs/TS/Lib/lib.decorators.d.ts: - {"pollingInterval":500} -/home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts: - {"pollingInterval":500} -/home/src/workspaces/project/jsconfig.json: - {"pollingInterval":2000} -/home/src/workspaces/project/node_modules/@jest/types/Config.d.ts: - {"pollingInterval":500} -/home/src/workspaces/project/node_modules/@jest/types/index.d.ts: - {"pollingInterval":500} -/home/src/workspaces/project/node_modules/@jest/types/package.json: - {"pollingInterval":2000} - {"pollingInterval":2000} *new* -/home/src/workspaces/project/package.json: - {"pollingInterval":250} -/home/src/workspaces/project/tsconfig.json: - {"pollingInterval":2000} - -watchedDirectoriesRecursive:: -/home/src/workspaces/node_modules: - {} - {} -/home/src/workspaces/node_modules/@types: - {} - {} -/home/src/workspaces/project: - {} -/home/src/workspaces/project/node_modules: - {} - {} - {} - {} *new* -/home/src/workspaces/project/node_modules/@types: - {} - {} - Projects:: /dev/null/autoImportProviderProject1* (AutoImportProvider) projectStateVersion: 2 @@ -2226,7 +2164,6 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/project/node_modules/@jest/types/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/package.json: {"pollingInterval":250} /home/src/workspaces/project/tsconfig.json: @@ -2235,21 +2172,15 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: - {} - {} - {} {} {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/autoImportProviderProject1* (AutoImportProvider) diff --git a/tests/baselines/reference/tsserver/fourslashServer/completionsImport_sortingModuleSpecifiers.js b/tests/baselines/reference/tsserver/fourslashServer/completionsImport_sortingModuleSpecifiers.js index 87f71662a96db..a4ee0cd0388a0 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/completionsImport_sortingModuleSpecifiers.js +++ b/tests/baselines/reference/tsserver/fourslashServer/completionsImport_sortingModuleSpecifiers.js @@ -123,14 +123,6 @@ Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /tests/cases/fourslash Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, currentDirectory: /tests/cases/fourslash/server Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -192,18 +184,14 @@ watchedFiles:: watchedDirectoriesRecursive:: /tests/cases/fourslash/node_modules: *new* {} - {} /tests/cases/fourslash/node_modules/@types: *new* {} - {} /tests/cases/fourslash/server: *new* {} /tests/cases/fourslash/server/node_modules: *new* {} - {} /tests/cases/fourslash/server/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -298,18 +286,14 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /tests/cases/fourslash/node_modules: {} - {} /tests/cases/fourslash/node_modules/@types: {} - {} /tests/cases/fourslash/server: {} /tests/cases/fourslash/server/node_modules: {} - {} /tests/cases/fourslash/server/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) diff --git a/tests/baselines/reference/tsserver/fourslashServer/completionsOverridingMethodCrash2.js b/tests/baselines/reference/tsserver/fourslashServer/completionsOverridingMethodCrash2.js index 0a4c2be9cd28c..d8590e99d0491 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/completionsOverridingMethodCrash2.js +++ b/tests/baselines/reference/tsserver/fourslashServer/completionsOverridingMethodCrash2.js @@ -172,10 +172,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspa Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -245,14 +241,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -352,14 +346,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) @@ -627,14 +619,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} /home/src/workspaces/project/node_modules/@types: {} - {} ScriptInfos:: /home/src/tslibs/TS/Lib/lib.d.ts diff --git a/tests/baselines/reference/tsserver/fourslashServer/configurePlugin.js b/tests/baselines/reference/tsserver/fourslashServer/configurePlugin.js index e6aef1ab99e50..729c8bf2e690b 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/configurePlugin.js +++ b/tests/baselines/reference/tsserver/fourslashServer/configurePlugin.js @@ -122,14 +122,6 @@ Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /tests/cases/fourslash Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, currentDirectory: /tests/cases/fourslash/server Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -189,16 +181,12 @@ watchedFiles:: watchedDirectoriesRecursive:: /tests/cases/fourslash/node_modules: *new* {} - {} /tests/cases/fourslash/node_modules/@types: *new* {} - {} /tests/cases/fourslash/server/node_modules: *new* {} - {} /tests/cases/fourslash/server/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -287,16 +275,12 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /tests/cases/fourslash/node_modules: {} - {} /tests/cases/fourslash/node_modules/@types: {} - {} /tests/cases/fourslash/server/node_modules: {} - {} /tests/cases/fourslash/server/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) diff --git a/tests/baselines/reference/tsserver/fourslashServer/declarationMapGoToDefinition.js b/tests/baselines/reference/tsserver/fourslashServer/declarationMapGoToDefinition.js index b14572a848c1f..c34eb4d7a6acb 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/declarationMapGoToDefinition.js +++ b/tests/baselines/reference/tsserver/fourslashServer/declarationMapGoToDefinition.js @@ -177,14 +177,6 @@ Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferred Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server 0 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server 0 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/indexdef.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (5) @@ -253,16 +245,12 @@ watchedDirectories:: watchedDirectoriesRecursive:: /tests/cases/fourslash/node_modules: {} - {} *new* /tests/cases/fourslash/node_modules/@types: {} - {} *new* /tests/cases/fourslash/server/node_modules: {} - {} *new* /tests/cases/fourslash/server/node_modules/@types: {} - {} *new* Projects:: /dev/null/inferredProject1* (Inferred) @@ -380,16 +368,12 @@ watchedDirectories:: watchedDirectoriesRecursive:: /tests/cases/fourslash/node_modules: {} - {} /tests/cases/fourslash/node_modules/@types: {} - {} /tests/cases/fourslash/server/node_modules: {} - {} /tests/cases/fourslash/server/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) diff --git a/tests/baselines/reference/tsserver/fourslashServer/declarationMapsEnableMapping_NoInline.js b/tests/baselines/reference/tsserver/fourslashServer/declarationMapsEnableMapping_NoInline.js index 2e74634752723..51ba35205a763 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/declarationMapsEnableMapping_NoInline.js +++ b/tests/baselines/reference/tsserver/fourslashServer/declarationMapsEnableMapping_NoInline.js @@ -175,14 +175,6 @@ Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/p Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -242,16 +234,12 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: *new* {} - {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project/node_modules: *new* {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -340,16 +328,12 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) @@ -452,14 +436,6 @@ Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferred Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/dist 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/dist 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/dist/index.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (5) @@ -530,22 +506,14 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} - {} *new* /home/src/workspaces/project/dist: *new* {} /home/src/workspaces/project/node_modules: {} - {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} - {} *new* Projects:: /dev/null/inferredProject1* (Inferred) @@ -657,22 +625,14 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} - {} /home/src/workspaces/node_modules/@types: {} - {} - {} /home/src/workspaces/project/dist: {} /home/src/workspaces/project/node_modules: {} - {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} - {} Projects:: /dev/null/inferredProject1* (Inferred) diff --git a/tests/baselines/reference/tsserver/fourslashServer/declarationMapsEnableMapping_NoInlineSources.js b/tests/baselines/reference/tsserver/fourslashServer/declarationMapsEnableMapping_NoInlineSources.js index 8c4df75e433fc..a2e483a8d7c74 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/declarationMapsEnableMapping_NoInlineSources.js +++ b/tests/baselines/reference/tsserver/fourslashServer/declarationMapsEnableMapping_NoInlineSources.js @@ -177,14 +177,6 @@ Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/p Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -244,16 +236,12 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: *new* {} - {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project/node_modules: *new* {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -342,16 +330,12 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) @@ -454,14 +438,6 @@ Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferred Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/dist 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/dist 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/dist/index.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (5) @@ -532,22 +508,14 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} - {} *new* /home/src/workspaces/project/dist: *new* {} /home/src/workspaces/project/node_modules: {} - {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} - {} *new* Projects:: /dev/null/inferredProject1* (Inferred) @@ -659,22 +627,14 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} - {} /home/src/workspaces/node_modules/@types: {} - {} - {} /home/src/workspaces/project/dist: {} /home/src/workspaces/project/node_modules: {} - {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} - {} Projects:: /dev/null/inferredProject1* (Inferred) diff --git a/tests/baselines/reference/tsserver/fourslashServer/declarationMapsGeneratedMapsEnableMapping.js b/tests/baselines/reference/tsserver/fourslashServer/declarationMapsGeneratedMapsEnableMapping.js index e18b93458d3a1..6092c42f040dc 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/declarationMapsGeneratedMapsEnableMapping.js +++ b/tests/baselines/reference/tsserver/fourslashServer/declarationMapsGeneratedMapsEnableMapping.js @@ -173,14 +173,6 @@ Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/p Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -240,16 +232,12 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: *new* {} - {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project/node_modules: *new* {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -338,16 +326,12 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) @@ -450,14 +434,6 @@ Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferred Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/dist 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/dist 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/dist/index.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (5) @@ -528,22 +504,14 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} - {} *new* /home/src/workspaces/project/dist: *new* {} /home/src/workspaces/project/node_modules: {} - {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} - {} *new* Projects:: /dev/null/inferredProject1* (Inferred) @@ -655,22 +623,14 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} - {} /home/src/workspaces/node_modules/@types: {} - {} - {} /home/src/workspaces/project/dist: {} /home/src/workspaces/project/node_modules: {} - {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} - {} Projects:: /dev/null/inferredProject1* (Inferred) diff --git a/tests/baselines/reference/tsserver/fourslashServer/declarationMapsGeneratedMapsEnableMapping2.js b/tests/baselines/reference/tsserver/fourslashServer/declarationMapsGeneratedMapsEnableMapping2.js index 702e25155ee76..547877e901823 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/declarationMapsGeneratedMapsEnableMapping2.js +++ b/tests/baselines/reference/tsserver/fourslashServer/declarationMapsGeneratedMapsEnableMapping2.js @@ -180,14 +180,6 @@ Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/p Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -247,16 +239,12 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: *new* {} - {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project/node_modules: *new* {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -345,16 +333,12 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) @@ -462,14 +446,6 @@ Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferred Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/dist 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/dist 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/dist/index.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (5) @@ -540,22 +516,14 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} - {} *new* /home/src/workspaces/project/dist: *new* {} /home/src/workspaces/project/node_modules: {} - {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} - {} *new* Projects:: /dev/null/inferredProject1* (Inferred) @@ -667,22 +635,14 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} - {} /home/src/workspaces/node_modules/@types: {} - {} - {} /home/src/workspaces/project/dist: {} /home/src/workspaces/project/node_modules: {} - {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} - {} Projects:: /dev/null/inferredProject1* (Inferred) diff --git a/tests/baselines/reference/tsserver/fourslashServer/declarationMapsGeneratedMapsEnableMapping3.js b/tests/baselines/reference/tsserver/fourslashServer/declarationMapsGeneratedMapsEnableMapping3.js index f25d0dd6d4728..94b1f330fdc11 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/declarationMapsGeneratedMapsEnableMapping3.js +++ b/tests/baselines/reference/tsserver/fourslashServer/declarationMapsGeneratedMapsEnableMapping3.js @@ -190,14 +190,6 @@ Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/p Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -257,16 +249,12 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: *new* {} - {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project/node_modules: *new* {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -355,16 +343,12 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) @@ -482,14 +466,6 @@ Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferred Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/dist 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/dist 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/dist/index.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (5) @@ -560,22 +536,14 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} - {} *new* /home/src/workspaces/project/dist: *new* {} /home/src/workspaces/project/node_modules: {} - {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} - {} *new* Projects:: /dev/null/inferredProject1* (Inferred) @@ -687,22 +655,14 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} - {} /home/src/workspaces/node_modules/@types: {} - {} - {} /home/src/workspaces/project/dist: {} /home/src/workspaces/project/node_modules: {} - {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} - {} Projects:: /dev/null/inferredProject1* (Inferred) diff --git a/tests/baselines/reference/tsserver/fourslashServer/declarationMapsGoToDefinitionRelativeSourceRoot.js b/tests/baselines/reference/tsserver/fourslashServer/declarationMapsGoToDefinitionRelativeSourceRoot.js index 7c39e913459ab..37292880cfe4a 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/declarationMapsGoToDefinitionRelativeSourceRoot.js +++ b/tests/baselines/reference/tsserver/fourslashServer/declarationMapsGoToDefinitionRelativeSourceRoot.js @@ -177,14 +177,6 @@ Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferred Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/out 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/out 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/out/indexdef.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (5) @@ -249,16 +241,12 @@ watchedFiles:: watchedDirectoriesRecursive:: /tests/cases/fourslash/node_modules: {} - {} *new* /tests/cases/fourslash/node_modules/@types: {} - {} *new* /tests/cases/fourslash/server/node_modules: {} - {} *new* /tests/cases/fourslash/server/node_modules/@types: {} - {} *new* /tests/cases/fourslash/server/out: *new* {} @@ -374,16 +362,12 @@ watchedFiles:: watchedDirectoriesRecursive:: /tests/cases/fourslash/node_modules: {} - {} /tests/cases/fourslash/node_modules/@types: {} - {} /tests/cases/fourslash/server/node_modules: {} - {} /tests/cases/fourslash/server/node_modules/@types: {} - {} /tests/cases/fourslash/server/out: {} diff --git a/tests/baselines/reference/tsserver/fourslashServer/declarationMapsGoToDefinitionSameNameDifferentDirectory.js b/tests/baselines/reference/tsserver/fourslashServer/declarationMapsGoToDefinitionSameNameDifferentDirectory.js index 5d332bc53c62e..7742002d9a107 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/declarationMapsGoToDefinitionSameNameDifferentDirectory.js +++ b/tests/baselines/reference/tsserver/fourslashServer/declarationMapsGoToDefinitionSameNameDifferentDirectory.js @@ -238,16 +238,8 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /tests/cases/fourslash Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /tests/cases/fourslash/server/buttonClass/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/buttonClass/node_modules 1 undefined Project: /tests/cases/fourslash/server/buttonClass/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/buttonClass/node_modules 1 undefined Project: /tests/cases/fourslash/server/buttonClass/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /tests/cases/fourslash/server/buttonClass/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /tests/cases/fourslash/server/buttonClass/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /tests/cases/fourslash/server/buttonClass/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /tests/cases/fourslash/server/buttonClass/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/buttonClass/node_modules/@types 1 undefined Project: /tests/cases/fourslash/server/buttonClass/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/buttonClass/node_modules/@types 1 undefined Project: /tests/cases/fourslash/server/buttonClass/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /tests/cases/fourslash/server/buttonClass/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /tests/cases/fourslash/server/buttonClass/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /tests/cases/fourslash/server/buttonClass/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /tests/cases/fourslash/server/buttonClass/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /tests/cases/fourslash/server/buttonClass/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/tests/cases/fourslash/server/buttonClass/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (5) @@ -309,18 +301,8 @@ Info seq [hh:mm:ss:mss] Files (4) Root file specified for compilation Info seq [hh:mm:ss:mss] ----------------------------------------------- -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/server/BaseClass/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/server/BaseClass/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/server/BaseClass/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/server/BaseClass/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/tests/cases/fourslash/server/buttonClass/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (5) @@ -366,31 +348,23 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /tests/cases/fourslash/node_modules: - {} *new* + {} /tests/cases/fourslash/node_modules/@types: - {} *new* + {} +/tests/cases/fourslash/server/BaseClass/node_modules: + {} /tests/cases/fourslash/server/buttonClass/node_modules: *new* {} /tests/cases/fourslash/server/buttonClass/node_modules/@types: *new* {} /tests/cases/fourslash/server/node_modules: - {} *new* + {} /tests/cases/fourslash/server/node_modules/@types: - {} *new* + {} watchedDirectoriesRecursive *deleted*:: -/tests/cases/fourslash/node_modules: - {} -/tests/cases/fourslash/node_modules/@types: - {} -/tests/cases/fourslash/server/BaseClass/node_modules: - {} /tests/cases/fourslash/server/BaseClass/node_modules/@types: {} -/tests/cases/fourslash/server/node_modules: - {} -/tests/cases/fourslash/server/node_modules/@types: - {} Projects:: /dev/null/inferredProject1* (Inferred) *deleted* @@ -507,6 +481,8 @@ watchedDirectoriesRecursive:: {} /tests/cases/fourslash/node_modules/@types: {} +/tests/cases/fourslash/server/BaseClass/node_modules: + {} /tests/cases/fourslash/server/buttonClass/node_modules: {} /tests/cases/fourslash/server/buttonClass/node_modules/@types: diff --git a/tests/baselines/reference/tsserver/fourslashServer/declarationMapsOutOfDateMapping.js b/tests/baselines/reference/tsserver/fourslashServer/declarationMapsOutOfDateMapping.js index 2d9194193dc1b..612d534b0a460 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/declarationMapsOutOfDateMapping.js +++ b/tests/baselines/reference/tsserver/fourslashServer/declarationMapsOutOfDateMapping.js @@ -194,16 +194,6 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/a/package.json 2000 undefined Project: /dev/null/inferredProject2* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/a/dist/package.json 2000 undefined Project: /dev/null/inferredProject2* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (5) @@ -251,24 +241,12 @@ Info seq [hh:mm:ss:mss] Files (4) Root file specified for compilation Info seq [hh:mm:ss:mss] ----------------------------------------------- -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/a/dist/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/a/dist/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/a/dist/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/a/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/a/dist/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/a/dist/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (5) @@ -300,23 +278,19 @@ watchedFiles:: /home/src/workspaces/project/jsconfig.json: *new* {"pollingInterval":2000} /home/src/workspaces/project/node_modules/a/dist/package.json: - {"pollingInterval":2000} *new* + {"pollingInterval":2000} /home/src/workspaces/project/node_modules/a/package.json: - {"pollingInterval":2000} *new* + {"pollingInterval":2000} /home/src/workspaces/project/tsconfig.json: *new* {"pollingInterval":2000} watchedFiles *deleted*:: /home/src/workspaces/project/node_modules/a/dist/jsconfig.json: {"pollingInterval":2000} -/home/src/workspaces/project/node_modules/a/dist/package.json: - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/a/dist/tsconfig.json: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/a/jsconfig.json: {"pollingInterval":2000} -/home/src/workspaces/project/node_modules/a/package.json: - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/a/tsconfig.json: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/jsconfig.json: @@ -325,16 +299,6 @@ watchedFiles *deleted*:: {"pollingInterval":2000} watchedDirectoriesRecursive:: -/home/src/workspaces/node_modules: - {} *new* -/home/src/workspaces/node_modules/@types: - {} *new* -/home/src/workspaces/project/node_modules: - {} *new* -/home/src/workspaces/project/node_modules/@types: - {} *new* - -watchedDirectoriesRecursive *deleted*:: /home/src/workspaces/node_modules: {} /home/src/workspaces/node_modules/@types: @@ -345,6 +309,8 @@ watchedDirectoriesRecursive *deleted*:: {} /home/src/workspaces/project/node_modules/a/dist/node_modules: {} + +watchedDirectoriesRecursive *deleted*:: /home/src/workspaces/project/node_modules/a/dist/node_modules/@types: {} /home/src/workspaces/project/node_modules/a/node_modules/@types: @@ -462,6 +428,8 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/project/node_modules/@types: {} +/home/src/workspaces/project/node_modules/a/dist/node_modules: + {} Projects:: /dev/null/inferredProject2* (Inferred) *changed* diff --git a/tests/baselines/reference/tsserver/fourslashServer/documentHighlights02.js b/tests/baselines/reference/tsserver/fourslashServer/documentHighlights02.js index 340111efb0226..ab5a823ce87d6 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/documentHighlights02.js +++ b/tests/baselines/reference/tsserver/fourslashServer/documentHighlights02.js @@ -167,14 +167,6 @@ Info seq [hh:mm:ss:mss] request: Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /tests/cases/fourslash/server/b.ts ProjectRootPath: undefined:: Result: undefined Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, currentDirectory: /tests/cases/fourslash/server Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (5) @@ -216,14 +208,6 @@ Info seq [hh:mm:ss:mss] Files (4) Root file specified for compilation Info seq [hh:mm:ss:mss] ----------------------------------------------- -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (5) @@ -245,38 +229,6 @@ Info seq [hh:mm:ss:mss] response: } } After Request -watchedFiles:: -/home/src/tslibs/TS/Lib/lib.d.ts: - {"pollingInterval":500} -/home/src/tslibs/TS/Lib/lib.decorators.d.ts: - {"pollingInterval":500} -/home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts: - {"pollingInterval":500} -/tests/cases/fourslash/server/jsconfig.json: - {"pollingInterval":2000} -/tests/cases/fourslash/server/tsconfig.json: - {"pollingInterval":2000} - -watchedDirectoriesRecursive:: -/tests/cases/fourslash/node_modules: - {} *new* -/tests/cases/fourslash/node_modules/@types: - {} *new* -/tests/cases/fourslash/server/node_modules: - {} *new* -/tests/cases/fourslash/server/node_modules/@types: - {} *new* - -watchedDirectoriesRecursive *deleted*:: -/tests/cases/fourslash/node_modules: - {} -/tests/cases/fourslash/node_modules/@types: - {} -/tests/cases/fourslash/server/node_modules: - {} -/tests/cases/fourslash/server/node_modules/@types: - {} - Projects:: /dev/null/inferredProject1* (Inferred) *deleted* projectStateVersion: 2 *changed* diff --git a/tests/baselines/reference/tsserver/fourslashServer/getFileReferences_deduplicate.js b/tests/baselines/reference/tsserver/fourslashServer/getFileReferences_deduplicate.js index 14ab51d0e2e21..9567b9cefc279 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/getFileReferences_deduplicate.js +++ b/tests/baselines/reference/tsserver/fourslashServer/getFileReferences_deduplicate.js @@ -247,14 +247,6 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.utils.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.utils.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.utils.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.utils.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.utils.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.utils.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.utils.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.utils.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.utils.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.utils.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.utils.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) @@ -347,38 +339,6 @@ Info seq [hh:mm:ss:mss] response: } } After Request -watchedFiles:: -/home/src/tslibs/TS/Lib/lib.d.ts: - {"pollingInterval":500} -/home/src/tslibs/TS/Lib/lib.decorators.d.ts: - {"pollingInterval":500} -/home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts: - {"pollingInterval":500} -/home/src/workspaces/project/jsconfig.json: - {"pollingInterval":2000} -/home/src/workspaces/project/tsconfig.build.json: - {"pollingInterval":2000} -/home/src/workspaces/project/tsconfig.json: - {"pollingInterval":2000} -/home/src/workspaces/project/tsconfig.test.json: - {"pollingInterval":2000} -/home/src/workspaces/project/tsconfig.utils.json: - {"pollingInterval":2000} - -watchedDirectoriesRecursive:: -/home/src/workspaces/node_modules: - {} - {} *new* -/home/src/workspaces/node_modules/@types: - {} - {} *new* -/home/src/workspaces/project/node_modules: - {} - {} *new* -/home/src/workspaces/project/node_modules/@types: - {} - {} *new* - Projects:: /dev/null/inferredProject1* (Inferred) projectStateVersion: 1 @@ -441,10 +401,6 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (0) @@ -483,14 +439,6 @@ Info seq [hh:mm:ss:mss] event: } Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/index.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.build.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.build.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.build.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.build.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.build.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.build.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.build.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.build.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.build.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.build.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.build.json' (Configured) Info seq [hh:mm:ss:mss] Files (5) @@ -570,14 +518,6 @@ Info seq [hh:mm:ss:mss] event: } Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/test.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.test.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.test.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.test.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.test.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.test.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.test.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.test.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.test.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.test.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.test.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.test.json' (Configured) Info seq [hh:mm:ss:mss] Files (6) @@ -757,26 +697,12 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} - {} *new* - {} *new* /home/src/workspaces/node_modules/@types: {} - {} - {} *new* - {} *new* - {} *new* /home/src/workspaces/project/node_modules: {} - {} - {} *new* - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} - {} *new* - {} *new* - {} *new* Projects:: /dev/null/inferredProject1* (Inferred) diff --git a/tests/baselines/reference/tsserver/fourslashServer/getFileReferences_server1.js b/tests/baselines/reference/tsserver/fourslashServer/getFileReferences_server1.js index 8ce492fc06052..37c6f6335798d 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/getFileReferences_server1.js +++ b/tests/baselines/reference/tsserver/fourslashServer/getFileReferences_server1.js @@ -134,14 +134,6 @@ Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/p Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -207,18 +199,14 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: *new* {} - {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -325,18 +313,14 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) diff --git a/tests/baselines/reference/tsserver/fourslashServer/getFileReferences_server2.js b/tests/baselines/reference/tsserver/fourslashServer/getFileReferences_server2.js index 371f3ff8d4667..7f5482119f6ca 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/getFileReferences_server2.js +++ b/tests/baselines/reference/tsserver/fourslashServer/getFileReferences_server2.js @@ -263,22 +263,12 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/packages/shared/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/shared/node_modules 1 undefined Project: /home/src/workspaces/project/packages/shared/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/shared/node_modules 1 undefined Project: /home/src/workspaces/project/packages/shared/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules 1 undefined Project: /home/src/workspaces/project/packages/shared/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules 1 undefined Project: /home/src/workspaces/project/packages/shared/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/packages/shared/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/packages/shared/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/packages/shared/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/packages/shared/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages 1 undefined Project: /home/src/workspaces/project/packages/shared/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages 1 undefined Project: /home/src/workspaces/project/packages/shared/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/shared/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/shared/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/shared/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/shared/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/shared/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/shared/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/shared/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/shared/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/shared/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/shared/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/packages/shared/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/packages/shared/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) @@ -369,19 +359,15 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} *new* /home/src/workspaces/project/node_modules: {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} *new* -/home/src/workspaces/project/packages/client: +/home/src/workspaces/project/packages: *new* {} -/home/src/workspaces/project/packages/node_modules: *new* +/home/src/workspaces/project/packages/client: {} /home/src/workspaces/project/packages/node_modules/@types: *new* {} @@ -389,8 +375,6 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/project/packages/shared: {} -/home/src/workspaces/project/packages/shared/node_modules: *new* - {} /home/src/workspaces/project/packages/shared/node_modules/@types: *new* {} @@ -456,10 +440,6 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (0) @@ -501,22 +481,8 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/p Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/packages/server/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/shared 1 undefined Project: /home/src/workspaces/project/packages/server/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/shared 1 undefined Project: /home/src/workspaces/project/packages/server/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/server/node_modules 1 undefined Project: /home/src/workspaces/project/packages/server/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/server/node_modules 1 undefined Project: /home/src/workspaces/project/packages/server/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules 1 undefined Project: /home/src/workspaces/project/packages/server/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules 1 undefined Project: /home/src/workspaces/project/packages/server/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/packages/server/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/packages/server/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/packages/server/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/packages/server/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/server/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/server/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/server/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/server/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/server/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/server/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/server/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/server/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/server/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/server/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/packages/server/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/packages/server/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (6) @@ -587,22 +553,8 @@ Info seq [hh:mm:ss:mss] event: } Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/client/index.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/packages/client/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/client/node_modules 1 undefined Project: /home/src/workspaces/project/packages/client/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/client/node_modules 1 undefined Project: /home/src/workspaces/project/packages/client/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules 1 undefined Project: /home/src/workspaces/project/packages/client/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules 1 undefined Project: /home/src/workspaces/project/packages/client/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/packages/client/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/packages/client/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/packages/client/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/packages/client/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/client/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/client/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/client/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/client/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/client/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/client/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/client/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/client/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/client/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/client/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/packages/client/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/packages/client/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (5) @@ -754,51 +706,27 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} - {} *new* - {} *new* /home/src/workspaces/node_modules/@types: {} - {} - {} *new* - {} *new* - {} *new* /home/src/workspaces/project/node_modules: {} - {} - {} *new* - {} *new* /home/src/workspaces/project/node_modules/@types: {} +/home/src/workspaces/project/packages: {} - {} *new* - {} *new* - {} *new* /home/src/workspaces/project/packages/client: {} -/home/src/workspaces/project/packages/client/node_modules: *new* - {} /home/src/workspaces/project/packages/client/node_modules/@types: *new* {} -/home/src/workspaces/project/packages/node_modules: - {} - {} *new* - {} *new* /home/src/workspaces/project/packages/node_modules/@types: {} - {} *new* - {} *new* /home/src/workspaces/project/packages/server: {} -/home/src/workspaces/project/packages/server/node_modules: *new* - {} /home/src/workspaces/project/packages/server/node_modules/@types: *new* {} /home/src/workspaces/project/packages/shared: {} {} *new* -/home/src/workspaces/project/packages/shared/node_modules: - {} /home/src/workspaces/project/packages/shared/node_modules/@types: {} diff --git a/tests/baselines/reference/tsserver/fourslashServer/goToDefinitionScriptImportServer.js b/tests/baselines/reference/tsserver/fourslashServer/goToDefinitionScriptImportServer.js index bb1b437f76a0d..02198d2c946af 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/goToDefinitionScriptImportServer.js +++ b/tests/baselines/reference/tsserver/fourslashServer/goToDefinitionScriptImportServer.js @@ -146,20 +146,12 @@ Info seq [hh:mm:ss:mss] request: Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/project/moduleThing.ts ProjectRootPath: undefined:: Result: undefined Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/stylez.css 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/stylez.css 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/stylez.css 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/stylez.css 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/foo.txt 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/foo.txt 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (5) @@ -201,14 +193,6 @@ Info seq [hh:mm:ss:mss] Files (4) Root file specified for compilation Info seq [hh:mm:ss:mss] ----------------------------------------------- -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (5) @@ -247,28 +231,18 @@ watchedDirectories:: {} watchedDirectoriesRecursive:: -/home/src/workspaces/node_modules: - {} *new* -/home/src/workspaces/node_modules/@types: - {} *new* -/home/src/workspaces/project/foo.txt: *new* - {} -/home/src/workspaces/project/node_modules: - {} *new* -/home/src/workspaces/project/node_modules/@types: - {} *new* -/home/src/workspaces/project/stylez.css: *new* - {} - -watchedDirectoriesRecursive *deleted*:: /home/src/workspaces/node_modules: {} /home/src/workspaces/node_modules/@types: {} +/home/src/workspaces/project/foo.txt: *new* + {} /home/src/workspaces/project/node_modules: {} /home/src/workspaces/project/node_modules/@types: {} +/home/src/workspaces/project/stylez.css: *new* + {} Projects:: /dev/null/inferredProject1* (Inferred) *deleted* diff --git a/tests/baselines/reference/tsserver/fourslashServer/goToSource10_mapFromAtTypes3.js b/tests/baselines/reference/tsserver/fourslashServer/goToSource10_mapFromAtTypes3.js index b80055fd5ebfb..4f5ab6ff84d2c 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/goToSource10_mapFromAtTypes3.js +++ b/tests/baselines/reference/tsserver/fourslashServer/goToSource10_mapFromAtTypes3.js @@ -228,16 +228,7 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/lodash/package.json 2000 undefined Project: /dev/null/inferredProject2* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/lodash/package.json 2000 undefined Project: /dev/null/inferredProject2* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (5) @@ -299,7 +290,6 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/project/node_modules/@types/lodash/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} *new* /home/src/workspaces/project/node_modules/jsconfig.json: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/lodash/jsconfig.json: @@ -316,16 +306,12 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} *new* /home/src/workspaces/project/node_modules: {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} *new* /home/src/workspaces/project/node_modules/lodash/node_modules: {} /home/src/workspaces/project/node_modules/lodash/node_modules/@types: @@ -386,11 +372,6 @@ Info seq [hh:mm:ss:mss] request: Info seq [hh:mm:ss:mss] Creating AuxiliaryProject: /dev/null/auxiliaryProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/auxiliaryProject1* Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/lodash/lodash.js 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/lodash/package.json 2000 undefined Project: /dev/null/auxiliaryProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/auxiliaryProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/auxiliaryProject1*' (Auxiliary) Info seq [hh:mm:ss:mss] Files (2) @@ -471,7 +452,6 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/project/node_modules/@types/lodash/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/jsconfig.json: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/lodash/jsconfig.json: @@ -480,7 +460,6 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/project/node_modules/lodash/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} *new* /home/src/workspaces/project/node_modules/lodash/tsconfig.json: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/tsconfig.json: @@ -491,18 +470,12 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules: {} - {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules/lodash/node_modules: {} /home/src/workspaces/project/node_modules/lodash/node_modules/@types: diff --git a/tests/baselines/reference/tsserver/fourslashServer/goToSource11_propertyOfAlias.js b/tests/baselines/reference/tsserver/fourslashServer/goToSource11_propertyOfAlias.js index 36a4d4386b20a..eca190802575d 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/goToSource11_propertyOfAlias.js +++ b/tests/baselines/reference/tsserver/fourslashServer/goToSource11_propertyOfAlias.js @@ -146,14 +146,6 @@ Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferred Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/a.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (5) @@ -222,16 +214,12 @@ watchedDirectories:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} *new* /home/src/workspaces/project/node_modules: {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} *new* Projects:: /dev/null/inferredProject1* (Inferred) @@ -287,8 +275,6 @@ Info seq [hh:mm:ss:mss] Creating AuxiliaryProject: /dev/null/auxiliaryProject1* Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/auxiliaryProject1* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/a 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/a 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/auxiliaryProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/auxiliaryProject1*' (Auxiliary) Info seq [hh:mm:ss:mss] Files (2) @@ -352,23 +338,18 @@ watchedFiles:: watchedDirectories:: /home/src/workspaces/project: {} - {} *new* watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/a: *new* {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/auxiliaryProject1* (Auxiliary) *new* diff --git a/tests/baselines/reference/tsserver/fourslashServer/goToSource12_callbackParam.js b/tests/baselines/reference/tsserver/fourslashServer/goToSource12_callbackParam.js index f116c4da55c9a..3cddd61989cd8 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/goToSource12_callbackParam.js +++ b/tests/baselines/reference/tsserver/fourslashServer/goToSource12_callbackParam.js @@ -202,16 +202,7 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/yargs/package.json 2000 undefined Project: /dev/null/inferredProject2* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/yargs/package.json 2000 undefined Project: /dev/null/inferredProject2* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (5) @@ -279,7 +270,6 @@ watchedFiles:: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/yargs/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} *new* /home/src/workspaces/project/node_modules/@types/yargs/tsconfig.json: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/jsconfig.json: @@ -294,16 +284,12 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} *new* /home/src/workspaces/project/node_modules: {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} *new* /home/src/workspaces/project/node_modules/@types/node_modules/@types: {} /home/src/workspaces/project/node_modules/@types/yargs/node_modules: @@ -366,11 +352,6 @@ Info seq [hh:mm:ss:mss] request: Info seq [hh:mm:ss:mss] Creating AuxiliaryProject: /dev/null/auxiliaryProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/auxiliaryProject1* Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/yargs/index.js 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/yargs/package.json 2000 undefined Project: /dev/null/auxiliaryProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/auxiliaryProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/auxiliaryProject1*' (Auxiliary) Info seq [hh:mm:ss:mss] Files (2) @@ -437,7 +418,6 @@ watchedFiles:: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/yargs/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/yargs/tsconfig.json: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/jsconfig.json: @@ -448,25 +428,18 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/project/node_modules/yargs/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} *new* /home/src/workspaces/project/tsconfig.json: {"pollingInterval":2000} watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules: {} - {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules/@types/node_modules/@types: {} /home/src/workspaces/project/node_modules/@types/yargs/node_modules: diff --git a/tests/baselines/reference/tsserver/fourslashServer/goToSource13_nodenext.js b/tests/baselines/reference/tsserver/fourslashServer/goToSource13_nodenext.js index b8a272270516a..c39a375c4a083 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/goToSource13_nodenext.js +++ b/tests/baselines/reference/tsserver/fourslashServer/goToSource13_nodenext.js @@ -206,19 +206,13 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 1 undefined Config: /home/src/workspaces/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 1 undefined Config: /home/src/workspaces/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/left-pad/index.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/left-pad/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/left-pad/index.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.es2022.full.d.ts 500 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Missing file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -369,15 +363,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: {} - {} *new* /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} *new* /home/src/workspaces/project/node_modules/left-pad/node_modules: {} /home/src/workspaces/project/node_modules/left-pad/node_modules/@types: @@ -434,15 +425,6 @@ Info seq [hh:mm:ss:mss] request: Info seq [hh:mm:ss:mss] Creating AuxiliaryProject: /dev/null/auxiliaryProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/auxiliaryProject1* Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/left-pad/index.js 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces 0 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces 0 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/left-pad/package.json 2000 undefined Project: /dev/null/auxiliaryProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/auxiliaryProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/auxiliaryProject1*' (Auxiliary) Info seq [hh:mm:ss:mss] Files (2) @@ -509,7 +491,6 @@ watchedFiles:: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/left-pad/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} *new* /home/src/workspaces/project/node_modules/left-pad/tsconfig.json: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/tsconfig.json: @@ -520,27 +501,20 @@ watchedFiles:: watchedDirectories:: /home/src/workspaces: {} - {} *new* /home/src/workspaces/project: {} - {} *new* watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} - {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules/left-pad/node_modules: {} /home/src/workspaces/project/node_modules/left-pad/node_modules/@types: diff --git a/tests/baselines/reference/tsserver/fourslashServer/goToSource14_unresolvedRequireDestructuring.js b/tests/baselines/reference/tsserver/fourslashServer/goToSource14_unresolvedRequireDestructuring.js index 85f8a44a74efb..13a3d2442a025 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/goToSource14_unresolvedRequireDestructuring.js +++ b/tests/baselines/reference/tsserver/fourslashServer/goToSource14_unresolvedRequireDestructuring.js @@ -29,11 +29,11 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots @@ -137,10 +137,6 @@ Info seq [hh:mm:ss:mss] request: } Info seq [hh:mm:ss:mss] Creating AuxiliaryProject: /dev/null/auxiliaryProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/auxiliaryProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/auxiliaryProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/auxiliaryProject1*' (Auxiliary) Info seq [hh:mm:ss:mss] Files (1) @@ -164,30 +160,6 @@ Info seq [hh:mm:ss:mss] response: "body": [] } After Request -watchedFiles:: -/home/src/tslibs/TS/Lib/lib.d.ts: - {"pollingInterval":500} -/home/src/tslibs/TS/Lib/lib.decorators.d.ts: - {"pollingInterval":500} -/home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts: - {"pollingInterval":500} -/home/src/workspaces/project/jsconfig.json: - {"pollingInterval":2000} -/home/src/workspaces/project/tsconfig.json: - {"pollingInterval":2000} - -watchedDirectoriesRecursive:: -/home/src/workspaces/node_modules: - {} - {} *new* -/home/src/workspaces/node_modules/@types: - {} -/home/src/workspaces/project/node_modules: - {} - {} *new* -/home/src/workspaces/project/node_modules/@types: - {} - Projects:: /dev/null/auxiliaryProject1* (Auxiliary) *new* projectStateVersion: 1 diff --git a/tests/baselines/reference/tsserver/fourslashServer/goToSource15_bundler.js b/tests/baselines/reference/tsserver/fourslashServer/goToSource15_bundler.js index 10109b898a1dc..0cacc58a9dde8 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/goToSource15_bundler.js +++ b/tests/baselines/reference/tsserver/fourslashServer/goToSource15_bundler.js @@ -79,18 +79,18 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspa Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 1 undefined Config: /home/src/workspaces/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/index.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/react/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/react/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots @@ -138,14 +138,6 @@ Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/p Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -213,18 +205,14 @@ watchedDirectories:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: *new* {} - {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -321,18 +309,14 @@ watchedDirectories:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) @@ -384,17 +368,8 @@ Info seq [hh:mm:ss:mss] request: Info seq [hh:mm:ss:mss] Creating AuxiliaryProject: /dev/null/auxiliaryProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/auxiliaryProject1* Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/react/index.js 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/react/package.json 2000 undefined Project: /dev/null/auxiliaryProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/react/cjs/react.production.min.js 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/react/cjs/react.development.js 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces 0 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces 0 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/react/cjs/package.json 2000 undefined Project: /dev/null/auxiliaryProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/auxiliaryProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/auxiliaryProject1*' (Auxiliary) @@ -486,35 +461,26 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/project/node_modules/react/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} *new* /home/src/workspaces/project/tsconfig.json: {"pollingInterval":2000} watchedDirectories:: /home/src/workspaces: {} - {} *new* /home/src/workspaces/project: {} - {} *new* watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} - {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/auxiliaryProject1* (Auxiliary) *new* diff --git a/tests/baselines/reference/tsserver/fourslashServer/goToSource16_callbackParamDifferentFile.js b/tests/baselines/reference/tsserver/fourslashServer/goToSource16_callbackParamDifferentFile.js index 8fef89c16d993..1fc1fad67647c 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/goToSource16_callbackParamDifferentFile.js +++ b/tests/baselines/reference/tsserver/fourslashServer/goToSource16_callbackParamDifferentFile.js @@ -225,16 +225,7 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/yargs/package.json 2000 undefined Project: /dev/null/inferredProject2* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/yargs/package.json 2000 undefined Project: /dev/null/inferredProject2* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (6) @@ -307,7 +298,6 @@ watchedFiles:: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/yargs/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} *new* /home/src/workspaces/project/node_modules/@types/yargs/tsconfig.json: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/jsconfig.json: @@ -326,16 +316,12 @@ watchedDirectories:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} *new* /home/src/workspaces/project/node_modules: {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} *new* /home/src/workspaces/project/node_modules/@types/node_modules/@types: {} /home/src/workspaces/project/node_modules/@types/yargs/node_modules: @@ -403,12 +389,7 @@ Info seq [hh:mm:ss:mss] request: Info seq [hh:mm:ss:mss] Creating AuxiliaryProject: /dev/null/auxiliaryProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/auxiliaryProject1* Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/yargs/index.js 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/yargs/package.json 2000 undefined Project: /dev/null/auxiliaryProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/yargs/callback.js 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/auxiliaryProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/auxiliaryProject1*' (Auxiliary) Info seq [hh:mm:ss:mss] Files (3) @@ -480,7 +461,6 @@ watchedFiles:: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/yargs/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/yargs/tsconfig.json: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/jsconfig.json: @@ -493,7 +473,6 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/project/node_modules/yargs/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} *new* /home/src/workspaces/project/tsconfig.json: {"pollingInterval":2000} @@ -504,18 +483,12 @@ watchedDirectories:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules: {} - {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules/@types/node_modules/@types: {} /home/src/workspaces/project/node_modules/@types/yargs/node_modules: diff --git a/tests/baselines/reference/tsserver/fourslashServer/goToSource17_AddsFileToProject.js b/tests/baselines/reference/tsserver/fourslashServer/goToSource17_AddsFileToProject.js index cfdf31184494c..68b17ef1ae949 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/goToSource17_AddsFileToProject.js +++ b/tests/baselines/reference/tsserver/fourslashServer/goToSource17_AddsFileToProject.js @@ -225,16 +225,7 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/yargs/package.json 2000 undefined Project: /dev/null/inferredProject2* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/yargs/package.json 2000 undefined Project: /dev/null/inferredProject2* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (6) @@ -307,7 +298,6 @@ watchedFiles:: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/yargs/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} *new* /home/src/workspaces/project/node_modules/@types/yargs/tsconfig.json: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/jsconfig.json: @@ -326,16 +316,12 @@ watchedDirectories:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} *new* /home/src/workspaces/project/node_modules: {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} *new* /home/src/workspaces/project/node_modules/@types/node_modules/@types: {} /home/src/workspaces/project/node_modules/@types/yargs/node_modules: @@ -403,11 +389,6 @@ Info seq [hh:mm:ss:mss] request: Info seq [hh:mm:ss:mss] Creating AuxiliaryProject: /dev/null/auxiliaryProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/auxiliaryProject1* Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/yargs/index.js 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/yargs/package.json 2000 undefined Project: /dev/null/auxiliaryProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/auxiliaryProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/auxiliaryProject1*' (Auxiliary) Info seq [hh:mm:ss:mss] Files (2) @@ -494,7 +475,6 @@ watchedFiles:: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/yargs/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/yargs/tsconfig.json: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/jsconfig.json: @@ -507,7 +487,6 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/project/node_modules/yargs/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} *new* /home/src/workspaces/project/tsconfig.json: {"pollingInterval":2000} @@ -518,18 +497,12 @@ watchedDirectories:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules: {} - {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules/@types/node_modules/@types: {} /home/src/workspaces/project/node_modules/@types/yargs/node_modules: diff --git a/tests/baselines/reference/tsserver/fourslashServer/goToSource18_reusedFromDifferentFolder.js b/tests/baselines/reference/tsserver/fourslashServer/goToSource18_reusedFromDifferentFolder.js index 057fc91adeb3c..959762fbf81fc 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/goToSource18_reusedFromDifferentFolder.js +++ b/tests/baselines/reference/tsserver/fourslashServer/goToSource18_reusedFromDifferentFolder.js @@ -231,23 +231,14 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/p Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/folder/random.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/yargs/package.json 2000 undefined Project: /dev/null/inferredProject2* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/some/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/some/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/yargs/package.json 2000 undefined Project: /dev/null/inferredProject2* WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/folder/random.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/folder/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/folder/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/some/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/some/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (7) @@ -326,7 +317,6 @@ watchedFiles:: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/yargs/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} *new* /home/src/workspaces/project/node_modules/@types/yargs/tsconfig.json: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/jsconfig.json: @@ -349,18 +339,14 @@ watchedDirectories:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} *new* /home/src/workspaces/project/folder/node_modules: *new* {} /home/src/workspaces/project/node_modules: {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} *new* /home/src/workspaces/project/node_modules/@types/node_modules/@types: {} /home/src/workspaces/project/node_modules/@types/yargs/node_modules: @@ -437,15 +423,6 @@ Info seq [hh:mm:ss:mss] Creating AuxiliaryProject: /dev/null/auxiliaryProject1* Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/auxiliaryProject1* Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/yargs/callback.js 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/yargs/index.js 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/some/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/some/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/yargs/package.json 2000 undefined Project: /dev/null/auxiliaryProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/folder/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/folder/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/auxiliaryProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/auxiliaryProject1*' (Auxiliary) Info seq [hh:mm:ss:mss] Files (4) @@ -522,7 +499,6 @@ watchedFiles:: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/yargs/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/yargs/tsconfig.json: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/jsconfig.json: @@ -535,7 +511,6 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/project/node_modules/yargs/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} *new* /home/src/workspaces/project/some/jsconfig.json: {"pollingInterval":2000} /home/src/workspaces/project/some/tsconfig.json: @@ -550,21 +525,14 @@ watchedDirectories:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/folder/node_modules: {} - {} *new* /home/src/workspaces/project/node_modules: {} - {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules/@types/node_modules/@types: {} /home/src/workspaces/project/node_modules/@types/yargs/node_modules: @@ -575,7 +543,6 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/project/some/node_modules: {} - {} *new* /home/src/workspaces/project/some/node_modules/@types: {} diff --git a/tests/baselines/reference/tsserver/fourslashServer/goToSource1_localJsBesideDts.js b/tests/baselines/reference/tsserver/fourslashServer/goToSource1_localJsBesideDts.js index 0f64f27c46fee..e6e15ad631293 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/goToSource1_localJsBesideDts.js +++ b/tests/baselines/reference/tsserver/fourslashServer/goToSource1_localJsBesideDts.js @@ -146,14 +146,6 @@ Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferred Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/a.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (5) @@ -222,16 +214,12 @@ watchedDirectories:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} *new* /home/src/workspaces/project/node_modules: {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} *new* Projects:: /dev/null/inferredProject1* (Inferred) @@ -287,8 +275,6 @@ Info seq [hh:mm:ss:mss] Creating AuxiliaryProject: /dev/null/auxiliaryProject1* Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/auxiliaryProject1* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/a 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/a 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/auxiliaryProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/auxiliaryProject1*' (Auxiliary) Info seq [hh:mm:ss:mss] Files (2) @@ -352,23 +338,18 @@ watchedFiles:: watchedDirectories:: /home/src/workspaces/project: {} - {} *new* watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/a: *new* {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/auxiliaryProject1* (Auxiliary) *new* diff --git a/tests/baselines/reference/tsserver/fourslashServer/goToSource2_nodeModulesWithTypes.js b/tests/baselines/reference/tsserver/fourslashServer/goToSource2_nodeModulesWithTypes.js index 81bfe23dc63f0..eded2868ca84f 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/goToSource2_nodeModulesWithTypes.js +++ b/tests/baselines/reference/tsserver/fourslashServer/goToSource2_nodeModulesWithTypes.js @@ -165,17 +165,9 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/foo/types/main.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/foo/package.json 2000 undefined Project: /dev/null/inferredProject2* WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/foo/types/main.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/foo/types/package.json 2000 undefined Project: /dev/null/inferredProject2* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (5) @@ -252,16 +244,12 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} *new* /home/src/workspaces/project/node_modules: {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} *new* /home/src/workspaces/project/node_modules/foo/node_modules: {} /home/src/workspaces/project/node_modules/foo/node_modules/@types: @@ -321,11 +309,6 @@ Info seq [hh:mm:ss:mss] request: Info seq [hh:mm:ss:mss] Creating AuxiliaryProject: /dev/null/auxiliaryProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/auxiliaryProject1* Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/foo/lib/main.js 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/foo/package.json 2000 undefined Project: /dev/null/auxiliaryProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/foo/lib/package.json 2000 undefined Project: /dev/null/auxiliaryProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/auxiliaryProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/auxiliaryProject1*' (Auxiliary) @@ -390,7 +373,6 @@ watchedFiles:: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/foo/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} *new* /home/src/workspaces/project/node_modules/foo/tsconfig.json: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/foo/types/main.d.ts: @@ -407,18 +389,12 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules: {} - {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules/foo/node_modules: {} /home/src/workspaces/project/node_modules/foo/node_modules/@types: diff --git a/tests/baselines/reference/tsserver/fourslashServer/goToSource3_nodeModulesAtTypes.js b/tests/baselines/reference/tsserver/fourslashServer/goToSource3_nodeModulesAtTypes.js index dc53b110958ab..1c46e85c379db 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/goToSource3_nodeModulesAtTypes.js +++ b/tests/baselines/reference/tsserver/fourslashServer/goToSource3_nodeModulesAtTypes.js @@ -181,16 +181,7 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/foo/package.json 2000 undefined Project: /dev/null/inferredProject2* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/foo/package.json 2000 undefined Project: /dev/null/inferredProject2* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (5) @@ -252,7 +243,6 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/project/node_modules/@types/foo/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} *new* /home/src/workspaces/project/node_modules/foo/jsconfig.json: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/foo/package.json: *new* @@ -269,16 +259,12 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} *new* /home/src/workspaces/project/node_modules: {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} *new* /home/src/workspaces/project/node_modules/foo/node_modules: {} /home/src/workspaces/project/node_modules/foo/node_modules/@types: @@ -339,11 +325,6 @@ Info seq [hh:mm:ss:mss] request: Info seq [hh:mm:ss:mss] Creating AuxiliaryProject: /dev/null/auxiliaryProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/auxiliaryProject1* Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/foo/lib/main.js 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/foo/package.json 2000 undefined Project: /dev/null/auxiliaryProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/foo/lib/package.json 2000 undefined Project: /dev/null/auxiliaryProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/auxiliaryProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/auxiliaryProject1*' (Auxiliary) @@ -404,7 +385,6 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/project/node_modules/@types/foo/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/foo/jsconfig.json: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/foo/lib/main.js: *new* @@ -413,7 +393,6 @@ watchedFiles:: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/foo/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} *new* /home/src/workspaces/project/node_modules/foo/tsconfig.json: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/jsconfig.json: @@ -426,18 +405,12 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules: {} - {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules/foo/node_modules: {} /home/src/workspaces/project/node_modules/foo/node_modules/@types: diff --git a/tests/baselines/reference/tsserver/fourslashServer/goToSource5_sameAsGoToDef1.js b/tests/baselines/reference/tsserver/fourslashServer/goToSource5_sameAsGoToDef1.js index 689216aa40545..06ea095bf897e 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/goToSource5_sameAsGoToDef1.js +++ b/tests/baselines/reference/tsserver/fourslashServer/goToSource5_sameAsGoToDef1.js @@ -146,14 +146,6 @@ Info seq [hh:mm:ss:mss] request: Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/project/b.ts ProjectRootPath: undefined:: Result: undefined Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (5) @@ -195,14 +187,6 @@ Info seq [hh:mm:ss:mss] Files (4) Root file specified for compilation Info seq [hh:mm:ss:mss] ----------------------------------------------- -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (5) @@ -224,38 +208,6 @@ Info seq [hh:mm:ss:mss] response: } } After Request -watchedFiles:: -/home/src/tslibs/TS/Lib/lib.d.ts: - {"pollingInterval":500} -/home/src/tslibs/TS/Lib/lib.decorators.d.ts: - {"pollingInterval":500} -/home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts: - {"pollingInterval":500} -/home/src/workspaces/project/jsconfig.json: - {"pollingInterval":2000} -/home/src/workspaces/project/tsconfig.json: - {"pollingInterval":2000} - -watchedDirectoriesRecursive:: -/home/src/workspaces/node_modules: - {} *new* -/home/src/workspaces/node_modules/@types: - {} *new* -/home/src/workspaces/project/node_modules: - {} *new* -/home/src/workspaces/project/node_modules/@types: - {} *new* - -watchedDirectoriesRecursive *deleted*:: -/home/src/workspaces/node_modules: - {} -/home/src/workspaces/node_modules/@types: - {} -/home/src/workspaces/project/node_modules: - {} -/home/src/workspaces/project/node_modules/@types: - {} - Projects:: /dev/null/inferredProject1* (Inferred) *deleted* projectStateVersion: 2 *changed* diff --git a/tests/baselines/reference/tsserver/fourslashServer/goToSource6_sameAsGoToDef2.js b/tests/baselines/reference/tsserver/fourslashServer/goToSource6_sameAsGoToDef2.js index 922f518752bd0..a68833e3338d3 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/goToSource6_sameAsGoToDef2.js +++ b/tests/baselines/reference/tsserver/fourslashServer/goToSource6_sameAsGoToDef2.js @@ -172,17 +172,9 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/foo/types/a.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/foo/package.json 2000 undefined Project: /dev/null/inferredProject2* WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/foo/types/a.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/foo/types/package.json 2000 undefined Project: /dev/null/inferredProject2* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (5) @@ -259,16 +251,12 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} *new* /home/src/workspaces/project/node_modules: {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} *new* /home/src/workspaces/project/node_modules/foo/node_modules: {} /home/src/workspaces/project/node_modules/foo/node_modules/@types: @@ -390,16 +378,12 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules/foo/node_modules: {} /home/src/workspaces/project/node_modules/foo/node_modules/@types: diff --git a/tests/baselines/reference/tsserver/fourslashServer/goToSource7_conditionallyMinified.js b/tests/baselines/reference/tsserver/fourslashServer/goToSource7_conditionallyMinified.js index 8f6ad4333b196..8e8aeb9d5e891 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/goToSource7_conditionallyMinified.js +++ b/tests/baselines/reference/tsserver/fourslashServer/goToSource7_conditionallyMinified.js @@ -180,15 +180,7 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/react/package.json 2000 undefined Project: /dev/null/inferredProject2* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -258,16 +250,12 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} *new* /home/src/workspaces/project/node_modules: {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} *new* /home/src/workspaces/project/node_modules/node_modules/@types: {} /home/src/workspaces/project/node_modules/react/node_modules: @@ -323,13 +311,8 @@ Info seq [hh:mm:ss:mss] request: Info seq [hh:mm:ss:mss] Creating AuxiliaryProject: /dev/null/auxiliaryProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/auxiliaryProject1* Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/react/index.js 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/react/package.json 2000 undefined Project: /dev/null/auxiliaryProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/react/cjs/react.production.min.js 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/react/cjs/react.development.js 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/react/cjs/package.json 2000 undefined Project: /dev/null/auxiliaryProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/auxiliaryProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/auxiliaryProject1*' (Auxiliary) @@ -425,7 +408,6 @@ watchedFiles:: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/react/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} *new* /home/src/workspaces/project/node_modules/react/tsconfig.json: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/tsconfig.json: @@ -436,18 +418,12 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules: {} - {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules/node_modules/@types: {} /home/src/workspaces/project/node_modules/react/node_modules: diff --git a/tests/baselines/reference/tsserver/fourslashServer/goToSource8_mapFromAtTypes.js b/tests/baselines/reference/tsserver/fourslashServer/goToSource8_mapFromAtTypes.js index 33a6f14e88209..3b79a177a874a 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/goToSource8_mapFromAtTypes.js +++ b/tests/baselines/reference/tsserver/fourslashServer/goToSource8_mapFromAtTypes.js @@ -251,17 +251,7 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/lodash/package.json 2000 undefined Project: /dev/null/inferredProject2* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/lodash/package.json 2000 undefined Project: /dev/null/inferredProject2* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/lodash/common/package.json 2000 undefined Project: /dev/null/inferredProject2* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (6) @@ -327,12 +317,10 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/project/node_modules/@types/lodash/common/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} *new* /home/src/workspaces/project/node_modules/@types/lodash/index.d.ts: {"pollingInterval":500} /home/src/workspaces/project/node_modules/@types/lodash/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} *new* /home/src/workspaces/project/node_modules/jsconfig.json: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/lodash/jsconfig.json: @@ -349,16 +337,12 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} *new* /home/src/workspaces/project/node_modules: {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} *new* /home/src/workspaces/project/node_modules/lodash/node_modules: {} /home/src/workspaces/project/node_modules/lodash/node_modules/@types: @@ -424,11 +408,6 @@ Info seq [hh:mm:ss:mss] request: Info seq [hh:mm:ss:mss] Creating AuxiliaryProject: /dev/null/auxiliaryProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/auxiliaryProject1* Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/lodash/lodash.js 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/lodash/package.json 2000 undefined Project: /dev/null/auxiliaryProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/auxiliaryProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/auxiliaryProject1*' (Auxiliary) Info seq [hh:mm:ss:mss] Files (2) @@ -509,12 +488,10 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/project/node_modules/@types/lodash/common/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/lodash/index.d.ts: {"pollingInterval":500} /home/src/workspaces/project/node_modules/@types/lodash/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/jsconfig.json: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/lodash/jsconfig.json: @@ -523,7 +500,6 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/project/node_modules/lodash/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} *new* /home/src/workspaces/project/node_modules/lodash/tsconfig.json: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/tsconfig.json: @@ -534,18 +510,12 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules: {} - {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules/lodash/node_modules: {} /home/src/workspaces/project/node_modules/lodash/node_modules/@types: diff --git a/tests/baselines/reference/tsserver/fourslashServer/goToSource9_mapFromAtTypes2.js b/tests/baselines/reference/tsserver/fourslashServer/goToSource9_mapFromAtTypes2.js index b135d9b08ce60..7f8087966c246 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/goToSource9_mapFromAtTypes2.js +++ b/tests/baselines/reference/tsserver/fourslashServer/goToSource9_mapFromAtTypes2.js @@ -252,17 +252,7 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/lodash/package.json 2000 undefined Project: /dev/null/inferredProject2* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/lodash/package.json 2000 undefined Project: /dev/null/inferredProject2* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/lodash/common/package.json 2000 undefined Project: /dev/null/inferredProject2* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (6) @@ -328,12 +318,10 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/project/node_modules/@types/lodash/common/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} *new* /home/src/workspaces/project/node_modules/@types/lodash/index.d.ts: {"pollingInterval":500} /home/src/workspaces/project/node_modules/@types/lodash/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} *new* /home/src/workspaces/project/node_modules/jsconfig.json: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/lodash/jsconfig.json: @@ -350,16 +338,12 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} *new* /home/src/workspaces/project/node_modules: {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} *new* /home/src/workspaces/project/node_modules/lodash/node_modules: {} /home/src/workspaces/project/node_modules/lodash/node_modules/@types: @@ -425,11 +409,6 @@ Info seq [hh:mm:ss:mss] request: Info seq [hh:mm:ss:mss] Creating AuxiliaryProject: /dev/null/auxiliaryProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/auxiliaryProject1* Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/lodash/lodash.js 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/auxiliaryProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/lodash/package.json 2000 undefined Project: /dev/null/auxiliaryProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/auxiliaryProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/auxiliaryProject1*' (Auxiliary) Info seq [hh:mm:ss:mss] Files (2) @@ -482,12 +461,10 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/project/node_modules/@types/lodash/common/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/lodash/index.d.ts: {"pollingInterval":500} /home/src/workspaces/project/node_modules/@types/lodash/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/jsconfig.json: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/lodash/jsconfig.json: @@ -496,7 +473,6 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/project/node_modules/lodash/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} *new* /home/src/workspaces/project/node_modules/lodash/tsconfig.json: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/tsconfig.json: @@ -507,18 +483,12 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules: {} - {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules/lodash/node_modules: {} /home/src/workspaces/project/node_modules/lodash/node_modules/@types: diff --git a/tests/baselines/reference/tsserver/fourslashServer/impliedNodeFormat.js b/tests/baselines/reference/tsserver/fourslashServer/impliedNodeFormat.js index a0ccd4f5c0af6..6eb81702e2ce1 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/impliedNodeFormat.js +++ b/tests/baselines/reference/tsserver/fourslashServer/impliedNodeFormat.js @@ -160,10 +160,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspa Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -233,14 +229,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -339,14 +333,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) diff --git a/tests/baselines/reference/tsserver/fourslashServer/importCompletions_importsMap1.js b/tests/baselines/reference/tsserver/fourslashServer/importCompletions_importsMap1.js index 20790f3d8c3cf..960d33d8f08c1 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/importCompletions_importsMap1.js +++ b/tests/baselines/reference/tsserver/fourslashServer/importCompletions_importsMap1.js @@ -186,10 +186,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspa Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -265,14 +261,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -381,14 +375,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) diff --git a/tests/baselines/reference/tsserver/fourslashServer/importCompletions_importsMap2.js b/tests/baselines/reference/tsserver/fourslashServer/importCompletions_importsMap2.js index 46de407066c78..2f0673fafd7ca 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/importCompletions_importsMap2.js +++ b/tests/baselines/reference/tsserver/fourslashServer/importCompletions_importsMap2.js @@ -175,16 +175,8 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -256,18 +248,14 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: *new* {} - {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} /home/src/workspaces/project/src: *new* {} @@ -370,18 +358,14 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/src: {} diff --git a/tests/baselines/reference/tsserver/fourslashServer/importCompletions_importsMap3.js b/tests/baselines/reference/tsserver/fourslashServer/importCompletions_importsMap3.js index 108703f1404c6..f50fae3caba4c 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/importCompletions_importsMap3.js +++ b/tests/baselines/reference/tsserver/fourslashServer/importCompletions_importsMap3.js @@ -175,16 +175,8 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -256,18 +248,14 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: *new* {} - {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} /home/src/workspaces/project/src: *new* {} @@ -370,18 +358,14 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/src: {} diff --git a/tests/baselines/reference/tsserver/fourslashServer/importCompletions_importsMap4.js b/tests/baselines/reference/tsserver/fourslashServer/importCompletions_importsMap4.js index 63feb5500973e..26d88f95b1052 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/importCompletions_importsMap4.js +++ b/tests/baselines/reference/tsserver/fourslashServer/importCompletions_importsMap4.js @@ -177,10 +177,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspa Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -254,14 +250,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -364,14 +358,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) diff --git a/tests/baselines/reference/tsserver/fourslashServer/importCompletions_importsMap5.js b/tests/baselines/reference/tsserver/fourslashServer/importCompletions_importsMap5.js index 8c218da0a58d9..46f05eaec59ec 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/importCompletions_importsMap5.js +++ b/tests/baselines/reference/tsserver/fourslashServer/importCompletions_importsMap5.js @@ -193,10 +193,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspa Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -270,14 +266,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -380,14 +374,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) diff --git a/tests/baselines/reference/tsserver/fourslashServer/importFixes_ambientCircularDefaultCrash.js b/tests/baselines/reference/tsserver/fourslashServer/importFixes_ambientCircularDefaultCrash.js index 349d448fb1059..98cfe47ecbc8e 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/importFixes_ambientCircularDefaultCrash.js +++ b/tests/baselines/reference/tsserver/fourslashServer/importFixes_ambientCircularDefaultCrash.js @@ -122,14 +122,6 @@ Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/p Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -191,18 +183,14 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: *new* {} - {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* diff --git a/tests/baselines/reference/tsserver/fourslashServer/importNameCodeFix_externalNonRelateive2.js b/tests/baselines/reference/tsserver/fourslashServer/importNameCodeFix_externalNonRelateive2.js index 42bdcde0d00b8..4e3d41d05ad1f 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/importNameCodeFix_externalNonRelateive2.js +++ b/tests/baselines/reference/tsserver/fourslashServer/importNameCodeFix_externalNonRelateive2.js @@ -167,22 +167,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/p Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/apps/app1/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/apps/app1/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/apps/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/apps/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/apps/app1/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/apps/app1/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/apps/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/apps/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -258,30 +242,22 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: *new* {} - {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project/apps/app1/node_modules: *new* {} - {} /home/src/workspaces/project/apps/app1/node_modules/@types: *new* {} - {} /home/src/workspaces/project/apps/app1/src: *new* {} /home/src/workspaces/project/apps/node_modules: *new* {} - {} /home/src/workspaces/project/apps/node_modules/@types: *new* {} - {} /home/src/workspaces/project/node_modules: *new* {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} /home/src/workspaces/project/shared: *new* {} @@ -446,30 +422,22 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/apps/app1/node_modules: {} - {} /home/src/workspaces/project/apps/app1/node_modules/@types: {} - {} /home/src/workspaces/project/apps/app1/src: {} /home/src/workspaces/project/apps/node_modules: {} - {} /home/src/workspaces/project/apps/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/shared: {} @@ -919,30 +887,22 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/apps/app1/node_modules: {} - {} /home/src/workspaces/project/apps/app1/node_modules/@types: {} - {} /home/src/workspaces/project/apps/app1/src: {} /home/src/workspaces/project/apps/node_modules: {} - {} /home/src/workspaces/project/apps/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/shared: {} @@ -1382,30 +1342,22 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/apps/app1/node_modules: {} - {} /home/src/workspaces/project/apps/app1/node_modules/@types: {} - {} /home/src/workspaces/project/apps/app1/src: {} /home/src/workspaces/project/apps/node_modules: {} - {} /home/src/workspaces/project/apps/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/shared: {} diff --git a/tests/baselines/reference/tsserver/fourslashServer/importNameCodeFix_externalNonRelative1.js b/tests/baselines/reference/tsserver/fourslashServer/importNameCodeFix_externalNonRelative1.js index ddea2b3c616c5..4002bf8a2bd97 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/importNameCodeFix_externalNonRelative1.js +++ b/tests/baselines/reference/tsserver/fourslashServer/importNameCodeFix_externalNonRelative1.js @@ -283,22 +283,12 @@ Info seq [hh:mm:ss:mss] Config: /home/src/workspaces/project/packages/pkg-2/tsc Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/pkg-2/tsconfig.json 2000 undefined Project: /home/src/workspaces/project/packages/pkg-1/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/pkg-2 1 undefined Config: /home/src/workspaces/project/packages/pkg-2/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/pkg-2 1 undefined Config: /home/src/workspaces/project/packages/pkg-2/tsconfig.json WatchType: Wild card directory -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/pkg-1/node_modules 1 undefined Project: /home/src/workspaces/project/packages/pkg-1/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/pkg-1/node_modules 1 undefined Project: /home/src/workspaces/project/packages/pkg-1/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules 1 undefined Project: /home/src/workspaces/project/packages/pkg-1/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules 1 undefined Project: /home/src/workspaces/project/packages/pkg-1/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/packages/pkg-1/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/packages/pkg-1/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/packages/pkg-1/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/packages/pkg-1/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages 1 undefined Project: /home/src/workspaces/project/packages/pkg-1/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages 1 undefined Project: /home/src/workspaces/project/packages/pkg-1/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/pkg-1/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/pkg-1/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/pkg-1/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/pkg-1/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/pkg-1/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/pkg-1/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/pkg-1/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/pkg-1/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/pkg-1/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/pkg-1/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/packages/pkg-1/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/packages/pkg-1/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) @@ -414,24 +404,18 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} *new* /home/src/workspaces/project/node_modules: {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} *new* -/home/src/workspaces/project/packages/node_modules: *new* +/home/src/workspaces/project/packages: *new* {} /home/src/workspaces/project/packages/node_modules/@types: *new* {} /home/src/workspaces/project/packages/pkg-1: *new* {} -/home/src/workspaces/project/packages/pkg-1/node_modules: *new* - {} /home/src/workspaces/project/packages/pkg-1/node_modules/@types: *new* {} /home/src/workspaces/project/packages/pkg-2: *new* @@ -673,25 +657,20 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} -/home/src/workspaces/project/packages/node_modules: +/home/src/workspaces/project/packages: {} /home/src/workspaces/project/packages/node_modules/@types: {} /home/src/workspaces/project/packages/pkg-1: {} -/home/src/workspaces/project/packages/pkg-1/node_modules: +/home/src/workspaces/project/packages/pkg-1/node_modules: *new* {} - {} *new* /home/src/workspaces/project/packages/pkg-1/node_modules/@types: {} /home/src/workspaces/project/packages/pkg-2: @@ -845,22 +824,8 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/packages/pkg-2/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/pkg-2/node_modules 1 undefined Project: /home/src/workspaces/project/packages/pkg-2/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/pkg-2/node_modules 1 undefined Project: /home/src/workspaces/project/packages/pkg-2/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules 1 undefined Project: /home/src/workspaces/project/packages/pkg-2/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules 1 undefined Project: /home/src/workspaces/project/packages/pkg-2/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/packages/pkg-2/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/packages/pkg-2/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/packages/pkg-2/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/packages/pkg-2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/pkg-2/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/pkg-2/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/pkg-2/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/pkg-2/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/pkg-2/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/packages/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/pkg-2/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/pkg-2/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/pkg-2/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/pkg-2/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/packages/pkg-2/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/packages/pkg-2/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/packages/pkg-2/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (6) @@ -973,37 +938,24 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} - {} *new* /home/src/workspaces/project/node_modules: {} - {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} +/home/src/workspaces/project/packages: {} - {} *new* -/home/src/workspaces/project/packages/node_modules: - {} - {} *new* /home/src/workspaces/project/packages/node_modules/@types: {} - {} *new* /home/src/workspaces/project/packages/pkg-1: {} /home/src/workspaces/project/packages/pkg-1/node_modules: {} - {} /home/src/workspaces/project/packages/pkg-1/node_modules/@types: {} /home/src/workspaces/project/packages/pkg-2: {} -/home/src/workspaces/project/packages/pkg-2/node_modules: *new* - {} /home/src/workspaces/project/packages/pkg-2/node_modules/@types: *new* {} diff --git a/tests/baselines/reference/tsserver/fourslashServer/importNameCodeFix_pnpm1.js b/tests/baselines/reference/tsserver/fourslashServer/importNameCodeFix_pnpm1.js index 2839931e93937..a1a2342fc89c4 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/importNameCodeFix_pnpm1.js +++ b/tests/baselines/reference/tsserver/fourslashServer/importNameCodeFix_pnpm1.js @@ -125,24 +125,6 @@ Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/p Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/react 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/react 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/@types/react/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/@types/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/.pnpm/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (5) @@ -197,55 +179,42 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/index.ts: *new* {"pollingInterval":500} /home/src/workspaces/project/jsconfig.json: *new* {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/@types/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/@types/react/index.d.ts: *new* {"pollingInterval":500} /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/@types/react/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/tsconfig.json: *new* {"pollingInterval":2000} watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: *new* {} - {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} /home/src/workspaces/project/node_modules/@types/react: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -329,32 +298,24 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/jsconfig.json: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/@types/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/@types/react/index.d.ts: {"pollingInterval":500} /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/@types/react/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/tsconfig.json: {"pollingInterval":2000} @@ -365,21 +326,16 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules/@types/react: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) @@ -572,54 +528,41 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/jsconfig.json: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/@types/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/@types/react/index.d.ts: {"pollingInterval":500} /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/@types/react/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/tsconfig.json: {"pollingInterval":2000} watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: - {} {} {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules/@types/react: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) diff --git a/tests/baselines/reference/tsserver/fourslashServer/importStatementCompletions_pnpm1.js b/tests/baselines/reference/tsserver/fourslashServer/importStatementCompletions_pnpm1.js index fb343e312ae60..d144328c5c28f 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/importStatementCompletions_pnpm1.js +++ b/tests/baselines/reference/tsserver/fourslashServer/importStatementCompletions_pnpm1.js @@ -125,24 +125,6 @@ Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/p Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/react 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/react 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/@types/react/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/@types/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/.pnpm/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (5) @@ -197,55 +179,42 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/index.ts: *new* {"pollingInterval":500} /home/src/workspaces/project/jsconfig.json: *new* {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/@types/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/@types/react/index.d.ts: *new* {"pollingInterval":500} /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/@types/react/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/tsconfig.json: *new* {"pollingInterval":2000} watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: *new* {} - {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} /home/src/workspaces/project/node_modules/@types/react: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -329,32 +298,24 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/jsconfig.json: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/@types/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/@types/react/index.d.ts: {"pollingInterval":500} /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/@types/react/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/tsconfig.json: {"pollingInterval":2000} @@ -365,21 +326,16 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules/@types/react: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) @@ -541,54 +497,41 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/jsconfig.json: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/@types/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/@types/react/index.d.ts: {"pollingInterval":500} /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/@types/react/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/tsconfig.json: {"pollingInterval":2000} watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: - {} {} {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules/@types/react: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) diff --git a/tests/baselines/reference/tsserver/fourslashServer/importStatementCompletions_pnpmTransitive.js b/tests/baselines/reference/tsserver/fourslashServer/importStatementCompletions_pnpmTransitive.js index a6ae0be641284..770a2b15d6b05 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/importStatementCompletions_pnpmTransitive.js +++ b/tests/baselines/reference/tsserver/fourslashServer/importStatementCompletions_pnpmTransitive.js @@ -65,16 +65,16 @@ Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspac Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/react 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/react 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/@types/react/index.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/.pnpm/csstype@3.0.8/node_modules/csstype/index.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/csstype 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/csstype 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/.pnpm/csstype@3.0.8/node_modules/csstype/index.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/csstype 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/csstype 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/.pnpm/csstype@3.0.8/node_modules/csstype/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/.pnpm/csstype@3.0.8/node_modules/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/.pnpm/csstype@3.0.8/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution @@ -139,29 +139,6 @@ Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/p Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/react 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/react 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/csstype 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/csstype 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/.pnpm/csstype@3.0.8/node_modules/csstype/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/.pnpm/csstype@3.0.8/node_modules/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/.pnpm/csstype@3.0.8/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/.pnpm/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/@types/react/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/@types/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (6) @@ -219,69 +196,52 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/index.ts: *new* {"pollingInterval":500} /home/src/workspaces/project/jsconfig.json: *new* {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/@types/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/@types/react/index.d.ts: *new* {"pollingInterval":500} /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/@types/react/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/csstype@3.0.8/node_modules/csstype/index.d.ts: *new* {"pollingInterval":500} /home/src/workspaces/project/node_modules/.pnpm/csstype@3.0.8/node_modules/csstype/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/csstype@3.0.8/node_modules/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/csstype@3.0.8/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/tsconfig.json: *new* {"pollingInterval":2000} watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: *new* {} - {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} - {} /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/csstype: *new* {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} /home/src/workspaces/project/node_modules/@types/react: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -370,43 +330,32 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/jsconfig.json: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/@types/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/@types/react/index.d.ts: {"pollingInterval":500} /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/@types/react/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/csstype@3.0.8/node_modules/csstype/index.d.ts: {"pollingInterval":500} /home/src/workspaces/project/node_modules/.pnpm/csstype@3.0.8/node_modules/csstype/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/csstype@3.0.8/node_modules/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/csstype@3.0.8/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/.pnpm/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/tsconfig.json: {"pollingInterval":2000} @@ -417,24 +366,18 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/.pnpm/@types+react@17.0.7/node_modules/csstype: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules/@types/react: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) diff --git a/tests/baselines/reference/tsserver/fourslashServer/importSuggestionsCache_ambient.js b/tests/baselines/reference/tsserver/fourslashServer/importSuggestionsCache_ambient.js index 9fffbf1117891..6f874cf825b33 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/importSuggestionsCache_ambient.js +++ b/tests/baselines/reference/tsserver/fourslashServer/importSuggestionsCache_ambient.js @@ -110,14 +110,6 @@ Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/p Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -177,18 +169,14 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: *new* {} - {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -277,18 +265,14 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) diff --git a/tests/baselines/reference/tsserver/fourslashServer/importSuggestionsCache_coreNodeModules.js b/tests/baselines/reference/tsserver/fourslashServer/importSuggestionsCache_coreNodeModules.js index 97bfe18310faf..d49f3ed7ea791 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/importSuggestionsCache_coreNodeModules.js +++ b/tests/baselines/reference/tsserver/fourslashServer/importSuggestionsCache_coreNodeModules.js @@ -149,16 +149,6 @@ Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/p Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/node/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms @@ -222,15 +212,11 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/project/node_modules/@types/node/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/package.json: *new* - {"pollingInterval":2000} {"pollingInterval":2000} {"pollingInterval":250} /home/src/workspaces/project/tsconfig.json: *new* @@ -239,17 +225,14 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: *new* {} - {} /home/src/workspaces/node_modules/@types: *new* {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -337,15 +320,11 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/project/node_modules/@types/node/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/package.json: - {"pollingInterval":2000} {"pollingInterval":2000} {"pollingInterval":250} /home/src/workspaces/project/tsconfig.json: @@ -358,17 +337,14 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) @@ -3598,10 +3574,10 @@ Info seq [hh:mm:ss:mss] request: "command": "completionInfo" } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (5) @@ -4225,15 +4201,11 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/project/node_modules/@types/node/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/package.json: - {"pollingInterval":2000} {"pollingInterval":2000} {"pollingInterval":250} /home/src/workspaces/project/tsconfig.json: @@ -4248,17 +4220,14 @@ watchedDirectories:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) @@ -4365,6 +4334,10 @@ Info seq [hh:mm:ss:mss] request: "command": "completionInfo" } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 3 projectProgramVersion: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (5) @@ -4948,6 +4921,47 @@ Info seq [hh:mm:ss:mss] response: } } After Request +watchedFiles:: +/home/src/tslibs/TS/Lib/lib.d.ts: + {"pollingInterval":500} +/home/src/tslibs/TS/Lib/lib.decorators.d.ts: + {"pollingInterval":500} +/home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts: + {"pollingInterval":500} +/home/src/workspaces/project/jsconfig.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/@types/node/index.d.ts: + {"pollingInterval":500} +/home/src/workspaces/project/node_modules/@types/node/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/package.json: + {"pollingInterval":2000} + {"pollingInterval":250} +/home/src/workspaces/project/tsconfig.json: + {"pollingInterval":2000} + +watchedDirectories *deleted*:: +/home/src/workspaces: + {} +/home/src/workspaces/project: + {} + +watchedDirectoriesRecursive:: +/home/src/workspaces/node_modules: + {} +/home/src/workspaces/node_modules/@types: + {} +/home/src/workspaces/project: + {} +/home/src/workspaces/project/node_modules: + {} +/home/src/workspaces/project/node_modules/@types: + {} + Projects:: /dev/null/inferredProject1* (Inferred) projectStateVersion: 1 diff --git a/tests/baselines/reference/tsserver/fourslashServer/importSuggestionsCache_exportUndefined.js b/tests/baselines/reference/tsserver/fourslashServer/importSuggestionsCache_exportUndefined.js index db8675136f3a7..148bec0ea79ab 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/importSuggestionsCache_exportUndefined.js +++ b/tests/baselines/reference/tsserver/fourslashServer/importSuggestionsCache_exportUndefined.js @@ -124,14 +124,6 @@ Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/p Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -195,18 +187,14 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: *new* {} - {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -307,18 +295,14 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) diff --git a/tests/baselines/reference/tsserver/fourslashServer/importSuggestionsCache_invalidPackageJson.js b/tests/baselines/reference/tsserver/fourslashServer/importSuggestionsCache_invalidPackageJson.js index 6de357a2d5243..006df5f03a648 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/importSuggestionsCache_invalidPackageJson.js +++ b/tests/baselines/reference/tsserver/fourslashServer/importSuggestionsCache_invalidPackageJson.js @@ -136,18 +136,6 @@ Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/p Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/node/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (5) @@ -209,15 +197,11 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/project/node_modules/@types/node/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/package.json: *new* - {"pollingInterval":2000} {"pollingInterval":2000} {"pollingInterval":250} /home/src/workspaces/project/tsconfig.json: *new* @@ -226,18 +210,14 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: *new* {} - {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -325,15 +305,11 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/project/node_modules/@types/node/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/package.json: - {"pollingInterval":2000} {"pollingInterval":2000} {"pollingInterval":250} /home/src/workspaces/project/tsconfig.json: @@ -346,18 +322,14 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) diff --git a/tests/baselines/reference/tsserver/fourslashServer/importSuggestionsCache_moduleAugmentation.js b/tests/baselines/reference/tsserver/fourslashServer/importSuggestionsCache_moduleAugmentation.js index bcf73eac1345e..747c8e912fcbf 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/importSuggestionsCache_moduleAugmentation.js +++ b/tests/baselines/reference/tsserver/fourslashServer/importSuggestionsCache_moduleAugmentation.js @@ -61,18 +61,18 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspa Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 1 undefined Config: /home/src/workspaces/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/a.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/react/index.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/react/index.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/react/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution @@ -129,19 +129,6 @@ Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/p Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/react/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (5) @@ -196,25 +183,20 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/a.ts: *new* {"pollingInterval":500} /home/src/workspaces/project/jsconfig.json: *new* {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/react/index.d.ts: *new* {"pollingInterval":500} /home/src/workspaces/project/node_modules/@types/react/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/package.json: *new* {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/tsconfig.json: *new* {"pollingInterval":2000} @@ -227,18 +209,14 @@ watchedDirectories:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: *new* {} - {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -322,23 +300,18 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/jsconfig.json: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/@types/react/index.d.ts: {"pollingInterval":500} /home/src/workspaces/project/node_modules/@types/react/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/node_modules/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} /home/src/workspaces/project/tsconfig.json: {"pollingInterval":2000} @@ -355,18 +328,14 @@ watchedDirectories:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) diff --git a/tests/baselines/reference/tsserver/fourslashServer/isDefinitionAcrossGlobalProjects.js b/tests/baselines/reference/tsserver/fourslashServer/isDefinitionAcrossGlobalProjects.js index fe3d5f2a16705..0cf50700417d6 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/isDefinitionAcrossGlobalProjects.js +++ b/tests/baselines/reference/tsserver/fourslashServer/isDefinitionAcrossGlobalProjects.js @@ -374,10 +374,6 @@ Info seq [hh:mm:ss:mss] Config: /home/src/workspaces/project/tsconfig.json : { ] } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (0) @@ -521,7 +517,6 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: {} - {} *new* /home/src/workspaces/project/a/node_modules: {} /home/src/workspaces/project/a/node_modules/@types: @@ -530,7 +525,6 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/project/node_modules/@types: {} - {} *new* Projects:: /home/src/workspaces/project/a/tsconfig.json (Configured) *changed* @@ -572,16 +566,8 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/b/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/b/node_modules 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/b/node_modules 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/b/node_modules/@types 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/b/node_modules/@types 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) @@ -638,16 +624,8 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/c/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/c/node_modules 1 undefined Project: /home/src/workspaces/project/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/c/node_modules 1 undefined Project: /home/src/workspaces/project/c/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/c/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/c/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/c/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/c/node_modules/@types 1 undefined Project: /home/src/workspaces/project/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/c/node_modules/@types 1 undefined Project: /home/src/workspaces/project/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/c/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/c/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) @@ -830,13 +808,8 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} *new* - {} *new* /home/src/workspaces/node_modules/@types: {} - {} - {} *new* - {} *new* /home/src/workspaces/project/a/node_modules: {} /home/src/workspaces/project/a/node_modules/@types: @@ -851,13 +824,8 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/project/node_modules: {} - {} *new* - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} - {} *new* - {} *new* Projects:: /home/src/workspaces/project/a/tsconfig.json (Configured) *changed* @@ -1101,13 +1069,8 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} - {} /home/src/workspaces/node_modules/@types: {} - {} - {} - {} /home/src/workspaces/project/a/node_modules: {} /home/src/workspaces/project/a/node_modules/@types: @@ -1122,13 +1085,8 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/project/node_modules: {} - {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} - {} - {} ScriptInfos:: /home/src/tslibs/TS/Lib/lib.d.ts @@ -1300,13 +1258,8 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} - {} /home/src/workspaces/node_modules/@types: {} - {} - {} - {} /home/src/workspaces/project/a/node_modules: {} /home/src/workspaces/project/a/node_modules/@types: @@ -1321,13 +1274,8 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/project/node_modules: {} - {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} - {} - {} Projects:: /home/src/workspaces/project/a/tsconfig.json (Configured) @@ -1680,13 +1628,8 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} - {} /home/src/workspaces/node_modules/@types: {} - {} - {} - {} /home/src/workspaces/project/a/node_modules: {} /home/src/workspaces/project/a/node_modules/@types: @@ -1701,13 +1644,8 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/project/node_modules: {} - {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} - {} - {} ScriptInfos:: /home/src/tslibs/TS/Lib/lib.d.ts @@ -1870,13 +1808,8 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} - {} /home/src/workspaces/node_modules/@types: {} - {} - {} - {} /home/src/workspaces/project/a/node_modules: {} /home/src/workspaces/project/a/node_modules/@types: @@ -1891,13 +1824,8 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/project/node_modules: {} - {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} - {} - {} Projects:: /home/src/workspaces/project/a/tsconfig.json (Configured) diff --git a/tests/baselines/reference/tsserver/fourslashServer/isDefinitionAcrossModuleProjects.js b/tests/baselines/reference/tsserver/fourslashServer/isDefinitionAcrossModuleProjects.js index 8ca195c2f5e47..c795c88ed4b38 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/isDefinitionAcrossModuleProjects.js +++ b/tests/baselines/reference/tsserver/fourslashServer/isDefinitionAcrossModuleProjects.js @@ -459,10 +459,6 @@ Info seq [hh:mm:ss:mss] Config: /home/src/workspaces/project/a2/tsconfig.json : ] } Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/a2/tsconfig.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (0) @@ -621,7 +617,6 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: {} - {} *new* /home/src/workspaces/project/a/node_modules: {} /home/src/workspaces/project/a/node_modules/@types: @@ -634,7 +629,6 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/project/node_modules/@types: {} - {} *new* Projects:: /home/src/workspaces/project/a/tsconfig.json (Configured) *changed* @@ -676,16 +670,8 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/c/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/c/node_modules 1 undefined Project: /home/src/workspaces/project/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/c/node_modules 1 undefined Project: /home/src/workspaces/project/c/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/c/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/c/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/c/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/c/node_modules/@types 1 undefined Project: /home/src/workspaces/project/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/c/node_modules/@types 1 undefined Project: /home/src/workspaces/project/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/c/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/c/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) @@ -741,24 +727,10 @@ Info seq [hh:mm:ss:mss] event: } Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/a2/index.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/a2/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Project: /home/src/workspaces/project/a2/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Project: /home/src/workspaces/project/a2/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/b 1 undefined Project: /home/src/workspaces/project/a2/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/b 1 undefined Project: /home/src/workspaces/project/a2/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/c 1 undefined Project: /home/src/workspaces/project/a2/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/c 1 undefined Project: /home/src/workspaces/project/a2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/a2/node_modules 1 undefined Project: /home/src/workspaces/project/a2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/a2/node_modules 1 undefined Project: /home/src/workspaces/project/a2/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/a2/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/a2/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/a2/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/a2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/a2/node_modules/@types 1 undefined Project: /home/src/workspaces/project/a2/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/a2/node_modules/@types 1 undefined Project: /home/src/workspaces/project/a2/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/a2/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/a2/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/a2/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/a2/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/a2/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/a2/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (6) @@ -1108,18 +1080,12 @@ watchedFiles:: watchedDirectories:: /home/src/workspaces/project: {} - {} *new* watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} *new* - {} *new* /home/src/workspaces/node_modules/@types: {} - {} - {} *new* - {} *new* /home/src/workspaces/project/a/node_modules: {} /home/src/workspaces/project/a/node_modules/@types: @@ -1130,23 +1096,16 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/project/b: {} - {} *new* /home/src/workspaces/project/c: {} - {} *new* /home/src/workspaces/project/c/node_modules: *new* {} /home/src/workspaces/project/c/node_modules/@types: *new* {} /home/src/workspaces/project/node_modules: {} - {} *new* - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} - {} *new* - {} *new* Projects:: /home/src/workspaces/project/a/tsconfig.json (Configured) *changed* @@ -1402,18 +1361,12 @@ watchedFiles *deleted*:: watchedDirectories:: /home/src/workspaces/project: {} - {} watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} - {} /home/src/workspaces/node_modules/@types: {} - {} - {} - {} /home/src/workspaces/project/a/node_modules: {} /home/src/workspaces/project/a/node_modules/@types: @@ -1424,23 +1377,16 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/project/b: {} - {} /home/src/workspaces/project/c: {} - {} /home/src/workspaces/project/c/node_modules: {} /home/src/workspaces/project/c/node_modules/@types: {} /home/src/workspaces/project/node_modules: {} - {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} - {} - {} ScriptInfos:: /home/src/tslibs/TS/Lib/lib.d.ts @@ -1620,18 +1566,12 @@ watchedFiles:: watchedDirectories:: /home/src/workspaces/project: {} - {} watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} - {} /home/src/workspaces/node_modules/@types: {} - {} - {} - {} /home/src/workspaces/project/a/node_modules: {} /home/src/workspaces/project/a/node_modules/@types: @@ -1642,23 +1582,16 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/project/b: {} - {} /home/src/workspaces/project/c: {} - {} /home/src/workspaces/project/c/node_modules: {} /home/src/workspaces/project/c/node_modules/@types: {} /home/src/workspaces/project/node_modules: {} - {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} - {} - {} Projects:: /home/src/workspaces/project/a/tsconfig.json (Configured) @@ -2136,16 +2069,8 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/p Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/b/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/b/node_modules 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/b/node_modules 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/b/node_modules/@types 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/b/node_modules/@types 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (5) @@ -2264,20 +2189,12 @@ watchedFiles *deleted*:: watchedDirectories:: /home/src/workspaces/project: {} - {} watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} - {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} - {} - {} - {} *new* /home/src/workspaces/project/a/node_modules: {} /home/src/workspaces/project/a/node_modules/@types: @@ -2288,29 +2205,20 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/project/b: {} - {} /home/src/workspaces/project/b/node_modules: *new* {} /home/src/workspaces/project/b/node_modules/@types: *new* {} /home/src/workspaces/project/c: {} - {} /home/src/workspaces/project/c/node_modules: {} /home/src/workspaces/project/c/node_modules/@types: {} /home/src/workspaces/project/node_modules: {} - {} - {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} - {} - {} - {} *new* Projects:: /home/src/workspaces/project/a/tsconfig.json (Configured) @@ -2520,20 +2428,12 @@ watchedFiles:: watchedDirectories:: /home/src/workspaces/project: {} - {} watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} - {} - {} /home/src/workspaces/node_modules/@types: {} - {} - {} - {} - {} /home/src/workspaces/project/a/node_modules: {} /home/src/workspaces/project/a/node_modules/@types: @@ -2544,29 +2444,20 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/project/b: {} - {} /home/src/workspaces/project/b/node_modules: {} /home/src/workspaces/project/b/node_modules/@types: {} /home/src/workspaces/project/c: {} - {} /home/src/workspaces/project/c/node_modules: {} /home/src/workspaces/project/c/node_modules/@types: {} /home/src/workspaces/project/node_modules: {} - {} - {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} - {} - {} - {} Projects:: /home/src/workspaces/project/a/tsconfig.json (Configured) *changed* @@ -2883,20 +2774,12 @@ watchedFiles *deleted*:: watchedDirectories:: /home/src/workspaces/project: {} - {} watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} - {} - {} /home/src/workspaces/node_modules/@types: {} - {} - {} - {} - {} /home/src/workspaces/project/a/node_modules: {} /home/src/workspaces/project/a/node_modules/@types: @@ -2907,29 +2790,20 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/project/b: {} - {} /home/src/workspaces/project/b/node_modules: {} /home/src/workspaces/project/b/node_modules/@types: {} /home/src/workspaces/project/c: {} - {} /home/src/workspaces/project/c/node_modules: {} /home/src/workspaces/project/c/node_modules/@types: {} /home/src/workspaces/project/node_modules: {} - {} - {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} - {} - {} - {} ScriptInfos:: /home/src/tslibs/TS/Lib/lib.d.ts @@ -3112,20 +2986,12 @@ watchedFiles:: watchedDirectories:: /home/src/workspaces/project: {} - {} watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} - {} - {} /home/src/workspaces/node_modules/@types: {} - {} - {} - {} - {} /home/src/workspaces/project/a/node_modules: {} /home/src/workspaces/project/a/node_modules/@types: @@ -3136,29 +3002,20 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/project/b: {} - {} /home/src/workspaces/project/b/node_modules: {} /home/src/workspaces/project/b/node_modules/@types: {} /home/src/workspaces/project/c: {} - {} /home/src/workspaces/project/c/node_modules: {} /home/src/workspaces/project/c/node_modules/@types: {} /home/src/workspaces/project/node_modules: {} - {} - {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} - {} - {} - {} Projects:: /home/src/workspaces/project/a/tsconfig.json (Configured) diff --git a/tests/baselines/reference/tsserver/fourslashServer/navto_serverExcludeLib.js b/tests/baselines/reference/tsserver/fourslashServer/navto_serverExcludeLib.js index 1cb09de22d54b..38b3e1ec19dd1 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/navto_serverExcludeLib.js +++ b/tests/baselines/reference/tsserver/fourslashServer/navto_serverExcludeLib.js @@ -58,15 +58,15 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 1 undefined Config: /home/src/workspaces/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 1 undefined Config: /home/src/workspaces/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/bar/index.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/bar/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/bar/index.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/bar/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/fourslashServer/ngProxy1.js b/tests/baselines/reference/tsserver/fourslashServer/ngProxy1.js index f606b37730488..6a73e17637714 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/ngProxy1.js +++ b/tests/baselines/reference/tsserver/fourslashServer/ngProxy1.js @@ -122,14 +122,6 @@ Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /tests/cases/fourslash Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, currentDirectory: /tests/cases/fourslash/server Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -189,16 +181,12 @@ watchedFiles:: watchedDirectoriesRecursive:: /tests/cases/fourslash/node_modules: *new* {} - {} /tests/cases/fourslash/node_modules/@types: *new* {} - {} /tests/cases/fourslash/server/node_modules: *new* {} - {} /tests/cases/fourslash/server/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -287,16 +275,12 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /tests/cases/fourslash/node_modules: {} - {} /tests/cases/fourslash/node_modules/@types: {} - {} /tests/cases/fourslash/server/node_modules: {} - {} /tests/cases/fourslash/server/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) diff --git a/tests/baselines/reference/tsserver/fourslashServer/ngProxy2.js b/tests/baselines/reference/tsserver/fourslashServer/ngProxy2.js index def72a1d9a63a..6fc8bb9926883 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/ngProxy2.js +++ b/tests/baselines/reference/tsserver/fourslashServer/ngProxy2.js @@ -122,14 +122,6 @@ Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /tests/cases/fourslash Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, currentDirectory: /tests/cases/fourslash/server Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -189,16 +181,12 @@ watchedFiles:: watchedDirectoriesRecursive:: /tests/cases/fourslash/node_modules: *new* {} - {} /tests/cases/fourslash/node_modules/@types: *new* {} - {} /tests/cases/fourslash/server/node_modules: *new* {} - {} /tests/cases/fourslash/server/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -287,16 +275,12 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /tests/cases/fourslash/node_modules: {} - {} /tests/cases/fourslash/node_modules/@types: {} - {} /tests/cases/fourslash/server/node_modules: {} - {} /tests/cases/fourslash/server/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) diff --git a/tests/baselines/reference/tsserver/fourslashServer/ngProxy3.js b/tests/baselines/reference/tsserver/fourslashServer/ngProxy3.js index 56de758115a8c..3a66f5915e02a 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/ngProxy3.js +++ b/tests/baselines/reference/tsserver/fourslashServer/ngProxy3.js @@ -121,14 +121,6 @@ Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /tests/cases/fourslash Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, currentDirectory: /tests/cases/fourslash/server Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -188,16 +180,12 @@ watchedFiles:: watchedDirectoriesRecursive:: /tests/cases/fourslash/node_modules: *new* {} - {} /tests/cases/fourslash/node_modules/@types: *new* {} - {} /tests/cases/fourslash/server/node_modules: *new* {} - {} /tests/cases/fourslash/server/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -286,16 +274,12 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /tests/cases/fourslash/node_modules: {} - {} /tests/cases/fourslash/node_modules/@types: {} - {} /tests/cases/fourslash/server/node_modules: {} - {} /tests/cases/fourslash/server/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) diff --git a/tests/baselines/reference/tsserver/fourslashServer/ngProxy4.js b/tests/baselines/reference/tsserver/fourslashServer/ngProxy4.js index 4bb9209564f5e..6d6d7f5aefad1 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/ngProxy4.js +++ b/tests/baselines/reference/tsserver/fourslashServer/ngProxy4.js @@ -121,14 +121,6 @@ Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /tests/cases/fourslash Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, currentDirectory: /tests/cases/fourslash/server Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -188,16 +180,12 @@ watchedFiles:: watchedDirectoriesRecursive:: /tests/cases/fourslash/node_modules: *new* {} - {} /tests/cases/fourslash/node_modules/@types: *new* {} - {} /tests/cases/fourslash/server/node_modules: *new* {} - {} /tests/cases/fourslash/server/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -286,16 +274,12 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /tests/cases/fourslash/node_modules: {} - {} /tests/cases/fourslash/node_modules/@types: {} - {} /tests/cases/fourslash/server/node_modules: {} - {} /tests/cases/fourslash/server/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) diff --git a/tests/baselines/reference/tsserver/fourslashServer/nodeNextModuleKindCaching1.js b/tests/baselines/reference/tsserver/fourslashServer/nodeNextModuleKindCaching1.js index 5f602edaa27a4..5198f56a00830 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/nodeNextModuleKindCaching1.js +++ b/tests/baselines/reference/tsserver/fourslashServer/nodeNextModuleKindCaching1.js @@ -193,10 +193,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/four Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -268,12 +264,10 @@ watchedDirectoriesRecursive:: {} /tests/cases/fourslash/node_modules/@types: *new* {} - {} /tests/cases/fourslash/server/node_modules: *new* {} /tests/cases/fourslash/server/node_modules/@types: *new* {} - {} /tests/cases/fourslash/server/src: *new* {} @@ -376,12 +370,10 @@ watchedDirectoriesRecursive:: {} /tests/cases/fourslash/node_modules/@types: {} - {} /tests/cases/fourslash/server/node_modules: {} /tests/cases/fourslash/server/node_modules/@types: {} - {} /tests/cases/fourslash/server/src: {} diff --git a/tests/baselines/reference/tsserver/fourslashServer/nodeNextPathCompletions.js b/tests/baselines/reference/tsserver/fourslashServer/nodeNextPathCompletions.js index 18cf444572c33..6800e5997fff9 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/nodeNextPathCompletions.js +++ b/tests/baselines/reference/tsserver/fourslashServer/nodeNextPathCompletions.js @@ -209,10 +209,6 @@ Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspac Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.esnext.full.d.ts 500 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Missing file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (1) @@ -381,12 +377,10 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: {} - {} *new* /home/src/workspaces/project/node_modules: {} /home/src/workspaces/project/node_modules/@types: {} - {} *new* /home/src/workspaces/project/node_modules/dependency/node_modules: {} /home/src/workspaces/project/node_modules/dependency/node_modules/@types: @@ -1418,8 +1412,6 @@ Info seq [hh:mm:ss:mss] request: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/dependency/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/dependency/lib/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1488,10 +1480,8 @@ watchedFiles:: {"pollingInterval":500} /home/src/workspaces/project/node_modules/dependency/lib/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} *new* /home/src/workspaces/project/node_modules/dependency/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} *new* /home/src/workspaces/project/node_modules/dependency/tsconfig.json: {"pollingInterval":2000} /home/src/workspaces/project/node_modules/jsconfig.json: @@ -1511,12 +1501,10 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules: {} /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules/dependency/node_modules: {} /home/src/workspaces/project/node_modules/dependency/node_modules/@types: @@ -1743,11 +1731,6 @@ Info seq [hh:mm:ss:mss] request: "command": "completionInfo" } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/dependency/lib/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 3 projectProgramVersion: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (1) @@ -1789,66 +1772,6 @@ Info seq [hh:mm:ss:mss] response: } } After Request -watchedFiles:: -/home/src/tslibs/TS/Lib/lib.d.ts: - {"pollingInterval":500} -/home/src/tslibs/TS/Lib/lib.decorators.d.ts: - {"pollingInterval":500} -/home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts: - {"pollingInterval":500} -/home/src/tslibs/TS/Lib/lib.esnext.full.d.ts: - {"pollingInterval":500} -/home/src/workspaces/project/node_modules/dependency/jsconfig.json: - {"pollingInterval":2000} -/home/src/workspaces/project/node_modules/dependency/lib/index.d.ts: - {"pollingInterval":500} -/home/src/workspaces/project/node_modules/dependency/lib/lol.d.ts: - {"pollingInterval":500} -/home/src/workspaces/project/node_modules/dependency/lib/package.json: - {"pollingInterval":2000} -/home/src/workspaces/project/node_modules/dependency/package.json: - {"pollingInterval":2000} - {"pollingInterval":2000} -/home/src/workspaces/project/node_modules/dependency/tsconfig.json: - {"pollingInterval":2000} -/home/src/workspaces/project/node_modules/jsconfig.json: - {"pollingInterval":2000} -/home/src/workspaces/project/node_modules/tsconfig.json: - {"pollingInterval":2000} -/home/src/workspaces/project/package.json: - {"pollingInterval":2000} - {"pollingInterval":250} -/home/src/workspaces/project/src/package.json: - {"pollingInterval":2000} -/home/src/workspaces/project/tsconfig.json: - {"pollingInterval":2000} - -watchedFiles *deleted*:: -/home/src/workspaces/project/node_modules/dependency/lib/package.json: - {"pollingInterval":2000} - -watchedDirectoriesRecursive:: -/home/src/workspaces/node_modules: - {} - {} *new* -/home/src/workspaces/node_modules/@types: - {} - {} -/home/src/workspaces/project/node_modules: - {} - {} *new* -/home/src/workspaces/project/node_modules/@types: - {} - {} -/home/src/workspaces/project/node_modules/dependency/node_modules: - {} -/home/src/workspaces/project/node_modules/dependency/node_modules/@types: - {} -/home/src/workspaces/project/node_modules/node_modules/@types: - {} -/home/src/workspaces/project/src: - {} - Projects:: /dev/null/autoImportProviderProject1* (AutoImportProvider) projectStateVersion: 2 diff --git a/tests/baselines/reference/tsserver/fourslashServer/nonJsDeclarationFilePathCompletions.js b/tests/baselines/reference/tsserver/fourslashServer/nonJsDeclarationFilePathCompletions.js index 792515080056e..21d007d7279be 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/nonJsDeclarationFilePathCompletions.js +++ b/tests/baselines/reference/tsserver/fourslashServer/nonJsDeclarationFilePathCompletions.js @@ -145,14 +145,6 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -216,16 +208,12 @@ watchedDirectories:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} *new* /home/src/workspaces/project/node_modules: {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} *new* Projects:: /dev/null/inferredProject1* (Inferred) diff --git a/tests/baselines/reference/tsserver/fourslashServer/openFileWithSyntaxKind.js b/tests/baselines/reference/tsserver/fourslashServer/openFileWithSyntaxKind.js index cbd3593f9bb4c..f77e238df3e5b 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/openFileWithSyntaxKind.js +++ b/tests/baselines/reference/tsserver/fourslashServer/openFileWithSyntaxKind.js @@ -144,14 +144,6 @@ Info seq [hh:mm:ss:mss] request: Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /tests/cases/fourslash/server/test.ts ProjectRootPath: undefined:: Result: undefined Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, currentDirectory: /tests/cases/fourslash/server Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -196,32 +188,6 @@ Info seq [hh:mm:ss:mss] response: } } After Request -watchedFiles:: -/home/src/tslibs/TS/Lib/lib.d.ts: - {"pollingInterval":500} -/home/src/tslibs/TS/Lib/lib.decorators.d.ts: - {"pollingInterval":500} -/home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts: - {"pollingInterval":500} -/tests/cases/fourslash/server/jsconfig.json: - {"pollingInterval":2000} -/tests/cases/fourslash/server/tsconfig.json: - {"pollingInterval":2000} - -watchedDirectoriesRecursive:: -/tests/cases/fourslash/node_modules: - {} - {} *new* -/tests/cases/fourslash/node_modules/@types: - {} - {} *new* -/tests/cases/fourslash/server/node_modules: - {} - {} *new* -/tests/cases/fourslash/server/node_modules/@types: - {} - {} *new* - Projects:: /dev/null/inferredProject1* (Inferred) projectStateVersion: 1 diff --git a/tests/baselines/reference/tsserver/fourslashServer/packageJsonImportsFailedLookups.js b/tests/baselines/reference/tsserver/fourslashServer/packageJsonImportsFailedLookups.js index fa5884593167f..84f9c2272dead 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/packageJsonImportsFailedLookups.js +++ b/tests/baselines/reference/tsserver/fourslashServer/packageJsonImportsFailedLookups.js @@ -64,7 +64,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /a/b/c/d/e 1 unde Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/c/d/e 1 undefined Config: /a/b/c/d/e/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /a/b/c/d/e/index.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /a/b/c/d/e/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /a/b/node_modules/lodash/index.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /a/b/c/d/e/node_modules 1 undefined Project: /a/b/c/d/e/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/c/d/e/node_modules 1 undefined Project: /a/b/c/d/e/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /a/b/c/d/node_modules 1 undefined Project: /a/b/c/d/e/tsconfig.json WatchType: Failed Lookup Locations @@ -72,6 +71,7 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /a/b/c/node_modules 1 undefined Project: /a/b/c/d/e/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/c/node_modules 1 undefined Project: /a/b/c/d/e/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /a/b/c/d/e/package.json 2000 undefined Project: /a/b/c/d/e/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /a/b/node_modules/lodash/index.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /a/b/node_modules/lodash/package.json 2000 undefined Project: /a/b/c/d/e/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /a/b/node_modules/package.json 2000 undefined Project: /a/b/c/d/e/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.esnext.full.d.ts 500 undefined Project: /a/b/c/d/e/tsconfig.json WatchType: Missing file @@ -169,20 +169,8 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /a/b/c/d/tsconfig.json Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /a/b/c/d/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /a/b/c/d/e/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/c/d/e/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /a/b/c/d/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/c/d/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /a/b/c/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/c/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /a/b/c/d/e/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/c/d/e/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /a/b/c/d/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/c/d/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /a/b/c/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/c/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -260,22 +248,16 @@ watchedDirectoriesRecursive:: {} /a/b/c/d/e/node_modules: *new* {} - {} /a/b/c/d/e/node_modules/@types: *new* {} - {} /a/b/c/d/node_modules: *new* {} - {} /a/b/c/d/node_modules/@types: *new* {} - {} /a/b/c/node_modules: *new* {} - {} /a/b/c/node_modules/@types: *new* {} - {} Projects:: /a/b/c/d/e/tsconfig.json (Configured) *new* @@ -382,22 +364,16 @@ watchedDirectoriesRecursive:: {} /a/b/c/d/e/node_modules: {} - {} /a/b/c/d/e/node_modules/@types: {} - {} /a/b/c/d/node_modules: {} - {} /a/b/c/d/node_modules/@types: {} - {} /a/b/c/node_modules: {} - {} /a/b/c/node_modules/@types: {} - {} Projects:: /a/b/c/d/e/tsconfig.json (Configured) *changed* diff --git a/tests/baselines/reference/tsserver/fourslashServer/pathCompletionsPackageJsonImportsSrcNoDistWildcard1.js b/tests/baselines/reference/tsserver/fourslashServer/pathCompletionsPackageJsonImportsSrcNoDistWildcard1.js index afab97fce62d7..fd429053115fc 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/pathCompletionsPackageJsonImportsSrcNoDistWildcard1.js +++ b/tests/baselines/reference/tsserver/fourslashServer/pathCompletionsPackageJsonImportsSrcNoDistWildcard1.js @@ -203,10 +203,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspa Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -284,14 +280,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -406,14 +400,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) diff --git a/tests/baselines/reference/tsserver/fourslashServer/pathCompletionsPackageJsonImportsSrcNoDistWildcard2.js b/tests/baselines/reference/tsserver/fourslashServer/pathCompletionsPackageJsonImportsSrcNoDistWildcard2.js index 90fe6d8133481..02c79fbdbebf0 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/pathCompletionsPackageJsonImportsSrcNoDistWildcard2.js +++ b/tests/baselines/reference/tsserver/fourslashServer/pathCompletionsPackageJsonImportsSrcNoDistWildcard2.js @@ -179,10 +179,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspa Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -258,14 +254,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -370,14 +364,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) @@ -1118,10 +1110,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspa Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/dist 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/dist 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1183,20 +1171,16 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/dist: *new* {} /home/src/workspaces/project/node_modules: {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/src: *new* {} diff --git a/tests/baselines/reference/tsserver/fourslashServer/pathCompletionsPackageJsonImportsSrcNoDistWildcard3.js b/tests/baselines/reference/tsserver/fourslashServer/pathCompletionsPackageJsonImportsSrcNoDistWildcard3.js index 1a110a97b2ad2..82a848a5f84dd 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/pathCompletionsPackageJsonImportsSrcNoDistWildcard3.js +++ b/tests/baselines/reference/tsserver/fourslashServer/pathCompletionsPackageJsonImportsSrcNoDistWildcard3.js @@ -225,10 +225,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspa Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -310,14 +306,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -440,14 +434,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) @@ -2384,10 +2376,6 @@ Info seq [hh:mm:ss:mss] request: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (5) @@ -2458,18 +2446,14 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/src: *new* {} diff --git a/tests/baselines/reference/tsserver/fourslashServer/pathCompletionsPackageJsonImportsSrcNoDistWildcard4.js b/tests/baselines/reference/tsserver/fourslashServer/pathCompletionsPackageJsonImportsSrcNoDistWildcard4.js index 63b86885267c4..5aa6e35ef194e 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/pathCompletionsPackageJsonImportsSrcNoDistWildcard4.js +++ b/tests/baselines/reference/tsserver/fourslashServer/pathCompletionsPackageJsonImportsSrcNoDistWildcard4.js @@ -218,10 +218,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspa Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -305,14 +301,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -441,14 +435,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) @@ -1125,10 +1117,6 @@ Info seq [hh:mm:ss:mss] request: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (6) @@ -1226,18 +1214,14 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} /home/src/workspaces/project/src: *new* {} diff --git a/tests/baselines/reference/tsserver/fourslashServer/pathCompletionsPackageJsonImportsSrcNoDistWildcard5.js b/tests/baselines/reference/tsserver/fourslashServer/pathCompletionsPackageJsonImportsSrcNoDistWildcard5.js index 27f4085657a32..74cb26f862863 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/pathCompletionsPackageJsonImportsSrcNoDistWildcard5.js +++ b/tests/baselines/reference/tsserver/fourslashServer/pathCompletionsPackageJsonImportsSrcNoDistWildcard5.js @@ -233,10 +233,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspa Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -316,14 +312,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -444,14 +438,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) diff --git a/tests/baselines/reference/tsserver/fourslashServer/pathCompletionsPackageJsonImportsSrcNoDistWildcard6.js b/tests/baselines/reference/tsserver/fourslashServer/pathCompletionsPackageJsonImportsSrcNoDistWildcard6.js index fb284dcc7a04b..92ae0ad0d4b60 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/pathCompletionsPackageJsonImportsSrcNoDistWildcard6.js +++ b/tests/baselines/reference/tsserver/fourslashServer/pathCompletionsPackageJsonImportsSrcNoDistWildcard6.js @@ -184,10 +184,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspa Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -261,14 +257,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -375,14 +369,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) diff --git a/tests/baselines/reference/tsserver/fourslashServer/pathCompletionsPackageJsonImportsSrcNoDistWildcard7.js b/tests/baselines/reference/tsserver/fourslashServer/pathCompletionsPackageJsonImportsSrcNoDistWildcard7.js index e8b921a29c1b2..885e84e233c7c 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/pathCompletionsPackageJsonImportsSrcNoDistWildcard7.js +++ b/tests/baselines/reference/tsserver/fourslashServer/pathCompletionsPackageJsonImportsSrcNoDistWildcard7.js @@ -172,10 +172,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspa Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -247,14 +243,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -355,14 +349,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) diff --git a/tests/baselines/reference/tsserver/fourslashServer/pathCompletionsPackageJsonImportsSrcNoDistWildcard8.js b/tests/baselines/reference/tsserver/fourslashServer/pathCompletionsPackageJsonImportsSrcNoDistWildcard8.js index e8b921a29c1b2..885e84e233c7c 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/pathCompletionsPackageJsonImportsSrcNoDistWildcard8.js +++ b/tests/baselines/reference/tsserver/fourslashServer/pathCompletionsPackageJsonImportsSrcNoDistWildcard8.js @@ -172,10 +172,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspa Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -247,14 +243,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -355,14 +349,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) diff --git a/tests/baselines/reference/tsserver/fourslashServer/pathCompletionsPackageJsonImportsSrcNoDistWildcard9.js b/tests/baselines/reference/tsserver/fourslashServer/pathCompletionsPackageJsonImportsSrcNoDistWildcard9.js index a3e4748da892b..5abbc99fcec21 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/pathCompletionsPackageJsonImportsSrcNoDistWildcard9.js +++ b/tests/baselines/reference/tsserver/fourslashServer/pathCompletionsPackageJsonImportsSrcNoDistWildcard9.js @@ -174,10 +174,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspa Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -249,14 +245,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/node_modules: *new* {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -357,14 +351,12 @@ watchedDirectoriesRecursive:: {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project: {} /home/src/workspaces/project/node_modules: {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) diff --git a/tests/baselines/reference/tsserver/fourslashServer/projectInfo01.js b/tests/baselines/reference/tsserver/fourslashServer/projectInfo01.js index 2dc511fd7f331..b0e90af6130c6 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/projectInfo01.js +++ b/tests/baselines/reference/tsserver/fourslashServer/projectInfo01.js @@ -198,14 +198,6 @@ Info seq [hh:mm:ss:mss] request: Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /tests/cases/fourslash/server/b.ts ProjectRootPath: undefined:: Result: undefined Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, currentDirectory: /tests/cases/fourslash/server Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (5) @@ -247,14 +239,6 @@ Info seq [hh:mm:ss:mss] Files (4) Root file specified for compilation Info seq [hh:mm:ss:mss] ----------------------------------------------- -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (5) @@ -276,38 +260,6 @@ Info seq [hh:mm:ss:mss] response: } } After Request -watchedFiles:: -/home/src/tslibs/TS/Lib/lib.d.ts: - {"pollingInterval":500} -/home/src/tslibs/TS/Lib/lib.decorators.d.ts: - {"pollingInterval":500} -/home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts: - {"pollingInterval":500} -/tests/cases/fourslash/server/jsconfig.json: - {"pollingInterval":2000} -/tests/cases/fourslash/server/tsconfig.json: - {"pollingInterval":2000} - -watchedDirectoriesRecursive:: -/tests/cases/fourslash/node_modules: - {} *new* -/tests/cases/fourslash/node_modules/@types: - {} *new* -/tests/cases/fourslash/server/node_modules: - {} *new* -/tests/cases/fourslash/server/node_modules/@types: - {} *new* - -watchedDirectoriesRecursive *deleted*:: -/tests/cases/fourslash/node_modules: - {} -/tests/cases/fourslash/node_modules/@types: - {} -/tests/cases/fourslash/server/node_modules: - {} -/tests/cases/fourslash/server/node_modules/@types: - {} - Projects:: /dev/null/inferredProject1* (Inferred) *deleted* projectStateVersion: 2 *changed* @@ -388,14 +340,6 @@ Info seq [hh:mm:ss:mss] request: Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /tests/cases/fourslash/server/c.ts ProjectRootPath: undefined:: Result: undefined Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject3*, currentDirectory: /tests/cases/fourslash/server Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject3* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject3* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject3*' (Inferred) Info seq [hh:mm:ss:mss] Files (6) @@ -444,14 +388,6 @@ Info seq [hh:mm:ss:mss] Files (5) Root file specified for compilation Info seq [hh:mm:ss:mss] ----------------------------------------------- -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject3*' (Inferred) Info seq [hh:mm:ss:mss] Files (6) @@ -475,38 +411,6 @@ Info seq [hh:mm:ss:mss] response: } } After Request -watchedFiles:: -/home/src/tslibs/TS/Lib/lib.d.ts: - {"pollingInterval":500} -/home/src/tslibs/TS/Lib/lib.decorators.d.ts: - {"pollingInterval":500} -/home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts: - {"pollingInterval":500} -/tests/cases/fourslash/server/jsconfig.json: - {"pollingInterval":2000} -/tests/cases/fourslash/server/tsconfig.json: - {"pollingInterval":2000} - -watchedDirectoriesRecursive:: -/tests/cases/fourslash/node_modules: - {} *new* -/tests/cases/fourslash/node_modules/@types: - {} *new* -/tests/cases/fourslash/server/node_modules: - {} *new* -/tests/cases/fourslash/server/node_modules/@types: - {} *new* - -watchedDirectoriesRecursive *deleted*:: -/tests/cases/fourslash/node_modules: - {} -/tests/cases/fourslash/node_modules/@types: - {} -/tests/cases/fourslash/server/node_modules: - {} -/tests/cases/fourslash/server/node_modules/@types: - {} - Projects:: /dev/null/inferredProject2* (Inferred) *deleted* projectStateVersion: 2 *changed* @@ -593,14 +497,6 @@ Info seq [hh:mm:ss:mss] request: Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /tests/cases/fourslash/server/d.ts ProjectRootPath: undefined:: Result: undefined Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject4*, currentDirectory: /tests/cases/fourslash/server Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject4* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /dev/null/inferredProject4* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /dev/null/inferredProject4* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject4* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject4* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject4* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject4*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -649,32 +545,6 @@ Info seq [hh:mm:ss:mss] response: } } After Request -watchedFiles:: -/home/src/tslibs/TS/Lib/lib.d.ts: - {"pollingInterval":500} -/home/src/tslibs/TS/Lib/lib.decorators.d.ts: - {"pollingInterval":500} -/home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts: - {"pollingInterval":500} -/tests/cases/fourslash/server/jsconfig.json: - {"pollingInterval":2000} -/tests/cases/fourslash/server/tsconfig.json: - {"pollingInterval":2000} - -watchedDirectoriesRecursive:: -/tests/cases/fourslash/node_modules: - {} - {} *new* -/tests/cases/fourslash/node_modules/@types: - {} - {} *new* -/tests/cases/fourslash/server/node_modules: - {} - {} *new* -/tests/cases/fourslash/server/node_modules/@types: - {} - {} *new* - Projects:: /dev/null/inferredProject3* (Inferred) projectStateVersion: 1 diff --git a/tests/baselines/reference/tsserver/fourslashServer/references01.js b/tests/baselines/reference/tsserver/fourslashServer/references01.js index 13a94ab9b09b8..612eac8d3842a 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/references01.js +++ b/tests/baselines/reference/tsserver/fourslashServer/references01.js @@ -142,14 +142,6 @@ Info seq [hh:mm:ss:mss] request: Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/project/referencesForGlobals_2.ts ProjectRootPath: undefined:: Result: undefined Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, currentDirectory: /home/src/workspaces/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (5) @@ -191,14 +183,6 @@ Info seq [hh:mm:ss:mss] Files (4) Root file specified for compilation Info seq [hh:mm:ss:mss] ----------------------------------------------- -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (5) @@ -220,38 +204,6 @@ Info seq [hh:mm:ss:mss] response: } } After Request -watchedFiles:: -/home/src/tslibs/TS/Lib/lib.d.ts: - {"pollingInterval":500} -/home/src/tslibs/TS/Lib/lib.decorators.d.ts: - {"pollingInterval":500} -/home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts: - {"pollingInterval":500} -/home/src/workspaces/project/jsconfig.json: - {"pollingInterval":2000} -/home/src/workspaces/project/tsconfig.json: - {"pollingInterval":2000} - -watchedDirectoriesRecursive:: -/home/src/workspaces/node_modules: - {} *new* -/home/src/workspaces/node_modules/@types: - {} *new* -/home/src/workspaces/project/node_modules: - {} *new* -/home/src/workspaces/project/node_modules/@types: - {} *new* - -watchedDirectoriesRecursive *deleted*:: -/home/src/workspaces/node_modules: - {} -/home/src/workspaces/node_modules/@types: - {} -/home/src/workspaces/project/node_modules: - {} -/home/src/workspaces/project/node_modules/@types: - {} - Projects:: /dev/null/inferredProject1* (Inferred) *deleted* projectStateVersion: 2 *changed* diff --git a/tests/baselines/reference/tsserver/fourslashServer/referencesInEmptyFileWithMultipleProjects.js b/tests/baselines/reference/tsserver/fourslashServer/referencesInEmptyFileWithMultipleProjects.js index 65fee1b970dfd..84c81e5671486 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/referencesInEmptyFileWithMultipleProjects.js +++ b/tests/baselines/reference/tsserver/fourslashServer/referencesInEmptyFileWithMultipleProjects.js @@ -121,18 +121,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/p Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/a/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/a/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -198,22 +186,16 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: *new* {} - {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project/a/node_modules: *new* {} - {} /home/src/workspaces/project/a/node_modules/@types: *new* {} - {} /home/src/workspaces/project/node_modules: *new* {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -312,22 +294,16 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/a/node_modules: {} - {} /home/src/workspaces/project/a/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) @@ -424,16 +400,8 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/b/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/b/node_modules 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/b/node_modules 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/b/node_modules/@types 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/b/node_modules/@types 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) @@ -529,30 +497,20 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} - {} *new* /home/src/workspaces/project/a/node_modules: {} - {} /home/src/workspaces/project/a/node_modules/@types: {} - {} /home/src/workspaces/project/b/node_modules: *new* {} /home/src/workspaces/project/b/node_modules/@types: *new* {} /home/src/workspaces/project/node_modules: {} - {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} - {} *new* Projects:: /dev/null/inferredProject1* (Inferred) diff --git a/tests/baselines/reference/tsserver/fourslashServer/referencesInStringLiteralValueWithMultipleProjects.js b/tests/baselines/reference/tsserver/fourslashServer/referencesInStringLiteralValueWithMultipleProjects.js index 1ef77e20998c9..67ffd5910dab5 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/referencesInStringLiteralValueWithMultipleProjects.js +++ b/tests/baselines/reference/tsserver/fourslashServer/referencesInStringLiteralValueWithMultipleProjects.js @@ -121,18 +121,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/p Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/a/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/a/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -198,22 +186,16 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: *new* {} - {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project/a/node_modules: *new* {} - {} /home/src/workspaces/project/a/node_modules/@types: *new* {} - {} /home/src/workspaces/project/node_modules: *new* {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -312,22 +294,16 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/a/node_modules: {} - {} /home/src/workspaces/project/a/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) @@ -445,16 +421,8 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/b/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/b/node_modules 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/b/node_modules 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/b/node_modules/@types 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/b/node_modules/@types 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) @@ -550,30 +518,20 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} - {} *new* /home/src/workspaces/project/a/node_modules: {} - {} /home/src/workspaces/project/a/node_modules/@types: {} - {} /home/src/workspaces/project/b/node_modules: *new* {} /home/src/workspaces/project/b/node_modules/@types: *new* {} /home/src/workspaces/project/node_modules: {} - {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} - {} *new* Projects:: /dev/null/inferredProject1* (Inferred) diff --git a/tests/baselines/reference/tsserver/fourslashServer/renameNamedImport.js b/tests/baselines/reference/tsserver/fourslashServer/renameNamedImport.js index 4f47091a982f3..4972dd7175cce 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/renameNamedImport.js +++ b/tests/baselines/reference/tsserver/fourslashServer/renameNamedImport.js @@ -143,14 +143,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspa Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 1 undefined Config: /home/src/workspaces/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/index.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (5) @@ -199,18 +191,6 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/lib/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/lib/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/lib/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/lib/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/lib/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -280,30 +260,20 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: *new* {} - {} - {} /home/src/workspaces/node_modules/@types: *new* {} - {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/lib: *new* {} /home/src/workspaces/project/lib/node_modules: *new* {} - {} /home/src/workspaces/project/lib/node_modules/@types: *new* {} - {} /home/src/workspaces/project/node_modules: *new* {} - {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -388,14 +358,6 @@ Info seq [hh:mm:ss:mss] Files (5) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project 1 undefined Config: /home/src/workspaces/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project 1 undefined Config: /home/src/workspaces/project/tsconfig.json WatchType: Wild card directory -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/workspaces/project/src/index.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/lib/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) @@ -444,36 +406,22 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/lib: {} /home/src/workspaces/project/lib/node_modules: {} - {} /home/src/workspaces/project/lib/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} watchedDirectoriesRecursive *deleted*:: -/home/src/workspaces/node_modules: - {} -/home/src/workspaces/node_modules/@types: - {} /home/src/workspaces/project: {} -/home/src/workspaces/project/node_modules: - {} -/home/src/workspaces/project/node_modules/@types: - {} Projects:: /dev/null/inferredProject1* (Inferred) @@ -559,16 +507,8 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/src/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/node_modules 1 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/node_modules 1 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/node_modules/@types 1 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/node_modules/@types 1 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/src/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/src/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (5) @@ -663,28 +603,18 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} - {} *new* /home/src/workspaces/project/lib: {} /home/src/workspaces/project/lib/node_modules: {} - {} /home/src/workspaces/project/lib/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules: {} - {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} - {} *new* /home/src/workspaces/project/src: *new* {} /home/src/workspaces/project/src/node_modules: *new* diff --git a/tests/baselines/reference/tsserver/fourslashServer/renameNamespaceImport.js b/tests/baselines/reference/tsserver/fourslashServer/renameNamespaceImport.js index 981c1c689e65f..e0a601315ab86 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/renameNamespaceImport.js +++ b/tests/baselines/reference/tsserver/fourslashServer/renameNamespaceImport.js @@ -143,14 +143,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspa Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 1 undefined Config: /home/src/workspaces/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/index.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (5) @@ -199,18 +191,6 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/lib/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/lib/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/lib/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/lib/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/lib/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -280,30 +260,20 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: *new* {} - {} - {} /home/src/workspaces/node_modules/@types: *new* {} - {} - {} /home/src/workspaces/project: *new* {} /home/src/workspaces/project/lib: *new* {} /home/src/workspaces/project/lib/node_modules: *new* {} - {} /home/src/workspaces/project/lib/node_modules/@types: *new* {} - {} /home/src/workspaces/project/node_modules: *new* {} - {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -388,14 +358,6 @@ Info seq [hh:mm:ss:mss] Files (5) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project 1 undefined Config: /home/src/workspaces/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project 1 undefined Config: /home/src/workspaces/project/tsconfig.json WatchType: Wild card directory -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/workspaces/project/src/index.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/lib/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) @@ -444,36 +406,22 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/lib: {} /home/src/workspaces/project/lib/node_modules: {} - {} /home/src/workspaces/project/lib/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} watchedDirectoriesRecursive *deleted*:: -/home/src/workspaces/node_modules: - {} -/home/src/workspaces/node_modules/@types: - {} /home/src/workspaces/project: {} -/home/src/workspaces/project/node_modules: - {} -/home/src/workspaces/project/node_modules/@types: - {} Projects:: /dev/null/inferredProject1* (Inferred) @@ -559,16 +507,8 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/src/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/node_modules 1 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/node_modules 1 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/node_modules/@types 1 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/node_modules/@types 1 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/src/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/src/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (5) @@ -663,28 +603,18 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} - {} *new* /home/src/workspaces/node_modules/@types: {} - {} - {} *new* /home/src/workspaces/project/lib: {} /home/src/workspaces/project/lib/node_modules: {} - {} /home/src/workspaces/project/lib/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules: {} - {} - {} *new* /home/src/workspaces/project/node_modules/@types: {} - {} - {} *new* /home/src/workspaces/project/src: *new* {} /home/src/workspaces/project/src/node_modules: *new* diff --git a/tests/baselines/reference/tsserver/fourslashServer/rewriteRelativeImportExtensionsProjectReferences1.js b/tests/baselines/reference/tsserver/fourslashServer/rewriteRelativeImportExtensionsProjectReferences1.js index 98d4e3467c79d..30e5c54745788 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/rewriteRelativeImportExtensionsProjectReferences1.js +++ b/tests/baselines/reference/tsserver/fourslashServer/rewriteRelativeImportExtensionsProjectReferences1.js @@ -202,14 +202,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/four Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/packages/common/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/packages/common/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/packages/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/packages/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -287,24 +279,20 @@ watchedDirectoriesRecursive:: {} /tests/cases/fourslash/node_modules/@types: *new* {} - {} /tests/cases/fourslash/server/node_modules: *new* {} /tests/cases/fourslash/server/node_modules/@types: *new* {} - {} /tests/cases/fourslash/server/packages/common: *new* {} /tests/cases/fourslash/server/packages/common/node_modules: *new* {} /tests/cases/fourslash/server/packages/common/node_modules/@types: *new* {} - {} /tests/cases/fourslash/server/packages/node_modules: *new* {} /tests/cases/fourslash/server/packages/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -381,19 +369,11 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/packages/main 1 undefined Config: /tests/cases/fourslash/server/packages/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/packages/main 1 undefined Config: /tests/cases/fourslash/server/packages/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /tests/cases/fourslash/server/packages/main/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/packages/common/src/package.json 2000 undefined Project: /tests/cases/fourslash/server/packages/main/tsconfig.json WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/packages/common/package.json 2000 undefined Project: /tests/cases/fourslash/server/packages/main/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/packages/main/src/package.json 2000 undefined Project: /tests/cases/fourslash/server/packages/main/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/packages/main/package.json 2000 undefined Project: /tests/cases/fourslash/server/packages/main/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.esnext.full.d.ts 500 undefined Project: /tests/cases/fourslash/server/packages/main/tsconfig.json WatchType: Missing file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/packages/main/node_modules/@types 1 undefined Project: /tests/cases/fourslash/server/packages/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/packages/main/node_modules/@types 1 undefined Project: /tests/cases/fourslash/server/packages/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/packages/node_modules/@types 1 undefined Project: /tests/cases/fourslash/server/packages/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/packages/node_modules/@types 1 undefined Project: /tests/cases/fourslash/server/packages/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /tests/cases/fourslash/server/packages/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /tests/cases/fourslash/server/packages/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /tests/cases/fourslash/server/packages/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /tests/cases/fourslash/server/packages/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /tests/cases/fourslash/server/packages/main/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/tests/cases/fourslash/server/packages/main/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -522,12 +502,10 @@ watchedFiles:: /tests/cases/fourslash/server/packages/common/package.json: {"pollingInterval":2000} {"pollingInterval":250} - {"pollingInterval":2000} *new* /tests/cases/fourslash/server/packages/common/src/index.ts: {"pollingInterval":500} /tests/cases/fourslash/server/packages/common/src/package.json: {"pollingInterval":2000} - {"pollingInterval":2000} *new* /tests/cases/fourslash/server/packages/common/tsconfig.json: {"pollingInterval":2000} /tests/cases/fourslash/server/packages/jsconfig.json: @@ -549,21 +527,16 @@ watchedDirectoriesRecursive:: {} /tests/cases/fourslash/node_modules/@types: {} - {} - {} *new* /tests/cases/fourslash/server/node_modules: {} /tests/cases/fourslash/server/node_modules/@types: {} - {} - {} *new* /tests/cases/fourslash/server/packages/common: {} /tests/cases/fourslash/server/packages/common/node_modules: {} /tests/cases/fourslash/server/packages/common/node_modules/@types: {} - {} /tests/cases/fourslash/server/packages/main: *new* {} /tests/cases/fourslash/server/packages/main/node_modules/@types: *new* @@ -572,8 +545,6 @@ watchedDirectoriesRecursive:: {} /tests/cases/fourslash/server/packages/node_modules/@types: {} - {} - {} *new* Projects:: /dev/null/inferredProject1* (Inferred) diff --git a/tests/baselines/reference/tsserver/fourslashServer/rewriteRelativeImportExtensionsProjectReferences2.js b/tests/baselines/reference/tsserver/fourslashServer/rewriteRelativeImportExtensionsProjectReferences2.js index d862b9f83843f..db4c50b33ef96 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/rewriteRelativeImportExtensionsProjectReferences2.js +++ b/tests/baselines/reference/tsserver/fourslashServer/rewriteRelativeImportExtensionsProjectReferences2.js @@ -237,12 +237,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /tests/cases/fourslash Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.esnext.full.d.ts 500 undefined Project: /tests/cases/fourslash/server/src/services/tsconfig.json WatchType: Missing file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/src/services/node_modules/@types 1 undefined Project: /tests/cases/fourslash/server/src/services/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/src/services/node_modules/@types 1 undefined Project: /tests/cases/fourslash/server/src/services/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/src/node_modules/@types 1 undefined Project: /tests/cases/fourslash/server/src/services/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/src/node_modules/@types 1 undefined Project: /tests/cases/fourslash/server/src/services/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /tests/cases/fourslash/server/src/services/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /tests/cases/fourslash/server/src/services/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /tests/cases/fourslash/server/src/services/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /tests/cases/fourslash/server/src/services/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /tests/cases/fourslash/server/src/services/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/tests/cases/fourslash/server/src/services/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -391,19 +385,16 @@ watchedDirectoriesRecursive:: {} /tests/cases/fourslash/node_modules/@types: {} - {} *new* /tests/cases/fourslash/server/node_modules: {} /tests/cases/fourslash/server/node_modules/@types: {} - {} *new* /tests/cases/fourslash/server/src/compiler: *new* {} /tests/cases/fourslash/server/src/node_modules: {} /tests/cases/fourslash/server/src/node_modules/@types: {} - {} *new* /tests/cases/fourslash/server/src/services: *new* {} /tests/cases/fourslash/server/src/services/node_modules/@types: *new* diff --git a/tests/baselines/reference/tsserver/fourslashServer/rewriteRelativeImportExtensionsProjectReferences3.js b/tests/baselines/reference/tsserver/fourslashServer/rewriteRelativeImportExtensionsProjectReferences3.js index 78c9e35bd8de5..74ecf4e48a320 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/rewriteRelativeImportExtensionsProjectReferences3.js +++ b/tests/baselines/reference/tsserver/fourslashServer/rewriteRelativeImportExtensionsProjectReferences3.js @@ -240,12 +240,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /tests/cases/fourslash Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.esnext.full.d.ts 500 undefined Project: /tests/cases/fourslash/server/src/services/tsconfig.json WatchType: Missing file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/src/services/node_modules/@types 1 undefined Project: /tests/cases/fourslash/server/src/services/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/src/services/node_modules/@types 1 undefined Project: /tests/cases/fourslash/server/src/services/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/src/node_modules/@types 1 undefined Project: /tests/cases/fourslash/server/src/services/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/src/node_modules/@types 1 undefined Project: /tests/cases/fourslash/server/src/services/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /tests/cases/fourslash/server/src/services/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /tests/cases/fourslash/server/src/services/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /tests/cases/fourslash/server/src/services/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /tests/cases/fourslash/server/src/services/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /tests/cases/fourslash/server/src/services/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/tests/cases/fourslash/server/src/services/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -394,19 +388,16 @@ watchedDirectoriesRecursive:: {} /tests/cases/fourslash/node_modules/@types: {} - {} *new* /tests/cases/fourslash/server/node_modules: {} /tests/cases/fourslash/server/node_modules/@types: {} - {} *new* /tests/cases/fourslash/server/src/compiler: *new* {} /tests/cases/fourslash/server/src/node_modules: {} /tests/cases/fourslash/server/src/node_modules/@types: {} - {} *new* /tests/cases/fourslash/server/src/services: *new* {} /tests/cases/fourslash/server/src/services/node_modules/@types: *new* diff --git a/tests/baselines/reference/tsserver/fourslashServer/tripleSlashReferenceResolutionMode.js b/tests/baselines/reference/tsserver/fourslashServer/tripleSlashReferenceResolutionMode.js index dad56fd318bf8..24997b790c298 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/tripleSlashReferenceResolutionMode.js +++ b/tests/baselines/reference/tsserver/fourslashServer/tripleSlashReferenceResolutionMode.js @@ -180,16 +180,8 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.decorators.legacy.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -259,16 +251,12 @@ watchedFiles:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: *new* {} - {} /home/src/workspaces/node_modules/@types: *new* {} - {} /home/src/workspaces/project/node_modules: *new* {} - {} /home/src/workspaces/project/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* @@ -367,16 +355,12 @@ watchedFiles *deleted*:: watchedDirectoriesRecursive:: /home/src/workspaces/node_modules: {} - {} /home/src/workspaces/node_modules/@types: {} - {} /home/src/workspaces/project/node_modules: {} - {} /home/src/workspaces/project/node_modules/@types: {} - {} Projects:: /dev/null/inferredProject1* (Inferred) diff --git a/tests/baselines/reference/tsserver/fourslashServer/tsconfigComputedPropertyError.js b/tests/baselines/reference/tsserver/fourslashServer/tsconfigComputedPropertyError.js index 1950de09baa50..52335260e6ff4 100644 --- a/tests/baselines/reference/tsserver/fourslashServer/tsconfigComputedPropertyError.js +++ b/tests/baselines/reference/tsserver/fourslashServer/tsconfigComputedPropertyError.js @@ -142,14 +142,6 @@ Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /tests/cases/fourslash Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, currentDirectory: /tests/cases/fourslash/server Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/server/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /tests/cases/fourslash/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -209,16 +201,12 @@ watchedFiles:: watchedDirectoriesRecursive:: /tests/cases/fourslash/node_modules: *new* {} - {} /tests/cases/fourslash/node_modules/@types: *new* {} - {} /tests/cases/fourslash/server/node_modules: *new* {} - {} /tests/cases/fourslash/server/node_modules/@types: *new* {} - {} Projects:: /dev/null/inferredProject1* (Inferred) *new* diff --git a/tests/baselines/reference/tsserver/getEditsForFileRename/works-with-file-moved-to-inferred-project.js b/tests/baselines/reference/tsserver/getEditsForFileRename/works-with-file-moved-to-inferred-project.js index d23522db37165..bf0c4ad26017c 100644 --- a/tests/baselines/reference/tsserver/getEditsForFileRename/works-with-file-moved-to-inferred-project.js +++ b/tests/baselines/reference/tsserver/getEditsForFileRename/works-with-file-moved-to-inferred-project.js @@ -65,10 +65,10 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project 0 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project 0 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/b.ts 500 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Missing file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Type roots @@ -278,10 +278,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, currentDirectory: /home/src/projects/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/getEditsForFileRename/works-with-multiple-projects.js b/tests/baselines/reference/tsserver/getEditsForFileRename/works-with-multiple-projects.js index 04aee031b9ed8..508e9d935b8e1 100644 --- a/tests/baselines/reference/tsserver/getEditsForFileRename/works-with-multiple-projects.js +++ b/tests/baselines/reference/tsserver/getEditsForFileRename/works-with-multiple-projects.js @@ -250,10 +250,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/importHelpers/import-helpers-successfully.js b/tests/baselines/reference/tsserver/importHelpers/import-helpers-successfully.js index 8025b01876796..423cb669b7351 100644 --- a/tests/baselines/reference/tsserver/importHelpers/import-helpers-successfully.js +++ b/tests/baselines/reference/tsserver/importHelpers/import-helpers-successfully.js @@ -184,10 +184,6 @@ Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /user/username/workspa Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, currentDirectory: /user/username/workspace/projects Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/workspace/projects/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/workspace/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/workspace/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/workspace/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/workspace/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -298,13 +294,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/workspace/projects", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -344,7 +338,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -368,7 +361,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -483,10 +475,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/wo Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/workspace/node_modules 1 undefined Project: /user/username/workspace/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/workspace/projects/project/node_modules/@types 1 undefined Project: /user/username/workspace/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/workspace/projects/project/node_modules/@types 1 undefined Project: /user/username/workspace/projects/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/workspace/projects/node_modules/@types 1 undefined Project: /user/username/workspace/projects/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/workspace/projects/node_modules/@types 1 undefined Project: /user/username/workspace/projects/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/workspace/node_modules/@types 1 undefined Project: /user/username/workspace/projects/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/workspace/node_modules/@types 1 undefined Project: /user/username/workspace/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/workspace/projects/project/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/workspace/projects/project/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) @@ -594,10 +582,6 @@ Info seq [hh:mm:ss:mss] Files (4) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/workspace/projects 1 undefined Config: /user/username/workspace/projects/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/workspace/projects 1 undefined Config: /user/username/workspace/projects/tsconfig.json WatchType: Wild card directory -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/workspace/projects/node_modules/@types 1 undefined Project: /user/username/workspace/projects/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/workspace/projects/node_modules/@types 1 undefined Project: /user/username/workspace/projects/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/workspace/node_modules/@types 1 undefined Project: /user/username/workspace/projects/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/workspace/node_modules/@types 1 undefined Project: /user/username/workspace/projects/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/user/username/workspace/projects/project/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) diff --git a/tests/baselines/reference/tsserver/importHelpers/should-not-crash-in-tsserver.js b/tests/baselines/reference/tsserver/importHelpers/should-not-crash-in-tsserver.js index 025d26014bc34..1ac6970a122ba 100644 --- a/tests/baselines/reference/tsserver/importHelpers/should-not-crash-in-tsserver.js +++ b/tests/baselines/reference/tsserver/importHelpers/should-not-crash-in-tsserver.js @@ -45,11 +45,11 @@ Info seq [hh:mm:ss:mss] request: Info seq [hh:mm:ss:mss] Creating ExternalProject: p, currentDirectory: Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/app.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: p +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules 1 undefined Project: p WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules 1 undefined Project: p WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules 1 undefined Project: p WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules 1 undefined Project: p WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/tslib/package.json 2000 undefined Project: p WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/package.json 2000 undefined Project: p WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/package.json 2000 undefined Project: p WatchType: File location affecting resolution diff --git a/tests/baselines/reference/tsserver/inferredProjects/closing-file-with-shared-resolutions.js b/tests/baselines/reference/tsserver/inferredProjects/closing-file-with-shared-resolutions.js index 184f3ed7a674a..0465d0cca4f6e 100644 --- a/tests/baselines/reference/tsserver/inferredProjects/closing-file-with-shared-resolutions.js +++ b/tests/baselines/reference/tsserver/inferredProjects/closing-file-with-shared-resolutions.js @@ -126,18 +126,14 @@ Info seq [hh:mm:ss:mss] request: Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /user/username/projects/myproject/app.ts ProjectRootPath: /user/username/projects/myproject:: Result: undefined Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, currentDirectory: /user/username/projects/myproject Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects 0 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects 0 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/inferredProjects/inferred-projects-per-project-root-with-case-insensitive-system.js b/tests/baselines/reference/tsserver/inferredProjects/inferred-projects-per-project-root-with-case-insensitive-system.js index 916c29cffa605..3d5010a001c6f 100644 --- a/tests/baselines/reference/tsserver/inferredProjects/inferred-projects-per-project-root-with-case-insensitive-system.js +++ b/tests/baselines/reference/tsserver/inferredProjects/inferred-projects-per-project-root-with-case-insensitive-system.js @@ -184,13 +184,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -229,7 +227,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -252,7 +249,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -355,12 +351,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -391,7 +385,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -414,7 +407,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -483,10 +475,6 @@ Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferred Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.esnext.full.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -519,12 +507,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/b", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -563,7 +549,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -586,7 +571,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -742,12 +726,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -786,7 +768,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -809,7 +790,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -1544,12 +1524,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -1580,7 +1558,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -1603,7 +1580,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -1666,10 +1642,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us TI:: [hh:mm:ss:mss] Closing file watchers for project '/dev/null/inferredProject2*' - done. Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/project/A/file2.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/project/b/file2.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/tslibs/TS/Lib/lib.esnext.full.d.ts 500 undefined WatchType: Closed Script info @@ -1846,12 +1818,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -1882,7 +1852,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -1905,7 +1874,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -1973,10 +1941,6 @@ Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferred Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.esnext.full.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject4* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject4*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -2009,12 +1973,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/b", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -2053,7 +2015,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -2076,7 +2037,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -2230,12 +2190,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -2274,7 +2232,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -2297,7 +2254,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -3059,12 +3015,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -3095,7 +3049,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -3118,7 +3071,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -3181,10 +3133,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us TI:: [hh:mm:ss:mss] Closing file watchers for project '/dev/null/inferredProject4*' - done. Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/tslibs/TS/Lib/lib.es6.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/project/A/file2.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/project/b/file2.ts 500 undefined WatchType: Closed Script info @@ -3370,12 +3318,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -3406,7 +3352,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -3429,7 +3374,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -3497,10 +3441,6 @@ Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferred Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.esnext.full.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject6* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject6* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject6* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject6* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject6* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject6* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject6* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject6*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -3533,12 +3473,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/b", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -3577,7 +3515,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -3600,7 +3537,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -3754,12 +3690,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -3798,7 +3732,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -3821,7 +3754,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -4556,12 +4488,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -4592,7 +4522,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -4615,7 +4544,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -4678,10 +4606,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us TI:: [hh:mm:ss:mss] Closing file watchers for project '/dev/null/inferredProject6*' - done. Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject6* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject6* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject6* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject6* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject6* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject6* WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/project/A/file2.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/project/b/file2.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/tslibs/TS/Lib/lib.esnext.full.d.ts 500 undefined WatchType: Closed Script info @@ -4858,12 +4782,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -4894,7 +4816,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -4917,7 +4838,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -4985,10 +4905,6 @@ Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferred Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.esnext.full.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject8* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject8* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject8* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject8* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject8* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject8* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject8* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject8*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -5021,12 +4937,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/b", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -5065,7 +4979,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -5088,7 +5001,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -5242,12 +5154,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -5286,7 +5196,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -5309,7 +5218,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/inferredProjects/inferred-projects-per-project-root-with-case-sensitive-system.js b/tests/baselines/reference/tsserver/inferredProjects/inferred-projects-per-project-root-with-case-sensitive-system.js index 4c5518ca6d211..62399a3bb9674 100644 --- a/tests/baselines/reference/tsserver/inferredProjects/inferred-projects-per-project-root-with-case-sensitive-system.js +++ b/tests/baselines/reference/tsserver/inferredProjects/inferred-projects-per-project-root-with-case-sensitive-system.js @@ -184,13 +184,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -229,7 +227,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -252,7 +249,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -359,12 +355,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -395,7 +389,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -418,7 +411,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -515,10 +507,6 @@ Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferred Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.esnext.full.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -551,12 +539,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/b", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -595,7 +581,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -618,7 +603,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -780,12 +764,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -824,7 +806,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -847,7 +828,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -1594,12 +1574,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -1630,7 +1608,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -1653,7 +1630,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -1716,10 +1692,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us TI:: [hh:mm:ss:mss] Closing file watchers for project '/dev/null/inferredProject2*' - done. Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/project/A/file2.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/project/b/file2.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/tslibs/TS/Lib/lib.esnext.full.d.ts 500 undefined WatchType: Closed Script info @@ -1866,10 +1838,6 @@ Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferred Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.esnext.full.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/A/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/A/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject4* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject4*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -1902,12 +1870,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/A", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -1946,7 +1912,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -1969,7 +1934,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -2080,10 +2044,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject5* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject5* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject5* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject5* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject5* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject5* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject5* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject5* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject5*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -2116,12 +2076,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/b", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -2160,7 +2118,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -2183,7 +2140,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -2356,12 +2312,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -2400,7 +2354,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -2423,7 +2376,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -3267,12 +3219,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -3303,7 +3253,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -3326,7 +3275,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -3389,10 +3337,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us TI:: [hh:mm:ss:mss] Closing file watchers for project '/dev/null/inferredProject4*' - done. Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/A/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/A/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject5*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -3420,10 +3364,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us TI:: [hh:mm:ss:mss] Closing file watchers for project '/dev/null/inferredProject5*' - done. Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject5* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject5* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject5* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject5* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject5* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject5* WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/project/A/file2.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/tslibs/TS/Lib/lib.esnext.full.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/project/b/file2.ts 500 undefined WatchType: Closed Script info @@ -3618,12 +3558,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -3654,7 +3592,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -3677,7 +3614,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -3773,10 +3709,6 @@ Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferred Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.esnext.full.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject7* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject7* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject7* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject7* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject7* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject7* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject7* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject7*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -3809,12 +3741,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/b", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -3853,7 +3783,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -3876,7 +3805,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -4036,12 +3964,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -4080,7 +4006,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -4103,7 +4028,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -4850,12 +4774,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -4886,7 +4808,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -4909,7 +4830,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -4972,10 +4892,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us TI:: [hh:mm:ss:mss] Closing file watchers for project '/dev/null/inferredProject7*' - done. Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject7* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject7* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject7* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject7* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject7* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject7* WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/project/A/file2.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/project/b/file2.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/tslibs/TS/Lib/lib.esnext.full.d.ts 500 undefined WatchType: Closed Script info @@ -5122,10 +5038,6 @@ Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferred Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.es2017.full.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/A/node_modules/@types 1 undefined Project: /dev/null/inferredProject9* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/A/node_modules/@types 1 undefined Project: /dev/null/inferredProject9* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject9* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject9* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject9* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject9* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject9* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject9*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -5158,12 +5070,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/A", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -5202,7 +5112,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -5225,7 +5134,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -5339,10 +5247,6 @@ Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferred Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.esnext.full.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject10* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject10* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject10* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject10* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject10* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject10* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject10* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject10*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -5375,12 +5279,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/b", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -5419,7 +5321,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -5442,7 +5343,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -5620,12 +5520,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -5664,7 +5562,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -5687,7 +5584,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/inferredProjects/inferred-projects-per-project-root.js b/tests/baselines/reference/tsserver/inferredProjects/inferred-projects-per-project-root.js index f3c67290fd42c..b76f0083e7cd2 100644 --- a/tests/baselines/reference/tsserver/inferredProjects/inferred-projects-per-project-root.js +++ b/tests/baselines/reference/tsserver/inferredProjects/inferred-projects-per-project-root.js @@ -184,13 +184,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -229,7 +227,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -252,7 +249,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -355,12 +351,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -391,7 +385,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -414,7 +407,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -483,10 +475,6 @@ Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferred Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.es6.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -519,12 +507,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/b", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -563,7 +549,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -586,7 +571,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -742,12 +726,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -786,7 +768,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -809,7 +790,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/inferredProjects/project-settings-for-inferred-projects.js b/tests/baselines/reference/tsserver/inferredProjects/project-settings-for-inferred-projects.js index 6082b65094c3d..5bfeb524283bb 100644 --- a/tests/baselines/reference/tsserver/inferredProjects/project-settings-for-inferred-projects.js +++ b/tests/baselines/reference/tsserver/inferredProjects/project-settings-for-inferred-projects.js @@ -41,13 +41,13 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/b/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/b/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots @@ -143,10 +143,6 @@ Info seq [hh:mm:ss:mss] request: Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /user/username/projects/project/mod.ts ProjectRootPath: undefined:: Result: undefined Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, currentDirectory: /user/username/projects/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/inferredProjects/regression-test---should-infer-typeAcquisition-for-inferred-projects-when-set-undefined.js b/tests/baselines/reference/tsserver/inferredProjects/regression-test---should-infer-typeAcquisition-for-inferred-projects-when-set-undefined.js index 43b1d95ef8eb9..1c6401eb2a9dd 100644 --- a/tests/baselines/reference/tsserver/inferredProjects/regression-test---should-infer-typeAcquisition-for-inferred-projects-when-set-undefined.js +++ b/tests/baselines/reference/tsserver/inferredProjects/regression-test---should-infer-typeAcquisition-for-inferred-projects-when-set-undefined.js @@ -134,13 +134,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -180,7 +178,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -204,7 +201,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/inferredProjects/should-still-retain-configured-project-created-while-opening-the-file.js b/tests/baselines/reference/tsserver/inferredProjects/should-still-retain-configured-project-created-while-opening-the-file.js index d3b7034bb95bf..a176063e810fa 100644 --- a/tests/baselines/reference/tsserver/inferredProjects/should-still-retain-configured-project-created-while-opening-the-file.js +++ b/tests/baselines/reference/tsserver/inferredProjects/should-still-retain-configured-project-created-while-opening-the-file.js @@ -148,10 +148,6 @@ Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /user/username/project Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, currentDirectory: /user/username/projects/myproject Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -250,13 +246,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/myproject", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -296,7 +290,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -320,7 +313,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -532,12 +524,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/myproject", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -569,7 +559,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -593,7 +582,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -709,10 +697,6 @@ Info seq [hh:mm:ss:mss] event: } Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, currentDirectory: /user/username/projects/myproject Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -746,12 +730,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/myproject", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -791,7 +773,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -815,7 +796,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -911,10 +891,6 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/app.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/inferredProjects/should-support-files-without-extensions.js b/tests/baselines/reference/tsserver/inferredProjects/should-support-files-without-extensions.js index 0219ae42cf216..14fc370349818 100644 --- a/tests/baselines/reference/tsserver/inferredProjects/should-support-files-without-extensions.js +++ b/tests/baselines/reference/tsserver/inferredProjects/should-support-files-without-extensions.js @@ -144,13 +144,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -188,7 +186,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -210,7 +207,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/inferredProjects/when-existing-inferred-project-has-no-root-files.js b/tests/baselines/reference/tsserver/inferredProjects/when-existing-inferred-project-has-no-root-files.js index cf9a433921586..bccc96d13c4b8 100644 --- a/tests/baselines/reference/tsserver/inferredProjects/when-existing-inferred-project-has-no-root-files.js +++ b/tests/baselines/reference/tsserver/inferredProjects/when-existing-inferred-project-has-no-root-files.js @@ -62,13 +62,13 @@ Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferred Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/module.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/module3/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/module2.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/module3/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots @@ -418,7 +418,6 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/myproject", "kind": "discover" } @@ -426,7 +425,6 @@ TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslib TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Searching for typing names in /user/username/projects/myproject/node_modules; all files: ["/user/username/projects/myproject/node_modules/module3/package.json"] TI:: [hh:mm:ss:mss] Found package names: ["module3"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -470,7 +468,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -493,7 +490,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/languageService/should-support-multiple-projects-with-the-same-file-under-differing-paths-settings.js b/tests/baselines/reference/tsserver/languageService/should-support-multiple-projects-with-the-same-file-under-differing-paths-settings.js index 463dc612fd326..47fe649b0dd03 100644 --- a/tests/baselines/reference/tsserver/languageService/should-support-multiple-projects-with-the-same-file-under-differing-paths-settings.js +++ b/tests/baselines/reference/tsserver/languageService/should-support-multiple-projects-with-the-same-file-under-differing-paths-settings.js @@ -278,10 +278,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) diff --git a/tests/baselines/reference/tsserver/libraryResolution/with-config.js b/tests/baselines/reference/tsserver/libraryResolution/with-config.js index a83105a2fb4df..c9753bafc3a2e 100644 --- a/tests/baselines/reference/tsserver/libraryResolution/with-config.js +++ b/tests/baselines/reference/tsserver/libraryResolution/with-config.js @@ -1760,13 +1760,13 @@ Info seq [hh:mm:ss:mss] File '/home/src/workspace/projects/node_modules/@typesc Info seq [hh:mm:ss:mss] Resolving real path for '/home/src/workspace/projects/node_modules/@typescript/lib-dom/index.d.ts', result '/home/src/workspace/projects/node_modules/@typescript/lib-dom/index.d.ts'. Info seq [hh:mm:ss:mss] ======== Module name '@typescript/lib-dom' was successfully resolved to '/home/src/workspace/projects/node_modules/@typescript/lib-dom/index.d.ts'. ======== Info seq [hh:mm:ss:mss] File '/home/src/workspace/projects/node_modules/@typescript/lib-dom/package.json' does not exist according to earlier cached lookups. -Info seq [hh:mm:ss:mss] File '/home/src/workspace/projects/node_modules/@typescript/package.json' does not exist according to earlier cached lookups. -Info seq [hh:mm:ss:mss] File '/home/src/workspace/projects/node_modules/package.json' does not exist according to earlier cached lookups. -Info seq [hh:mm:ss:mss] File '/home/src/workspace/projects/package.json' does not exist according to earlier cached lookups. -Info seq [hh:mm:ss:mss] File '/home/src/workspace/package.json' does not exist according to earlier cached lookups. -Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. -Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. -Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspace/projects/node_modules/@typescript/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspace/projects/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspace/projects/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspace/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist. Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspace/projects/node_modules/@typescript/lib-dom/package.json 2000 undefined Project: /home/src/workspace/projects/project1/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspace/projects/node_modules/@typescript/package.json 2000 undefined Project: /home/src/workspace/projects/project1/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspace/projects/node_modules/package.json 2000 undefined Project: /home/src/workspace/projects/project1/tsconfig.json WatchType: File location affecting resolution diff --git a/tests/baselines/reference/tsserver/maxNodeModuleJsDepth/handles-resolutions-when-currentNodeModulesDepth-changes-when-referencing-file-from-another-file.js b/tests/baselines/reference/tsserver/maxNodeModuleJsDepth/handles-resolutions-when-currentNodeModulesDepth-changes-when-referencing-file-from-another-file.js index af77d82b0a4ec..114df6350c2fc 100644 --- a/tests/baselines/reference/tsserver/maxNodeModuleJsDepth/handles-resolutions-when-currentNodeModulesDepth-changes-when-referencing-file-from-another-file.js +++ b/tests/baselines/reference/tsserver/maxNodeModuleJsDepth/handles-resolutions-when-currentNodeModulesDepth-changes-when-referencing-file-from-another-file.js @@ -54,15 +54,15 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project1/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project1/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project1/src/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project1/src/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project1/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project1/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project1/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project1/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project1/src/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project1/src/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project1/src/node_modules/minimatch/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project1/src/node_modules/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project1/src/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution diff --git a/tests/baselines/reference/tsserver/maxNodeModuleJsDepth/should-be-set-to-2-if-the-project-has-js-root-files.js b/tests/baselines/reference/tsserver/maxNodeModuleJsDepth/should-be-set-to-2-if-the-project-has-js-root-files.js index 7c7fbd2cf9a5b..0ae9929842ff6 100644 --- a/tests/baselines/reference/tsserver/maxNodeModuleJsDepth/should-be-set-to-2-if-the-project-has-js-root-files.js +++ b/tests/baselines/reference/tsserver/maxNodeModuleJsDepth/should-be-set-to-2-if-the-project-has-js-root-files.js @@ -39,13 +39,13 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/test/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution diff --git a/tests/baselines/reference/tsserver/moduleResolution/alternateResult.js b/tests/baselines/reference/tsserver/moduleResolution/alternateResult.js index 474cf0ec354f4..8099e8226ab48 100644 --- a/tests/baselines/reference/tsserver/moduleResolution/alternateResult.js +++ b/tests/baselines/reference/tsserver/moduleResolution/alternateResult.js @@ -241,6 +241,15 @@ Info seq [hh:mm:ss:mss] 'package.json' has 'types' field 'index.d.ts' that refe Info seq [hh:mm:ss:mss] File '/home/src/projects/project/node_modules/foo/index.d.ts' exists - use it as a name resolution result. Info seq [hh:mm:ss:mss] Resolving real path for '/home/src/projects/project/node_modules/foo/index.mjs', result '/home/src/projects/project/node_modules/foo/index.mjs'. Info seq [hh:mm:ss:mss] ======== Module name 'foo' was successfully resolved to '/home/src/projects/project/node_modules/foo/index.mjs' with Package ID 'foo/index.mjs@1.0.0'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project 0 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project 0 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects 0 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects 0 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/foo/package.json 2000 undefined Project: /home/src/projects/project/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/home/src/projects/project/index.mts'. ======== Info seq [hh:mm:ss:mss] Explicitly specified module resolution kind: 'Node16'. Info seq [hh:mm:ss:mss] Resolving in ESM mode with conditions 'import', 'types', 'node'. @@ -313,6 +322,8 @@ Info seq [hh:mm:ss:mss] File '/home/src/projects/project/node_modules/@types/ba Info seq [hh:mm:ss:mss] 'package.json' does not have a 'peerDependencies' field. Info seq [hh:mm:ss:mss] Resolving real path for '/home/src/projects/project/node_modules/bar/index.mjs', result '/home/src/projects/project/node_modules/bar/index.mjs'. Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/home/src/projects/project/node_modules/bar/index.mjs' with Package ID 'bar/index.mjs@1.0.0'. ======== +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/bar/package.json 2000 undefined Project: /home/src/projects/project/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types/bar/package.json 2000 undefined Project: /home/src/projects/project/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] ======== Resolving module 'foo2' from '/home/src/projects/project/index.mts'. ======== Info seq [hh:mm:ss:mss] Explicitly specified module resolution kind: 'Node16'. Info seq [hh:mm:ss:mss] Resolving in ESM mode with conditions 'import', 'types', 'node'. @@ -333,6 +344,7 @@ Info seq [hh:mm:ss:mss] Resolved under condition 'types'. Info seq [hh:mm:ss:mss] Exiting conditional exports. Info seq [hh:mm:ss:mss] Resolving real path for '/home/src/projects/project/node_modules/foo2/index.d.ts', result '/home/src/projects/project/node_modules/foo2/index.d.ts'. Info seq [hh:mm:ss:mss] ======== Module name 'foo2' was successfully resolved to '/home/src/projects/project/node_modules/foo2/index.d.ts' with Package ID 'foo2/index.d.ts@1.0.0'. ======== +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/foo2/package.json 2000 undefined Project: /home/src/projects/project/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] ======== Resolving module 'bar2' from '/home/src/projects/project/index.mts'. ======== Info seq [hh:mm:ss:mss] Explicitly specified module resolution kind: 'Node16'. Info seq [hh:mm:ss:mss] Resolving in ESM mode with conditions 'import', 'types', 'node'. @@ -363,6 +375,8 @@ Info seq [hh:mm:ss:mss] Resolved under condition 'types'. Info seq [hh:mm:ss:mss] Exiting conditional exports. Info seq [hh:mm:ss:mss] Resolving real path for '/home/src/projects/project/node_modules/@types/bar2/index.d.ts', result '/home/src/projects/project/node_modules/@types/bar2/index.d.ts'. Info seq [hh:mm:ss:mss] ======== Module name 'bar2' was successfully resolved to '/home/src/projects/project/node_modules/@types/bar2/index.d.ts' with Package ID '@types/bar2/index.d.ts@1.0.0'. ======== +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/bar2/package.json 2000 undefined Project: /home/src/projects/project/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types/bar2/package.json 2000 undefined Project: /home/src/projects/project/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] File '/home/src/projects/project/node_modules/foo2/package.json' exists according to earlier cached lookups. Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache @@ -374,20 +388,6 @@ Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects 0 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects 0 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project 0 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project 0 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/foo/package.json 2000 undefined Project: /home/src/projects/project/tsconfig.json WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/bar/package.json 2000 undefined Project: /home/src/projects/project/tsconfig.json WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types/bar/package.json 2000 undefined Project: /home/src/projects/project/tsconfig.json WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/foo2/package.json 2000 undefined Project: /home/src/projects/project/tsconfig.json WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/bar2/package.json 2000 undefined Project: /home/src/projects/project/tsconfig.json WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types/bar2/package.json 2000 undefined Project: /home/src/projects/project/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/package.json 2000 undefined Project: /home/src/projects/project/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/package.json 2000 undefined Project: /home/src/projects/project/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/package.json 2000 undefined Project: /home/src/projects/project/tsconfig.json WatchType: File location affecting resolution @@ -746,11 +746,11 @@ Info seq [hh:mm:ss:mss] event: After running Immedidate callback:: count: 0 delete the alternateResult in @types -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/@types/bar/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/@types/bar/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/@types/bar/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Scheduled: /home/src/projects/project/tsconfig.jsonFailedLookupInvalidation Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/@types/bar/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/@types/bar/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/@types/bar/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Before running Timeout callback:: count: 1 2: /home/src/projects/project/tsconfig.jsonFailedLookupInvalidation //// [/home/src/projects/project/node_modules/@types/bar/index.d.ts] deleted @@ -1102,11 +1102,11 @@ Info seq [hh:mm:ss:mss] event: After running Immedidate callback:: count: 0 delete the ndoe10Result in package/types -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/foo/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/foo/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/foo/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Scheduled: /home/src/projects/project/tsconfig.jsonFailedLookupInvalidation Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/foo/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/foo/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/foo/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Before running Timeout callback:: count: 1 6: /home/src/projects/project/tsconfig.jsonFailedLookupInvalidation //// [/home/src/projects/project/node_modules/foo/index.d.ts] deleted @@ -1438,11 +1438,11 @@ Info seq [hh:mm:ss:mss] event: After running Immedidate callback:: count: 0 add the alternateResult in @types -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/@types/bar/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/@types/bar/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/@types/bar/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Scheduled: /home/src/projects/project/tsconfig.jsonFailedLookupInvalidation Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/@types/bar/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/@types/bar/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/@types/bar/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Before running Timeout callback:: count: 1 10: /home/src/projects/project/tsconfig.jsonFailedLookupInvalidation //// [/home/src/projects/project/node_modules/@types/bar/index.d.ts] @@ -1784,11 +1784,11 @@ Info seq [hh:mm:ss:mss] event: After running Immedidate callback:: count: 0 add the alternateResult in package/types -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/foo/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/foo/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/foo/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Scheduled: /home/src/projects/project/tsconfig.jsonFailedLookupInvalidation Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/foo/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/foo/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/foo/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Before running Timeout callback:: count: 1 14: /home/src/projects/project/tsconfig.jsonFailedLookupInvalidation //// [/home/src/projects/project/node_modules/foo/index.d.ts] @@ -2935,6 +2935,8 @@ Info seq [hh:mm:ss:mss] File '/home/src/projects/project/node_modules/@types/ba Info seq [hh:mm:ss:mss] 'package.json' does not have a 'peerDependencies' field. Info seq [hh:mm:ss:mss] Resolving real path for '/home/src/projects/project/node_modules/bar2/index.mjs', result '/home/src/projects/project/node_modules/bar2/index.mjs'. Info seq [hh:mm:ss:mss] ======== Module name 'bar2' was successfully resolved to '/home/src/projects/project/node_modules/bar2/index.mjs' with Package ID 'bar2/index.mjs@1.0.0'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] File '/home/src/projects/project/node_modules/foo/package.json' exists according to earlier cached lookups. Info seq [hh:mm:ss:mss] File '/home/src/projects/project/node_modules/@types/bar/package.json' exists according to earlier cached lookups. Info seq [hh:mm:ss:mss] File '/home/src/projects/project/node_modules/foo2/package.json' exists according to earlier cached lookups. @@ -2944,8 +2946,6 @@ Info seq [hh:mm:ss:mss] File '/home/src/tslibs/package.json' does not exist acc Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/tsconfig.json projectStateVersion: 8 projectProgramVersion: 7 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (5) @@ -3596,11 +3596,11 @@ Info seq [hh:mm:ss:mss] event: After running Immedidate callback:: count: 0 delete the alternateResult in @types -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/@types/bar2/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/@types/bar2/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/@types/bar2/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Scheduled: /home/src/projects/project/tsconfig.jsonFailedLookupInvalidation Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/@types/bar2/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/@types/bar2/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/@types/bar2/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Before running Timeout callback:: count: 1 34: /home/src/projects/project/tsconfig.jsonFailedLookupInvalidation //// [/home/src/projects/project/node_modules/@types/bar2/index.d.ts] deleted @@ -3976,11 +3976,11 @@ Info seq [hh:mm:ss:mss] event: After running Immedidate callback:: count: 0 delete the ndoe10Result in package/types -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/foo2/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/foo2/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/foo2/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Scheduled: /home/src/projects/project/tsconfig.jsonFailedLookupInvalidation Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/foo2/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/foo2/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/foo2/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Before running Timeout callback:: count: 1 38: /home/src/projects/project/tsconfig.jsonFailedLookupInvalidation //// [/home/src/projects/project/node_modules/foo2/index.d.ts] deleted @@ -4338,11 +4338,11 @@ Info seq [hh:mm:ss:mss] event: After running Immedidate callback:: count: 0 add the alternateResult in @types -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/@types/bar2/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/@types/bar2/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/@types/bar2/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Scheduled: /home/src/projects/project/tsconfig.jsonFailedLookupInvalidation Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/@types/bar2/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/@types/bar2/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/@types/bar2/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Before running Timeout callback:: count: 1 42: /home/src/projects/project/tsconfig.jsonFailedLookupInvalidation //// [/home/src/projects/project/node_modules/@types/bar2/index.d.ts] @@ -4710,11 +4710,11 @@ Info seq [hh:mm:ss:mss] event: After running Immedidate callback:: count: 0 add the ndoe10Result in package/types -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/foo2/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/foo2/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/foo2/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Scheduled: /home/src/projects/project/tsconfig.jsonFailedLookupInvalidation Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/foo2/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/foo2/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/foo2/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Before running Timeout callback:: count: 1 46: /home/src/projects/project/tsconfig.jsonFailedLookupInvalidation //// [/home/src/projects/project/node_modules/foo2/index.d.ts] diff --git a/tests/baselines/reference/tsserver/moduleResolution/package-json-file-is-edited-when-package-json-with-type-module-exists.js b/tests/baselines/reference/tsserver/moduleResolution/package-json-file-is-edited-when-package-json-with-type-module-exists.js index f251d52652acd..0b6f9d797a304 100644 --- a/tests/baselines/reference/tsserver/moduleResolution/package-json-file-is-edited-when-package-json-with-type-module-exists.js +++ b/tests/baselines/reference/tsserver/moduleResolution/package-json-file-is-edited-when-package-json-with-type-module-exists.js @@ -1206,9 +1206,9 @@ Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to e Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. Info seq [hh:mm:ss:mss] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. Info seq [hh:mm:ss:mss] File '/user/username/projects/myproject/package.json' does not exist. -Info seq [hh:mm:ss:mss] File '/user/username/projects/package.json' does not exist according to earlier cached lookups. -Info seq [hh:mm:ss:mss] File '/user/username/package.json' does not exist according to earlier cached lookups. -Info seq [hh:mm:ss:mss] File '/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/user/username/projects/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/user/username/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/user/package.json' does not exist. Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. Info seq [hh:mm:ss:mss] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. Info seq [hh:mm:ss:mss] File '/user/username/projects/myproject/package.json' does not exist according to earlier cached lookups. diff --git a/tests/baselines/reference/tsserver/moduleResolution/package-json-file-is-edited.js b/tests/baselines/reference/tsserver/moduleResolution/package-json-file-is-edited.js index 46644fdcd5411..072496a95a543 100644 --- a/tests/baselines/reference/tsserver/moduleResolution/package-json-file-is-edited.js +++ b/tests/baselines/reference/tsserver/moduleResolution/package-json-file-is-edited.js @@ -1192,9 +1192,9 @@ Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to e Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. Info seq [hh:mm:ss:mss] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. Info seq [hh:mm:ss:mss] File '/user/username/projects/myproject/package.json' does not exist. -Info seq [hh:mm:ss:mss] File '/user/username/projects/package.json' does not exist according to earlier cached lookups. -Info seq [hh:mm:ss:mss] File '/user/username/package.json' does not exist according to earlier cached lookups. -Info seq [hh:mm:ss:mss] File '/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/user/username/projects/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/user/username/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/user/package.json' does not exist. Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. Info seq [hh:mm:ss:mss] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. Info seq [hh:mm:ss:mss] File '/user/username/projects/myproject/package.json' does not exist according to earlier cached lookups. diff --git a/tests/baselines/reference/tsserver/moduleResolution/using-referenced-project-built.js b/tests/baselines/reference/tsserver/moduleResolution/using-referenced-project-built.js index b2b7741ab2490..dcb599928d5ff 100644 --- a/tests/baselines/reference/tsserver/moduleResolution/using-referenced-project-built.js +++ b/tests/baselines/reference/tsserver/moduleResolution/using-referenced-project-built.js @@ -413,6 +413,20 @@ Info seq [hh:mm:ss:mss] File '/home/src/projects/project/node_modules/package-a Info seq [hh:mm:ss:mss] 'package.json' does not have a 'peerDependencies' field. Info seq [hh:mm:ss:mss] Resolving real path for '/home/src/projects/project/node_modules/package-a/build/index.d.ts', result '/home/src/projects/project/packages/package-a/build/index.d.ts'. Info seq [hh:mm:ss:mss] ======== Module name 'package-a' was successfully resolved to '/home/src/projects/project/packages/package-a/build/index.d.ts' with Package ID 'package-a/build/index.d.ts@1.0.0'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b 0 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b 0 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b/src 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b/src 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b/node_modules 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b/node_modules 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/node_modules 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/node_modules 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b/package.json 2000 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-a/package.json 2000 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-a/src/index.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] ======== Resolving module './subfolder' from '/home/src/projects/project/packages/package-a/src/index.ts'. ======== Info seq [hh:mm:ss:mss] Using compiler options of project reference redirect '/home/src/projects/project/packages/package-a/tsconfig.json'. @@ -427,8 +441,8 @@ Info seq [hh:mm:ss:mss] File '/home/src/projects/project/packages/package-a/src Info seq [hh:mm:ss:mss] File '/home/src/projects/project/packages/package-a/src/subfolder/package.json' does not exist. Info seq [hh:mm:ss:mss] File '/home/src/projects/project/packages/package-a/src/subfolder/index.ts' exists - use it as a name resolution result. Info seq [hh:mm:ss:mss] ======== Module name './subfolder' was successfully resolved to '/home/src/projects/project/packages/package-a/src/subfolder/index.ts'. ======== -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-a/src 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-a/src 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-a/src/subfolder/index.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] ======== Resolving module '@typescript/lib-es2021' from '/home/src/projects/project/packages/package-b/__lib_node_modules_lookup_lib.es2021.d.ts__.ts'. ======== Info seq [hh:mm:ss:mss] Explicitly specified module resolution kind: 'Node10'. @@ -457,25 +471,11 @@ Info seq [hh:mm:ss:mss] Directory '/home/src/node_modules' does not exist, skip Info seq [hh:mm:ss:mss] Directory '/home/node_modules' does not exist, skipping all lookups in it. Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. Info seq [hh:mm:ss:mss] ======== Module name '@typescript/lib-es2021' was not resolved. ======== -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b/node_modules 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b/node_modules 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/node_modules 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/node_modules 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.es2021.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b/src 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b/src 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b 0 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b 0 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b/package.json 2000 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-a/package.json 2000 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Type roots @@ -643,8 +643,6 @@ FsWatchesRecursive:: {} /home/src/projects/project/node_modules/package-a: *new* {} -/home/src/projects/project/packages/package-a: *new* - {} /home/src/projects/project/packages/package-a/src: *new* {} /home/src/projects/project/packages/package-b/src: *new* @@ -884,16 +882,16 @@ Info seq [hh:mm:ss:mss] Directory '/home/src/node_modules' does not exist, skip Info seq [hh:mm:ss:mss] Directory '/home/node_modules' does not exist, skipping all lookups in it. Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. Info seq [hh:mm:ss:mss] ======== Module name 'package-aX' was not resolved. ======== -Info seq [hh:mm:ss:mss] Reusing resolution of module '@typescript/lib-es2021' from '/home/src/projects/project/packages/package-b/__lib_node_modules_lookup_lib.es2021.d.ts__.ts' of old program, it was not resolved. Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b/package-aX 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b/package-aX 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/packages/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/packages/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Reusing resolution of module '@typescript/lib-es2021' from '/home/src/projects/project/packages/package-b/__lib_node_modules_lookup_lib.es2021.d.ts__.ts' of old program, it was not resolved. Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/packages/package-b/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/packages/package-b/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/packages/package-a/package.json 2000 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/packages/package-a/src 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/packages/package-a/src 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/packages/package-b/tsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/packages/package-b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -972,8 +970,6 @@ FsWatchesRecursive:: FsWatchesRecursive *deleted*:: /home/src/projects/project/node_modules/package-a: {} -/home/src/projects/project/packages/package-a: - {} Immedidate callback:: count: 1 3: semanticCheck *new* @@ -1169,14 +1165,20 @@ Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for pre Info seq [hh:mm:ss:mss] Directory '/home/src/projects/project/packages/package-b/src/node_modules' does not exist, skipping all lookups in it. Info seq [hh:mm:ss:mss] Directory '/home/src/projects/project/packages/package-b/node_modules' does not exist, skipping all lookups in it. Info seq [hh:mm:ss:mss] Directory '/home/src/projects/project/packages/node_modules' does not exist, skipping all lookups in it. -Info seq [hh:mm:ss:mss] File '/home/src/projects/project/node_modules/package-a/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Found 'package.json' at '/home/src/projects/project/node_modules/package-a/package.json'. Info seq [hh:mm:ss:mss] Using 'exports' subpath '.' with target './build/index.js'. Info seq [hh:mm:ss:mss] File name '/home/src/projects/project/node_modules/package-a/build/index.js' has a '.js' extension - stripping it. Info seq [hh:mm:ss:mss] File '/home/src/projects/project/node_modules/package-a/build/index.ts' does not exist. Info seq [hh:mm:ss:mss] File '/home/src/projects/project/node_modules/package-a/build/index.tsx' does not exist. Info seq [hh:mm:ss:mss] File '/home/src/projects/project/node_modules/package-a/build/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] 'package.json' does not have a 'peerDependencies' field. Info seq [hh:mm:ss:mss] Resolving real path for '/home/src/projects/project/node_modules/package-a/build/index.d.ts', result '/home/src/projects/project/packages/package-a/build/index.d.ts'. Info seq [hh:mm:ss:mss] ======== Module name 'package-a' was successfully resolved to '/home/src/projects/project/packages/package-a/build/index.d.ts' with Package ID 'package-a/build/index.d.ts@1.0.0'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-a/package.json 2000 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] ======== Resolving module './subfolder' from '/home/src/projects/project/packages/package-a/src/index.ts'. ======== Info seq [hh:mm:ss:mss] Using compiler options of project reference redirect '/home/src/projects/project/packages/package-a/tsconfig.json'. Info seq [hh:mm:ss:mss] Explicitly specified module resolution kind: 'Bundler'. @@ -1187,17 +1189,12 @@ Info seq [hh:mm:ss:mss] File '/home/src/projects/project/packages/package-a/src Info seq [hh:mm:ss:mss] File '/home/src/projects/project/packages/package-a/src/subfolder.d.ts' does not exist. Info seq [hh:mm:ss:mss] File '/home/src/projects/project/packages/package-a/src/subfolder.js' does not exist. Info seq [hh:mm:ss:mss] File '/home/src/projects/project/packages/package-a/src/subfolder.jsx' does not exist. -Info seq [hh:mm:ss:mss] File '/home/src/projects/project/packages/package-a/src/subfolder/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/projects/project/packages/package-a/src/subfolder/package.json' does not exist. Info seq [hh:mm:ss:mss] File '/home/src/projects/project/packages/package-a/src/subfolder/index.ts' exists - use it as a name resolution result. Info seq [hh:mm:ss:mss] ======== Module name './subfolder' was successfully resolved to '/home/src/projects/project/packages/package-a/src/subfolder/index.ts'. ======== -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-a/src 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-a/src 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Reusing resolution of module '@typescript/lib-es2021' from '/home/src/projects/project/packages/package-b/__lib_node_modules_lookup_lib.es2021.d.ts__.ts' of old program, it was not resolved. -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-a/package.json 2000 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/packages/package-b/package-aX 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/packages/package-b/package-aX 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/packages/package-b/tsconfig.json projectStateVersion: 3 projectProgramVersion: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms @@ -1276,8 +1273,6 @@ FsWatchesRecursive:: {} /home/src/projects/project/node_modules/package-a: *new* {} -/home/src/projects/project/packages/package-a: *new* - {} /home/src/projects/project/packages/package-a/src: {} /home/src/projects/project/packages/package-b/src: diff --git a/tests/baselines/reference/tsserver/moduleResolution/using-referenced-project.js b/tests/baselines/reference/tsserver/moduleResolution/using-referenced-project.js index d1e4e16b143db..8b8be8840f104 100644 --- a/tests/baselines/reference/tsserver/moduleResolution/using-referenced-project.js +++ b/tests/baselines/reference/tsserver/moduleResolution/using-referenced-project.js @@ -228,6 +228,20 @@ Info seq [hh:mm:ss:mss] File '/home/src/projects/project/node_modules/package-a Info seq [hh:mm:ss:mss] 'package.json' does not have a 'peerDependencies' field. Info seq [hh:mm:ss:mss] Resolving real path for '/home/src/projects/project/node_modules/package-a/build/index.d.ts', result '/home/src/projects/project/packages/package-a/build/index.d.ts'. Info seq [hh:mm:ss:mss] ======== Module name 'package-a' was successfully resolved to '/home/src/projects/project/packages/package-a/build/index.d.ts' with Package ID 'package-a/build/index.d.ts@1.0.0'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b 0 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b 0 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b/src 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b/src 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b/node_modules 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b/node_modules 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/node_modules 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/node_modules 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b/package.json 2000 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-a/package.json 2000 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-a/src/index.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] ======== Resolving module './subfolder' from '/home/src/projects/project/packages/package-a/src/index.ts'. ======== Info seq [hh:mm:ss:mss] Using compiler options of project reference redirect '/home/src/projects/project/packages/package-a/tsconfig.json'. @@ -242,8 +256,8 @@ Info seq [hh:mm:ss:mss] File '/home/src/projects/project/packages/package-a/src Info seq [hh:mm:ss:mss] File '/home/src/projects/project/packages/package-a/src/subfolder/package.json' does not exist. Info seq [hh:mm:ss:mss] File '/home/src/projects/project/packages/package-a/src/subfolder/index.ts' exists - use it as a name resolution result. Info seq [hh:mm:ss:mss] ======== Module name './subfolder' was successfully resolved to '/home/src/projects/project/packages/package-a/src/subfolder/index.ts'. ======== -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-a/src 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-a/src 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-a/src/subfolder/index.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] ======== Resolving module '@typescript/lib-es2021' from '/home/src/projects/project/packages/package-b/__lib_node_modules_lookup_lib.es2021.d.ts__.ts'. ======== Info seq [hh:mm:ss:mss] Explicitly specified module resolution kind: 'Node10'. @@ -272,25 +286,11 @@ Info seq [hh:mm:ss:mss] Directory '/home/src/node_modules' does not exist, skip Info seq [hh:mm:ss:mss] Directory '/home/node_modules' does not exist, skipping all lookups in it. Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. Info seq [hh:mm:ss:mss] ======== Module name '@typescript/lib-es2021' was not resolved. ======== -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b/node_modules 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b/node_modules 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/node_modules 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/node_modules 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.es2021.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b/src 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b/src 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b 0 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b 0 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b/package.json 2000 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-a/package.json 2000 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Type roots @@ -460,8 +460,6 @@ FsWatchesRecursive:: {} /home/src/projects/project/node_modules/package-a: *new* {} -/home/src/projects/project/packages/package-a: *new* - {} /home/src/projects/project/packages/package-a/src: *new* {} /home/src/projects/project/packages/package-b/src: *new* @@ -701,16 +699,16 @@ Info seq [hh:mm:ss:mss] Directory '/home/src/node_modules' does not exist, skip Info seq [hh:mm:ss:mss] Directory '/home/node_modules' does not exist, skipping all lookups in it. Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. Info seq [hh:mm:ss:mss] ======== Module name 'package-aX' was not resolved. ======== -Info seq [hh:mm:ss:mss] Reusing resolution of module '@typescript/lib-es2021' from '/home/src/projects/project/packages/package-b/__lib_node_modules_lookup_lib.es2021.d.ts__.ts' of old program, it was not resolved. Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b/package-aX 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b/package-aX 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/packages/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/packages/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Reusing resolution of module '@typescript/lib-es2021' from '/home/src/projects/project/packages/package-b/__lib_node_modules_lookup_lib.es2021.d.ts__.ts' of old program, it was not resolved. Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/packages/package-b/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/packages/package-b/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/packages/package-a/package.json 2000 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/packages/package-a/src 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/packages/package-a/src 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/packages/package-b/tsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/packages/package-b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -789,8 +787,6 @@ FsWatchesRecursive:: FsWatchesRecursive *deleted*:: /home/src/projects/project/node_modules/package-a: {} -/home/src/projects/project/packages/package-a: - {} Immedidate callback:: count: 1 3: semanticCheck *new* @@ -986,14 +982,20 @@ Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for pre Info seq [hh:mm:ss:mss] Directory '/home/src/projects/project/packages/package-b/src/node_modules' does not exist, skipping all lookups in it. Info seq [hh:mm:ss:mss] Directory '/home/src/projects/project/packages/package-b/node_modules' does not exist, skipping all lookups in it. Info seq [hh:mm:ss:mss] Directory '/home/src/projects/project/packages/node_modules' does not exist, skipping all lookups in it. -Info seq [hh:mm:ss:mss] File '/home/src/projects/project/node_modules/package-a/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Found 'package.json' at '/home/src/projects/project/node_modules/package-a/package.json'. Info seq [hh:mm:ss:mss] Using 'exports' subpath '.' with target './build/index.js'. Info seq [hh:mm:ss:mss] File name '/home/src/projects/project/node_modules/package-a/build/index.js' has a '.js' extension - stripping it. Info seq [hh:mm:ss:mss] File '/home/src/projects/project/node_modules/package-a/build/index.ts' does not exist. Info seq [hh:mm:ss:mss] File '/home/src/projects/project/node_modules/package-a/build/index.tsx' does not exist. Info seq [hh:mm:ss:mss] File '/home/src/projects/project/node_modules/package-a/build/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] 'package.json' does not have a 'peerDependencies' field. Info seq [hh:mm:ss:mss] Resolving real path for '/home/src/projects/project/node_modules/package-a/build/index.d.ts', result '/home/src/projects/project/packages/package-a/build/index.d.ts'. Info seq [hh:mm:ss:mss] ======== Module name 'package-a' was successfully resolved to '/home/src/projects/project/packages/package-a/build/index.d.ts' with Package ID 'package-a/build/index.d.ts@1.0.0'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-a/package.json 2000 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] ======== Resolving module './subfolder' from '/home/src/projects/project/packages/package-a/src/index.ts'. ======== Info seq [hh:mm:ss:mss] Using compiler options of project reference redirect '/home/src/projects/project/packages/package-a/tsconfig.json'. Info seq [hh:mm:ss:mss] Explicitly specified module resolution kind: 'Bundler'. @@ -1004,17 +1006,12 @@ Info seq [hh:mm:ss:mss] File '/home/src/projects/project/packages/package-a/src Info seq [hh:mm:ss:mss] File '/home/src/projects/project/packages/package-a/src/subfolder.d.ts' does not exist. Info seq [hh:mm:ss:mss] File '/home/src/projects/project/packages/package-a/src/subfolder.js' does not exist. Info seq [hh:mm:ss:mss] File '/home/src/projects/project/packages/package-a/src/subfolder.jsx' does not exist. -Info seq [hh:mm:ss:mss] File '/home/src/projects/project/packages/package-a/src/subfolder/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/projects/project/packages/package-a/src/subfolder/package.json' does not exist. Info seq [hh:mm:ss:mss] File '/home/src/projects/project/packages/package-a/src/subfolder/index.ts' exists - use it as a name resolution result. Info seq [hh:mm:ss:mss] ======== Module name './subfolder' was successfully resolved to '/home/src/projects/project/packages/package-a/src/subfolder/index.ts'. ======== -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-a/src 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-a/src 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Reusing resolution of module '@typescript/lib-es2021' from '/home/src/projects/project/packages/package-b/__lib_node_modules_lookup_lib.es2021.d.ts__.ts' of old program, it was not resolved. -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-b/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/package-a 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package-a/package.json 2000 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/packages/package-b/package-aX 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/packages/package-b/package-aX 1 undefined Project: /home/src/projects/project/packages/package-b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/packages/package-b/tsconfig.json projectStateVersion: 3 projectProgramVersion: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms @@ -1093,8 +1090,6 @@ FsWatchesRecursive:: {} /home/src/projects/project/node_modules/package-a: *new* {} -/home/src/projects/project/packages/package-a: *new* - {} /home/src/projects/project/packages/package-a/src: {} /home/src/projects/project/packages/package-b/src: diff --git a/tests/baselines/reference/tsserver/navTo/should-de-duplicate-symbols-when-searching-all-projects.js b/tests/baselines/reference/tsserver/navTo/should-de-duplicate-symbols-when-searching-all-projects.js index 992ded5e28b09..20cd0cc0ec304 100644 --- a/tests/baselines/reference/tsserver/navTo/should-de-duplicate-symbols-when-searching-all-projects.js +++ b/tests/baselines/reference/tsserver/navTo/should-de-duplicate-symbols-when-searching-all-projects.js @@ -298,10 +298,6 @@ Info seq [hh:mm:ss:mss] Config: /home/src/projects/project/b/tsconfig.json : { Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/b/tsconfig.json 2000 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b 1 undefined Config: /home/src/projects/project/b/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b 1 undefined Config: /home/src/projects/project/b/tsconfig.json WatchType: Wild card directory -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (0) @@ -387,10 +383,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/project Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/navTo/should-de-duplicate-symbols.js b/tests/baselines/reference/tsserver/navTo/should-de-duplicate-symbols.js index a64ec13de5f29..63c0796980bad 100644 --- a/tests/baselines/reference/tsserver/navTo/should-de-duplicate-symbols.js +++ b/tests/baselines/reference/tsserver/navTo/should-de-duplicate-symbols.js @@ -263,10 +263,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/project Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/b/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/navTo/should-not-include-type-symbols.js b/tests/baselines/reference/tsserver/navTo/should-not-include-type-symbols.js index 1118b19a8dd5f..fb625e7235040 100644 --- a/tests/baselines/reference/tsserver/navTo/should-not-include-type-symbols.js +++ b/tests/baselines/reference/tsserver/navTo/should-not-include-type-symbols.js @@ -162,13 +162,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project/a/b", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -209,7 +207,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -234,7 +231,6 @@ Info seq [hh:mm:ss:mss] event: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/navTo/should-work-with-Deprecated.js b/tests/baselines/reference/tsserver/navTo/should-work-with-Deprecated.js index b70826970df66..465d2bf5a36e4 100644 --- a/tests/baselines/reference/tsserver/navTo/should-work-with-Deprecated.js +++ b/tests/baselines/reference/tsserver/navTo/should-work-with-Deprecated.js @@ -163,13 +163,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project/a/b", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -210,7 +208,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -235,7 +232,6 @@ Info seq [hh:mm:ss:mss] event: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/openfile/project-root-is-used-with-case-sensitive-system.js b/tests/baselines/reference/tsserver/openfile/project-root-is-used-with-case-sensitive-system.js index 9ab208cd01aa5..6002810bedfd9 100644 --- a/tests/baselines/reference/tsserver/openfile/project-root-is-used-with-case-sensitive-system.js +++ b/tests/baselines/reference/tsserver/openfile/project-root-is-used-with-case-sensitive-system.js @@ -588,12 +588,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a 1 undefined Config: /home/src/projects/project/a/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a 1 undefined Config: /home/src/projects/project/a/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/a/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/a/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/a/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) @@ -689,12 +683,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/tsconfig.json 2000 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/a/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) @@ -1027,12 +1015,12 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a 1 undefined Config: /home/src/projects/project/a/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a 1 undefined Config: /home/src/projects/project/a/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/tsconfig.json 2000 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/src/app.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Open files: diff --git a/tests/baselines/reference/tsserver/packageJsonInfo/detects-new-package.json-files-that-are-added,-caches-them,-and-watches-them.js b/tests/baselines/reference/tsserver/packageJsonInfo/detects-new-package.json-files-that-are-added,-caches-them,-and-watches-them.js index e80668d0270e2..c9c59008780d0 100644 --- a/tests/baselines/reference/tsserver/packageJsonInfo/detects-new-package.json-files-that-are-added,-caches-them,-and-watches-them.js +++ b/tests/baselines/reference/tsserver/packageJsonInfo/detects-new-package.json-files-that-are-added,-caches-them,-and-watches-them.js @@ -134,10 +134,6 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -228,13 +224,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -273,7 +267,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -296,7 +289,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/packageJsonInfo/finds-multiple-package.json-files-when-present.js b/tests/baselines/reference/tsserver/packageJsonInfo/finds-multiple-package.json-files-when-present.js index 9749756908657..529d2b3b4763d 100644 --- a/tests/baselines/reference/tsserver/packageJsonInfo/finds-multiple-package.json-files-when-present.js +++ b/tests/baselines/reference/tsserver/packageJsonInfo/finds-multiple-package.json-files-when-present.js @@ -150,10 +150,6 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -244,14 +240,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: ["redux","webpack","typescript","react"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -304,7 +298,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -327,7 +320,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/packageJsonInfo/finds-package.json-on-demand,-watches-for-deletion,-and-removes-them-from-cache.js b/tests/baselines/reference/tsserver/packageJsonInfo/finds-package.json-on-demand,-watches-for-deletion,-and-removes-them-from-cache.js index 78c579e97bff6..513e2a91569be 100644 --- a/tests/baselines/reference/tsserver/packageJsonInfo/finds-package.json-on-demand,-watches-for-deletion,-and-removes-them-from-cache.js +++ b/tests/baselines/reference/tsserver/packageJsonInfo/finds-package.json-on-demand,-watches-for-deletion,-and-removes-them-from-cache.js @@ -150,10 +150,6 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -244,14 +240,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: ["redux","webpack","typescript","react"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -304,7 +298,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -327,7 +320,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -423,12 +415,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -464,7 +454,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -487,7 +476,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/packageJsonInfo/handles-empty-package.json.js b/tests/baselines/reference/tsserver/packageJsonInfo/handles-empty-package.json.js index a6888e12c7a42..e6dc36ced9941 100644 --- a/tests/baselines/reference/tsserver/packageJsonInfo/handles-empty-package.json.js +++ b/tests/baselines/reference/tsserver/packageJsonInfo/handles-empty-package.json.js @@ -137,10 +137,6 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -231,14 +227,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -280,7 +274,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -303,7 +296,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -396,13 +388,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: ["redux","webpack","typescript","react"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -445,7 +435,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -468,7 +457,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/packageJsonInfo/handles-errors-in-json-parsing-of-package.json.js b/tests/baselines/reference/tsserver/packageJsonInfo/handles-errors-in-json-parsing-of-package.json.js index 7ccbffb367bb6..030767545da4d 100644 --- a/tests/baselines/reference/tsserver/packageJsonInfo/handles-errors-in-json-parsing-of-package.json.js +++ b/tests/baselines/reference/tsserver/packageJsonInfo/handles-errors-in-json-parsing-of-package.json.js @@ -137,10 +137,6 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -231,14 +227,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -280,7 +274,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -303,7 +296,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -396,13 +388,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: ["redux","webpack","typescript","react"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -445,7 +435,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -468,7 +457,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/plugins/when-scriptKind-changes-for-the-external-file.js b/tests/baselines/reference/tsserver/plugins/when-scriptKind-changes-for-the-external-file.js index 9937c636869d8..74859d92ec7c9 100644 --- a/tests/baselines/reference/tsserver/plugins/when-scriptKind-changes-for-the-external-file.js +++ b/tests/baselines/reference/tsserver/plugins/when-scriptKind-changes-for-the-external-file.js @@ -76,11 +76,11 @@ Info seq [hh:mm:ss:mss] Plugin validation succeeded getExternalFiles:: Getting new list of .vue files Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-not-generated-when-the-config-file-does-not-include-file-opened-and-config-file-has-errors.js b/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-not-generated-when-the-config-file-does-not-include-file-opened-and-config-file-has-errors.js index 1fc9a7a9ff526..d58c8756beb6f 100644 --- a/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-not-generated-when-the-config-file-does-not-include-file-opened-and-config-file-has-errors.js +++ b/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-not-generated-when-the-config-file-does-not-include-file-opened-and-config-file-has-errors.js @@ -183,14 +183,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -428,14 +420,6 @@ Info seq [hh:mm:ss:mss] event: } Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, currentDirectory: /home/src/projects/project/a/b Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-not-generated-when-the-config-file-does-not-include-file-opened-and-doesnt-contain-any-errors.js b/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-not-generated-when-the-config-file-does-not-include-file-opened-and-doesnt-contain-any-errors.js index 19c2d01c7e9a0..4afdf725584ce 100644 --- a/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-not-generated-when-the-config-file-does-not-include-file-opened-and-doesnt-contain-any-errors.js +++ b/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-not-generated-when-the-config-file-does-not-include-file-opened-and-doesnt-contain-any-errors.js @@ -156,14 +156,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -372,14 +364,6 @@ Info seq [hh:mm:ss:mss] event: } Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, currentDirectory: /home/src/projects/project/a/b Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectErrors/correct-errors-when-resolution-resolves-to-file-that-has-same-ambient-module-and-is-also-module.js b/tests/baselines/reference/tsserver/projectErrors/correct-errors-when-resolution-resolves-to-file-that-has-same-ambient-module-and-is-also-module.js index a47d75aad83ce..fb7a1926f8c1b 100644 --- a/tests/baselines/reference/tsserver/projectErrors/correct-errors-when-resolution-resolves-to-file-that-has-same-ambient-module-and-is-also-module.js +++ b/tests/baselines/reference/tsserver/projectErrors/correct-errors-when-resolution-resolves-to-file-that-has-same-ambient-module-and-is-also-module.js @@ -76,13 +76,13 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/src 1 undefined Config: /users/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/src 1 undefined Config: /users/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/projects/myproject/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/src 1 undefined Project: /users/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/src 1 undefined Project: /users/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/src 1 undefined Project: /users/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/src 1 undefined Project: /users/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules/@custom/plugin/package.json 2000 undefined Project: /users/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules/@custom/package.json 2000 undefined Project: /users/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules/package.json 2000 undefined Project: /users/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution diff --git a/tests/baselines/reference/tsserver/projectErrors/for-external-project.js b/tests/baselines/reference/tsserver/projectErrors/for-external-project.js index 46d6072d5d63f..9f0265b25f9b7 100644 --- a/tests/baselines/reference/tsserver/projectErrors/for-external-project.js +++ b/tests/baselines/reference/tsserver/projectErrors/for-external-project.js @@ -130,13 +130,11 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project/a/b", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -172,7 +170,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -192,7 +189,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/projectErrors/for-inferred-project.js b/tests/baselines/reference/tsserver/projectErrors/for-inferred-project.js index 10ddbe3976ae1..85c691da9726d 100644 --- a/tests/baselines/reference/tsserver/projectErrors/for-inferred-project.js +++ b/tests/baselines/reference/tsserver/projectErrors/for-inferred-project.js @@ -144,13 +144,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project/a/b", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -190,7 +188,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -214,7 +211,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/projectErrors/npm-install-when-timeout-occurs-after-installation.js b/tests/baselines/reference/tsserver/projectErrors/npm-install-when-timeout-occurs-after-installation.js index 43fa7f1088da6..0b2a7b975d11a 100644 --- a/tests/baselines/reference/tsserver/projectErrors/npm-install-when-timeout-occurs-after-installation.js +++ b/tests/baselines/reference/tsserver/projectErrors/npm-install-when-timeout-occurs-after-installation.js @@ -59,13 +59,13 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/projectErrors/npm-install-when-timeout-occurs-inbetween-installation.js b/tests/baselines/reference/tsserver/projectErrors/npm-install-when-timeout-occurs-inbetween-installation.js index 00b05ea577d95..3c845986f3f7b 100644 --- a/tests/baselines/reference/tsserver/projectErrors/npm-install-when-timeout-occurs-inbetween-installation.js +++ b/tests/baselines/reference/tsserver/projectErrors/npm-install-when-timeout-occurs-inbetween-installation.js @@ -59,13 +59,13 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/projectErrors/reports-errors-correctly-when-file-referenced-by-inferred-project-root,-is-opened-right-after-closing-the-root-file.js b/tests/baselines/reference/tsserver/projectErrors/reports-errors-correctly-when-file-referenced-by-inferred-project-root,-is-opened-right-after-closing-the-root-file.js index c8f7d3af5e68d..af0909e50ed9c 100644 --- a/tests/baselines/reference/tsserver/projectErrors/reports-errors-correctly-when-file-referenced-by-inferred-project-root,-is-opened-right-after-closing-the-root-file.js +++ b/tests/baselines/reference/tsserver/projectErrors/reports-errors-correctly-when-file-referenced-by-inferred-project-root,-is-opened-right-after-closing-the-root-file.js @@ -143,13 +143,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/myproject", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -195,7 +193,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -219,7 +216,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -342,12 +338,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/myproject", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -397,7 +391,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -421,7 +414,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -818,12 +810,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/myproject", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -865,7 +855,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -889,7 +878,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -934,12 +922,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/myproject", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -983,7 +969,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -1007,7 +992,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-and-change-to-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-and-change-to-dependency.js index 772d42ee4fa5b..701f6bedc3884 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-and-change-to-dependency.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-and-change-to-dependency.js @@ -284,10 +284,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-and-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-and-change-to-usage.js index 2448d895a8c4b..41162501af40a 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-and-change-to-usage.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-and-change-to-usage.js @@ -284,10 +284,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-and-local-change-to-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-and-local-change-to-dependency.js index 81f9b90928062..07dd68572dd7a 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-and-local-change-to-dependency.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-and-local-change-to-dependency.js @@ -284,10 +284,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-and-local-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-and-local-change-to-usage.js index 84747b4759524..e8a55c6d1b9ce 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-and-local-change-to-usage.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-and-local-change-to-usage.js @@ -284,10 +284,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project-and-change-to-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project-and-change-to-dependency.js index 473f94f6e48e8..44f4fd22566a8 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project-and-change-to-dependency.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project-and-change-to-dependency.js @@ -284,10 +284,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project-and-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project-and-change-to-usage.js index 91d20a4e6aa03..7aa1636280fb6 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project-and-change-to-usage.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project-and-change-to-usage.js @@ -284,10 +284,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project-and-local-change-to-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project-and-local-change-to-dependency.js index 01810b601f195..ee798115fae62 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project-and-local-change-to-dependency.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project-and-local-change-to-dependency.js @@ -284,10 +284,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project-and-local-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project-and-local-change-to-usage.js index c50608a776b3e..9671cdf0557eb 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project-and-local-change-to-usage.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project-and-local-change-to-usage.js @@ -284,10 +284,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project.js index 03413928025f4..4892b374d0e56 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project.js @@ -284,10 +284,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project-and-change-to-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project-and-change-to-dependency.js index babd9500e4cbb..4c930b65bfcb6 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project-and-change-to-dependency.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project-and-change-to-dependency.js @@ -284,10 +284,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project-and-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project-and-change-to-usage.js index ca816f27ecc1d..009f9c665b320 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project-and-change-to-usage.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project-and-change-to-usage.js @@ -284,10 +284,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project-and-local-change-to-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project-and-local-change-to-dependency.js index 220b98656ee22..579b40db68e17 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project-and-local-change-to-dependency.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project-and-local-change-to-dependency.js @@ -284,10 +284,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project-and-local-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project-and-local-change-to-usage.js index 881929f2b03ec..502068e8e78a5 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project-and-local-change-to-usage.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project-and-local-change-to-usage.js @@ -284,10 +284,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project.js index 757916d3a43f3..efad940cab26a 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project.js @@ -284,10 +284,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency.js index 364b24e8f8951..7a37093aab943 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency.js @@ -284,10 +284,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-change-to-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-change-to-dependency.js index 31e04c313388a..b5327ac8b58a8 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-change-to-dependency.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-change-to-dependency.js @@ -284,10 +284,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-change-to-usage.js index 48cc536c43207..deb353ab47539 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-change-to-usage.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-change-to-usage.js @@ -284,10 +284,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-local-change-to-dependency-with-file.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-local-change-to-dependency-with-file.js index cde38584b89df..381091bcbc0a9 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-local-change-to-dependency-with-file.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-local-change-to-dependency-with-file.js @@ -284,10 +284,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-local-change-to-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-local-change-to-dependency.js index d27ee391ea056..b6a4c1297cd63 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-local-change-to-dependency.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-local-change-to-dependency.js @@ -284,10 +284,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-local-change-to-usage-with-project.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-local-change-to-usage-with-project.js index d5e7dd987f091..d3dd57dba3517 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-local-change-to-usage-with-project.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-local-change-to-usage-with-project.js @@ -284,10 +284,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-local-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-local-change-to-usage.js index a76d4dff74da9..5d3a0fd77b206 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-local-change-to-usage.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-local-change-to-usage.js @@ -284,10 +284,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-with-project-and-change-to-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-with-project-and-change-to-dependency.js index 40b9de5b9b508..564b68e960375 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-with-project-and-change-to-dependency.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-with-project-and-change-to-dependency.js @@ -284,10 +284,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-with-project-and-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-with-project-and-change-to-usage.js index b0ce879dcdfae..5b87dfef510a6 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-with-project-and-change-to-usage.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-with-project-and-change-to-usage.js @@ -284,10 +284,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-with-project.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-with-project.js index ab162807019a6..6f5c361bfca08 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-with-project.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-with-project.js @@ -284,10 +284,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage.js index acf6f53a71702..1e86191c8cac3 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage.js @@ -284,10 +284,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-the-depedency-file-is-open-gerErr-with-sync-commands.js b/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-the-depedency-file-is-open-gerErr-with-sync-commands.js index 096b875d923ad..b600b2892f108 100644 --- a/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-the-depedency-file-is-open-gerErr-with-sync-commands.js +++ b/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-the-depedency-file-is-open-gerErr-with-sync-commands.js @@ -294,10 +294,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-the-depedency-file-is-open-getErr.js b/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-the-depedency-file-is-open-getErr.js index 07b44179fe891..cf51d1f4dfbb5 100644 --- a/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-the-depedency-file-is-open-getErr.js +++ b/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-the-depedency-file-is-open-getErr.js @@ -294,10 +294,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-the-depedency-file-is-open-geterrForProject.js b/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-the-depedency-file-is-open-geterrForProject.js index bf80b588c303c..56e2ddc461260 100644 --- a/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-the-depedency-file-is-open-geterrForProject.js +++ b/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-the-depedency-file-is-open-geterrForProject.js @@ -294,10 +294,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-the-depedency-file-is-open-gerErr-with-sync-commands.js b/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-the-depedency-file-is-open-gerErr-with-sync-commands.js index 6485607a3a599..f617a6fd86c6b 100644 --- a/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-the-depedency-file-is-open-gerErr-with-sync-commands.js +++ b/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-the-depedency-file-is-open-gerErr-with-sync-commands.js @@ -288,10 +288,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-the-depedency-file-is-open-getErr.js b/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-the-depedency-file-is-open-getErr.js index 1a9c87839734a..dd70f3879f204 100644 --- a/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-the-depedency-file-is-open-getErr.js +++ b/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-the-depedency-file-is-open-getErr.js @@ -288,10 +288,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-the-depedency-file-is-open-geterrForProject.js b/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-the-depedency-file-is-open-geterrForProject.js index 119559678dadb..7dd9c44e5caba 100644 --- a/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-the-depedency-file-is-open-geterrForProject.js +++ b/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-the-depedency-file-is-open-geterrForProject.js @@ -288,10 +288,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferences/ancestor-and-project-ref-management.js b/tests/baselines/reference/tsserver/projectReferences/ancestor-and-project-ref-management.js index c90d7034f1c1a..cbe33cc933266 100644 --- a/tests/baselines/reference/tsserver/projectReferences/ancestor-and-project-ref-management.js +++ b/tests/baselines/reference/tsserver/projectReferences/ancestor-and-project-ref-management.js @@ -454,8 +454,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/temp/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/temp/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -587,10 +585,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/container/lib/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/lib/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/lib/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/container/lib/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/container/lib/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -712,10 +706,6 @@ Info seq [hh:mm:ss:mss] Config: /user/username/projects/container/exec/tsconfig ] } Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/exec/tsconfig.json 2000 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/container/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/container/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (0) @@ -797,10 +787,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/container/exec/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/exec/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/exec/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/container/exec/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/container/exec/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) @@ -1662,10 +1648,6 @@ Info seq [hh:mm:ss:mss] Files (3) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/compositeExec/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/compositeExec/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/container/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (0) @@ -1675,10 +1657,6 @@ Info seq [hh:mm:ss:mss] Files (0) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/container/compositeExec/tsconfig.json 2000 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/container/tsconfig.json 2000 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/container/lib/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1694,10 +1672,6 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/lib/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/lib/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/container/exec/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) @@ -1718,10 +1692,8 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/container/exec/tsconfig.json 2000 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/exec/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/exec/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/container/compositeExec/index.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/container/lib/index.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/container/exec/index.ts 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/projectReferences/auto-import-with-referenced-project-when-built-with-disableSourceOfProjectReferenceRedirect.js b/tests/baselines/reference/tsserver/projectReferences/auto-import-with-referenced-project-when-built-with-disableSourceOfProjectReferenceRedirect.js index 8bc8e031f22c8..a65d693bcd0fd 100644 --- a/tests/baselines/reference/tsserver/projectReferences/auto-import-with-referenced-project-when-built-with-disableSourceOfProjectReferenceRedirect.js +++ b/tests/baselines/reference/tsserver/projectReferences/auto-import-with-referenced-project-when-built-with-disableSourceOfProjectReferenceRedirect.js @@ -287,8 +287,6 @@ Info seq [hh:mm:ss:mss] Config: /user/username/projects/myproject/shared/src/li Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/src/library/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/src/library 1 undefined Config: /user/username/projects/myproject/shared/src/library/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/src/library 1 undefined Config: /user/username/projects/myproject/shared/src/library/tsconfig.json WatchType: Wild card directory -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/bld/library/index.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations @@ -298,6 +296,8 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/package.json 2000 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/bld/library/index.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/projectReferences/auto-import-with-referenced-project-when-built.js b/tests/baselines/reference/tsserver/projectReferences/auto-import-with-referenced-project-when-built.js index 4843a7d8961a4..d2fc909643058 100644 --- a/tests/baselines/reference/tsserver/projectReferences/auto-import-with-referenced-project-when-built.js +++ b/tests/baselines/reference/tsserver/projectReferences/auto-import-with-referenced-project-when-built.js @@ -285,8 +285,6 @@ Info seq [hh:mm:ss:mss] Config: /user/username/projects/myproject/shared/src/li Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/src/library/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/src/library 1 undefined Config: /user/username/projects/myproject/shared/src/library/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/src/library 1 undefined Config: /user/username/projects/myproject/shared/src/library/tsconfig.json WatchType: Wild card directory -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/src/library/index.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations @@ -296,6 +294,8 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/package.json 2000 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/src/library/index.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/projectReferences/auto-import-with-referenced-project.js b/tests/baselines/reference/tsserver/projectReferences/auto-import-with-referenced-project.js index fd0e21b4c3272..534a50db2ea36 100644 --- a/tests/baselines/reference/tsserver/projectReferences/auto-import-with-referenced-project.js +++ b/tests/baselines/reference/tsserver/projectReferences/auto-import-with-referenced-project.js @@ -128,8 +128,6 @@ Info seq [hh:mm:ss:mss] Config: /user/username/projects/myproject/shared/src/li Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/src/library/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/src/library 1 undefined Config: /user/username/projects/myproject/shared/src/library/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/src/library 1 undefined Config: /user/username/projects/myproject/shared/src/library/tsconfig.json WatchType: Wild card directory -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/src/library/index.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations @@ -139,6 +137,8 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/package.json 2000 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/src/library/index.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/projectReferences/can-successfully-find-references-with-out-option.js b/tests/baselines/reference/tsserver/projectReferences/can-successfully-find-references-with-out-option.js index a17c98886c90f..d994536a1a0e7 100644 --- a/tests/baselines/reference/tsserver/projectReferences/can-successfully-find-references-with-out-option.js +++ b/tests/baselines/reference/tsserver/projectReferences/can-successfully-find-references-with-out-option.js @@ -461,10 +461,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/container/lib/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/lib/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/lib/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/container/lib/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/container/lib/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -586,10 +582,6 @@ Info seq [hh:mm:ss:mss] Config: /user/username/projects/container/exec/tsconfig ] } Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/exec/tsconfig.json 2000 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/container/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/container/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (0) @@ -671,10 +663,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/container/exec/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/exec/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/exec/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/container/exec/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/container/exec/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/projectReferences/disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set-in-indirect-project.js b/tests/baselines/reference/tsserver/projectReferences/disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set-in-indirect-project.js index 1201af2f8b210..729d4f1a56453 100644 --- a/tests/baselines/reference/tsserver/projectReferences/disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set-in-indirect-project.js +++ b/tests/baselines/reference/tsserver/projectReferences/disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set-in-indirect-project.js @@ -168,13 +168,13 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots @@ -662,18 +662,18 @@ Info seq [hh:mm:ss:mss] Files (2) Root file specified for compilation Info seq [hh:mm:ss:mss] ----------------------------------------------- -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -980,18 +980,18 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/wo Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/workspaces/dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (0) InitialLoadPending diff --git a/tests/baselines/reference/tsserver/projectReferences/disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set.js b/tests/baselines/reference/tsserver/projectReferences/disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set.js index 6474e38fc59fe..2a893711087a9 100644 --- a/tests/baselines/reference/tsserver/projectReferences/disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set.js +++ b/tests/baselines/reference/tsserver/projectReferences/disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set.js @@ -130,13 +130,13 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots @@ -616,18 +616,18 @@ Info seq [hh:mm:ss:mss] Files (2) Root file specified for compilation Info seq [hh:mm:ss:mss] ----------------------------------------------- -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -897,18 +897,18 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/wo Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/workspaces/dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/workspaces/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (0) InitialLoadPending diff --git a/tests/baselines/reference/tsserver/projectReferences/does-not-error-on-container-only-project.js b/tests/baselines/reference/tsserver/projectReferences/does-not-error-on-container-only-project.js index be857e4550041..155e1b863f26f 100644 --- a/tests/baselines/reference/tsserver/projectReferences/does-not-error-on-container-only-project.js +++ b/tests/baselines/reference/tsserver/projectReferences/does-not-error-on-container-only-project.js @@ -397,10 +397,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/container/exec/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/exec/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/exec/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/container/exec/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/container/exec/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) @@ -513,10 +509,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/container/compositeExec/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/compositeExec/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/compositeExec/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/container/compositeExec/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/container/compositeExec/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) @@ -627,10 +619,6 @@ Info seq [hh:mm:ss:mss] Config: /user/username/projects/container/tsconfig.json ] } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/container/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/container/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/container/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (0) diff --git a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-missing.js b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-missing.js index 07a74e1857038..714368c2b18da 100644 --- a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-missing.js +++ b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-missing.js @@ -305,10 +305,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-present.js b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-present.js index 3db66d746f02b..f12c393e54030 100644 --- a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-present.js +++ b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-present.js @@ -317,10 +317,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-missing.js b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-missing.js index f9a472217b455..b4f47b11a3fb1 100644 --- a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-missing.js +++ b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-missing.js @@ -304,10 +304,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-present.js b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-present.js index 2a912b9f3e4c0..4b732418be94b 100644 --- a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-present.js +++ b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-present.js @@ -316,10 +316,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-missing.js b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-missing.js index 9fb6fa2a58525..a48c7462ae35e 100644 --- a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-missing.js +++ b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-missing.js @@ -305,10 +305,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-present.js b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-present.js index f1f260d873f78..eb2ab3d235edf 100644 --- a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-present.js +++ b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-present.js @@ -317,10 +317,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-missing.js b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-missing.js index ed8917fe655b8..3400998504835 100644 --- a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-missing.js +++ b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-missing.js @@ -304,10 +304,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-present.js b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-present.js index 4643e0b1da747..606e4f67fff1f 100644 --- a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-present.js +++ b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-present.js @@ -316,10 +316,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-present.js b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-present.js index 50b15ea7e2ce2..3ee9a5cec696b 100644 --- a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-present.js +++ b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-present.js @@ -322,10 +322,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-missing.js b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-missing.js index 89deafb37fc4b..3b1603abf8849 100644 --- a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-missing.js +++ b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-missing.js @@ -308,10 +308,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-present.js b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-present.js index 942e881bf8c21..1632e6fdb0405 100644 --- a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-present.js +++ b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-present.js @@ -320,10 +320,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/projectReferences/finding-local-reference-doesnt-load-ancestor-sibling-projects.js b/tests/baselines/reference/tsserver/projectReferences/finding-local-reference-doesnt-load-ancestor-sibling-projects.js index 416cab1312765..8a5280a2b3e9a 100644 --- a/tests/baselines/reference/tsserver/projectReferences/finding-local-reference-doesnt-load-ancestor-sibling-projects.js +++ b/tests/baselines/reference/tsserver/projectReferences/finding-local-reference-doesnt-load-ancestor-sibling-projects.js @@ -394,10 +394,6 @@ Info seq [hh:mm:ss:mss] Config: /user/username/projects/solution/services/tscon ] } Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/services/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/solution/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (0) @@ -479,10 +475,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/solution/services/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/services/node_modules/@types 1 undefined Project: /user/username/projects/solution/services/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/services/node_modules/@types 1 undefined Project: /user/username/projects/solution/services/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/services/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/services/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/solution/services/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/solution/services/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/solution/services/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/solution/services/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) diff --git a/tests/baselines/reference/tsserver/projectReferences/finding-references-in-overlapping-projects.js b/tests/baselines/reference/tsserver/projectReferences/finding-references-in-overlapping-projects.js index 9a26f7be98059..2b1d767d88534 100644 --- a/tests/baselines/reference/tsserver/projectReferences/finding-references-in-overlapping-projects.js +++ b/tests/baselines/reference/tsserver/projectReferences/finding-references-in-overlapping-projects.js @@ -374,10 +374,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/solution/a/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/a/node_modules/@types 1 undefined Project: /user/username/projects/solution/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/a/node_modules/@types 1 undefined Project: /user/username/projects/solution/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/solution/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/solution/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/solution/a/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/solution/a/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -524,10 +520,6 @@ Info seq [hh:mm:ss:mss] Config: /user/username/projects/solution/d/tsconfig.jso ] } Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/d/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/solution/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (0) @@ -607,18 +599,10 @@ Info seq [hh:mm:ss:mss] event: } Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/c/index.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/solution/c/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution 0 undefined Project: /user/username/projects/solution/c/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution 0 undefined Project: /user/username/projects/solution/c/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/a 1 undefined Project: /user/username/projects/solution/c/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/a 1 undefined Project: /user/username/projects/solution/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/b 1 undefined Project: /user/username/projects/solution/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/b 1 undefined Project: /user/username/projects/solution/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/c/node_modules/@types 1 undefined Project: /user/username/projects/solution/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/c/node_modules/@types 1 undefined Project: /user/username/projects/solution/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/solution/c/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/solution/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/solution/c/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/solution/c/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) @@ -715,20 +699,10 @@ Info seq [hh:mm:ss:mss] event: } Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/d/index.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/solution/d/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution 0 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution 0 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/a 1 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/a 1 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/c 1 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/c 1 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/b 1 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/b 1 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/d/node_modules/@types 1 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/d/node_modules/@types 1 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/solution/d/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/solution/d/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (5) diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-and-solution-is-built-with-preserveSymlinks.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-and-solution-is-built-with-preserveSymlinks.js index b8144bec39c27..f7f4f059ab24a 100644 --- a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-and-solution-is-built-with-preserveSymlinks.js +++ b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-and-solution-is-built-with-preserveSymlinks.js @@ -298,9 +298,6 @@ Info seq [hh:mm:ss:mss] Config: /user/username/projects/myproject/packages/B/ts Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations @@ -312,6 +309,9 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/b 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/b 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-and-solution-is-built.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-and-solution-is-built.js index 0df51c65a5f6b..011b21f4728ee 100644 --- a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-and-solution-is-built.js +++ b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-and-solution-is-built.js @@ -284,9 +284,6 @@ Info seq [hh:mm:ss:mss] Config: /user/username/projects/myproject/packages/B/ts Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations @@ -298,6 +295,9 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/b 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/b 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-and-solution-is-not-built-with-preserveSymlinks.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-and-solution-is-not-built-with-preserveSymlinks.js index 75e32ba43e4c3..3398e92b9fd05 100644 --- a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-and-solution-is-not-built-with-preserveSymlinks.js +++ b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-and-solution-is-not-built-with-preserveSymlinks.js @@ -130,9 +130,6 @@ Info seq [hh:mm:ss:mss] Config: /user/username/projects/myproject/packages/B/ts Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations @@ -144,6 +141,9 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/b 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/b 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-and-solution-is-not-built.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-and-solution-is-not-built.js index 109640f93e7da..e825c99a563c6 100644 --- a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-and-solution-is-not-built.js +++ b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-and-solution-is-not-built.js @@ -126,9 +126,6 @@ Info seq [hh:mm:ss:mss] Config: /user/username/projects/myproject/packages/B/ts Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations @@ -140,6 +137,9 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/b 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/b 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-with-scoped-package-and-solution-is-built-with-preserveSymlinks.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-with-scoped-package-and-solution-is-built-with-preserveSymlinks.js index 2ab391b70341a..9ec0206932638 100644 --- a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-with-scoped-package-and-solution-is-built-with-preserveSymlinks.js +++ b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-with-scoped-package-and-solution-is-built-with-preserveSymlinks.js @@ -298,9 +298,6 @@ Info seq [hh:mm:ss:mss] Config: /user/username/projects/myproject/packages/B/ts Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations @@ -312,6 +309,9 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@issue/b 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@issue/b 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-with-scoped-package-and-solution-is-built.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-with-scoped-package-and-solution-is-built.js index 560239f87f7d6..0e2b88458ae16 100644 --- a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-with-scoped-package-and-solution-is-built.js +++ b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-with-scoped-package-and-solution-is-built.js @@ -284,9 +284,6 @@ Info seq [hh:mm:ss:mss] Config: /user/username/projects/myproject/packages/B/ts Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations @@ -298,6 +295,9 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@issue/b 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@issue/b 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-with-scoped-package-and-solution-is-not-built-with-preserveSymlinks.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-with-scoped-package-and-solution-is-not-built-with-preserveSymlinks.js index 5ec7c06c40c33..04bc0c168964e 100644 --- a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-with-scoped-package-and-solution-is-not-built-with-preserveSymlinks.js +++ b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-with-scoped-package-and-solution-is-not-built-with-preserveSymlinks.js @@ -130,9 +130,6 @@ Info seq [hh:mm:ss:mss] Config: /user/username/projects/myproject/packages/B/ts Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations @@ -144,6 +141,9 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@issue/b 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@issue/b 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-with-scoped-package-and-solution-is-not-built.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-with-scoped-package-and-solution-is-not-built.js index 18b1cff132899..7f98a3f4daa23 100644 --- a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-with-scoped-package-and-solution-is-not-built.js +++ b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-with-scoped-package-and-solution-is-not-built.js @@ -126,9 +126,6 @@ Info seq [hh:mm:ss:mss] Config: /user/username/projects/myproject/packages/B/ts Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations @@ -140,6 +137,9 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@issue/b 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@issue/b 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-and-solution-is-built-with-preserveSymlinks.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-and-solution-is-built-with-preserveSymlinks.js index 2c46ee4a2b88c..a66ff19e0478c 100644 --- a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-and-solution-is-built-with-preserveSymlinks.js +++ b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-and-solution-is-built-with-preserveSymlinks.js @@ -295,9 +295,6 @@ Info seq [hh:mm:ss:mss] Config: /user/username/projects/myproject/packages/B/ts Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations @@ -307,6 +304,9 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/b 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/b 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-and-solution-is-built.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-and-solution-is-built.js index e5c8fc949b57a..d554b28438491 100644 --- a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-and-solution-is-built.js +++ b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-and-solution-is-built.js @@ -281,9 +281,6 @@ Info seq [hh:mm:ss:mss] Config: /user/username/projects/myproject/packages/B/ts Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations @@ -293,6 +290,9 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/b 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/b 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-and-solution-is-not-built-with-preserveSymlinks.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-and-solution-is-not-built-with-preserveSymlinks.js index 9fd74be2d6f76..53d8fcca946c0 100644 --- a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-and-solution-is-not-built-with-preserveSymlinks.js +++ b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-and-solution-is-not-built-with-preserveSymlinks.js @@ -127,9 +127,6 @@ Info seq [hh:mm:ss:mss] Config: /user/username/projects/myproject/packages/B/ts Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations @@ -139,6 +136,9 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/b 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/b 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-and-solution-is-not-built.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-and-solution-is-not-built.js index b13ddb4e9d149..09e684f0389d6 100644 --- a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-and-solution-is-not-built.js +++ b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-and-solution-is-not-built.js @@ -123,9 +123,6 @@ Info seq [hh:mm:ss:mss] Config: /user/username/projects/myproject/packages/B/ts Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations @@ -135,6 +132,9 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/b 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/b 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-with-scoped-package-and-solution-is-built-with-preserveSymlinks.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-with-scoped-package-and-solution-is-built-with-preserveSymlinks.js index 51f6179b7c80f..528ccf074d6b1 100644 --- a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-with-scoped-package-and-solution-is-built-with-preserveSymlinks.js +++ b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-with-scoped-package-and-solution-is-built-with-preserveSymlinks.js @@ -295,9 +295,6 @@ Info seq [hh:mm:ss:mss] Config: /user/username/projects/myproject/packages/B/ts Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations @@ -307,6 +304,9 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@issue/b 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@issue/b 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-with-scoped-package-and-solution-is-built.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-with-scoped-package-and-solution-is-built.js index 97ba905391df5..5f4dfd40c5989 100644 --- a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-with-scoped-package-and-solution-is-built.js +++ b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-with-scoped-package-and-solution-is-built.js @@ -281,9 +281,6 @@ Info seq [hh:mm:ss:mss] Config: /user/username/projects/myproject/packages/B/ts Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations @@ -293,6 +290,9 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@issue/b 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@issue/b 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-with-scoped-package-and-solution-is-not-built-with-preserveSymlinks.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-with-scoped-package-and-solution-is-not-built-with-preserveSymlinks.js index d122b2a0d992b..6e5a853c137ff 100644 --- a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-with-scoped-package-and-solution-is-not-built-with-preserveSymlinks.js +++ b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-with-scoped-package-and-solution-is-not-built-with-preserveSymlinks.js @@ -127,9 +127,6 @@ Info seq [hh:mm:ss:mss] Config: /user/username/projects/myproject/packages/B/ts Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations @@ -139,6 +136,9 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@issue/b 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@issue/b 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-with-scoped-package-and-solution-is-not-built.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-with-scoped-package-and-solution-is-not-built.js index 78b42dafda25d..7a4103c38ba76 100644 --- a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-with-scoped-package-and-solution-is-not-built.js +++ b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-with-scoped-package-and-solution-is-not-built.js @@ -123,9 +123,6 @@ Info seq [hh:mm:ss:mss] Config: /user/username/projects/myproject/packages/B/ts Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations @@ -135,6 +132,9 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@issue/b 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@issue/b 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/projectReferences/new-file-is-added-to-the-referenced-project-when-referenced-project-is-open-with-disableSourceOfProjectReferenceRedirect.js b/tests/baselines/reference/tsserver/projectReferences/new-file-is-added-to-the-referenced-project-when-referenced-project-is-open-with-disableSourceOfProjectReferenceRedirect.js index fd27446a15b45..6f811e25f2c21 100644 --- a/tests/baselines/reference/tsserver/projectReferences/new-file-is-added-to-the-referenced-project-when-referenced-project-is-open-with-disableSourceOfProjectReferenceRedirect.js +++ b/tests/baselines/reference/tsserver/projectReferences/new-file-is-added-to-the-referenced-project-when-referenced-project-is-open-with-disableSourceOfProjectReferenceRedirect.js @@ -292,12 +292,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project1/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project1/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferences/new-file-is-added-to-the-referenced-project-when-referenced-project-is-open.js b/tests/baselines/reference/tsserver/projectReferences/new-file-is-added-to-the-referenced-project-when-referenced-project-is-open.js index f898c33029e0e..9a207d9c0866f 100644 --- a/tests/baselines/reference/tsserver/projectReferences/new-file-is-added-to-the-referenced-project-when-referenced-project-is-open.js +++ b/tests/baselines/reference/tsserver/projectReferences/new-file-is-added-to-the-referenced-project-when-referenced-project-is-open.js @@ -290,12 +290,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project1/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project1/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferences/project-is-directly-referenced-by-solution.js b/tests/baselines/reference/tsserver/projectReferences/project-is-directly-referenced-by-solution.js index 3948c889de088..dd97454be5f93 100644 --- a/tests/baselines/reference/tsserver/projectReferences/project-is-directly-referenced-by-solution.js +++ b/tests/baselines/reference/tsserver/projectReferences/project-is-directly-referenced-by-solution.js @@ -1486,10 +1486,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -1941,10 +1937,6 @@ Info seq [hh:mm:ss:mss] Files (0) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (0) InitialLoadPending @@ -2468,10 +2460,6 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (0) @@ -2974,15 +2962,11 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3 1 undefined Config: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3 1 undefined Config: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/indirect3/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/main.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/main.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/indirect3/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/indirect3/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) @@ -3073,10 +3057,6 @@ Info seq [hh:mm:ss:mss] Files (0) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) @@ -3097,10 +3077,6 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -3309,10 +3285,6 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) @@ -3366,10 +3338,6 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (0) diff --git a/tests/baselines/reference/tsserver/projectReferences/project-is-indirectly-referenced-by-solution.js b/tests/baselines/reference/tsserver/projectReferences/project-is-indirectly-referenced-by-solution.js index e37b3ca584a69..e3a307fd35207 100644 --- a/tests/baselines/reference/tsserver/projectReferences/project-is-indirectly-referenced-by-solution.js +++ b/tests/baselines/reference/tsserver/projectReferences/project-is-indirectly-referenced-by-solution.js @@ -1653,10 +1653,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -2116,10 +2112,6 @@ Info seq [hh:mm:ss:mss] Files (0) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (0) InitialLoadPending @@ -2689,10 +2681,6 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (0) @@ -2772,10 +2760,6 @@ Info seq [hh:mm:ss:mss] event: } Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) @@ -2873,10 +2857,6 @@ Info seq [hh:mm:ss:mss] event: } Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect2/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect2.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect2.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) @@ -3603,15 +3583,11 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3 1 undefined Config: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3 1 undefined Config: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/indirect3/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/main.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/main.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/indirect3/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/indirect3/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) @@ -3702,10 +3678,6 @@ Info seq [hh:mm:ss:mss] Files (0) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) @@ -3723,10 +3695,6 @@ Info seq [hh:mm:ss:mss] Files (3) Matched by include pattern './src/**/*' in 'tsconfig-src.json' Info seq [hh:mm:ss:mss] ----------------------------------------------- -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) @@ -3747,10 +3715,6 @@ Info seq [hh:mm:ss:mss] Files (4) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) @@ -3774,10 +3738,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -4068,10 +4028,6 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) @@ -4125,10 +4081,6 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (0) @@ -4167,10 +4119,6 @@ Info seq [hh:mm:ss:mss] event: } Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) @@ -4223,10 +4171,6 @@ Info seq [hh:mm:ss:mss] event: } Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect2/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect2.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect2.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) diff --git a/tests/baselines/reference/tsserver/projectReferences/reusing-d.ts-files-from-composite-and-non-composite-projects.js b/tests/baselines/reference/tsserver/projectReferences/reusing-d.ts-files-from-composite-and-non-composite-projects.js index d38d7ce6fbaf1..bb13b05fb13c2 100644 --- a/tests/baselines/reference/tsserver/projectReferences/reusing-d.ts-files-from-composite-and-non-composite-projects.js +++ b/tests/baselines/reference/tsserver/projectReferences/reusing-d.ts-files-from-composite-and-non-composite-projects.js @@ -129,10 +129,10 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/compositea 1 undefined Config: /user/username/projects/myproject/compositea/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/compositea/a2.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/compositea/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dist/compositeb/b.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dist 1 undefined Project: /user/username/projects/myproject/compositea/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dist 1 undefined Project: /user/username/projects/myproject/compositea/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dist/compositeb/b.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/compositea/node_modules/@types 1 undefined Project: /user/username/projects/myproject/compositea/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/compositea/node_modules/@types 1 undefined Project: /user/username/projects/myproject/compositea/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/compositea/tsconfig.json WatchType: Type roots @@ -369,10 +369,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/compositeb/b.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/compositec/node_modules/@types 1 undefined Project: /user/username/projects/myproject/compositec/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/compositec/node_modules/@types 1 undefined Project: /user/username/projects/myproject/compositec/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/compositec/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/compositec/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/compositec/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/compositec/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/compositec/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/compositec/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/projectReferences/root-file-is-file-from-referenced-project-and-using-declaration-maps.js b/tests/baselines/reference/tsserver/projectReferences/root-file-is-file-from-referenced-project-and-using-declaration-maps.js index 5d9187aac45ee..b7035019d7a9b 100644 --- a/tests/baselines/reference/tsserver/projectReferences/root-file-is-file-from-referenced-project-and-using-declaration-maps.js +++ b/tests/baselines/reference/tsserver/projectReferences/root-file-is-file-from-referenced-project-and-using-declaration-maps.js @@ -551,12 +551,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/project/src/tsconfig.json Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/out/input/keyboard.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/out/input/keyboard.test.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/node_modules/@types 1 undefined Project: /user/username/projects/project/src/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/node_modules/@types 1 undefined Project: /user/username/projects/project/src/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/src/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/src/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/project/src/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/project/src/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/project/src/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/project/src/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) diff --git a/tests/baselines/reference/tsserver/projectReferences/root-file-is-file-from-referenced-project.js b/tests/baselines/reference/tsserver/projectReferences/root-file-is-file-from-referenced-project.js index 7da66c20a5553..fb4b4196c801b 100644 --- a/tests/baselines/reference/tsserver/projectReferences/root-file-is-file-from-referenced-project.js +++ b/tests/baselines/reference/tsserver/projectReferences/root-file-is-file-from-referenced-project.js @@ -549,12 +549,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src 1 undefined Config: /user/username/projects/project/src/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src 1 undefined Config: /user/username/projects/project/src/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/project/src/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/node_modules/@types 1 undefined Project: /user/username/projects/project/src/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/node_modules/@types 1 undefined Project: /user/username/projects/project/src/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/src/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/src/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/project/src/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/project/src/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/project/src/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/project/src/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) diff --git a/tests/baselines/reference/tsserver/projectReferences/solution-with-its-own-files-and-disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set-in-first-indirect-project-but-not-in-another-one.js b/tests/baselines/reference/tsserver/projectReferences/solution-with-its-own-files-and-disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set-in-first-indirect-project-but-not-in-another-one.js index f2412f04852b4..dd54a090ef01d 100644 --- a/tests/baselines/reference/tsserver/projectReferences/solution-with-its-own-files-and-disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set-in-first-indirect-project-but-not-in-another-one.js +++ b/tests/baselines/reference/tsserver/projectReferences/solution-with-its-own-files-and-disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set-in-first-indirect-project-but-not-in-another-one.js @@ -355,10 +355,6 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) @@ -997,10 +993,6 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) @@ -1021,10 +1013,10 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info @@ -1302,10 +1294,6 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) @@ -1474,10 +1462,6 @@ Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/myproject/tsconfig-s Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /user/username/workspaces/dummy/dummy.ts ProjectRootPath: undefined:: Result: undefined Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined:: Result: /user/username/projects/myproject/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/own/main.ts" @@ -1556,10 +1540,6 @@ Info seq [hh:mm:ss:mss] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (5) @@ -1602,10 +1582,6 @@ Info seq [hh:mm:ss:mss] event: "diagnostics": [] } } -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -1617,10 +1593,6 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/projectReferences/solution-with-its-own-files-and-project-found-is-not-solution-but-references-open-file-through-project-reference.js b/tests/baselines/reference/tsserver/projectReferences/solution-with-its-own-files-and-project-found-is-not-solution-but-references-open-file-through-project-reference.js index 4b57bc630c469..e7c4de0606dce 100644 --- a/tests/baselines/reference/tsserver/projectReferences/solution-with-its-own-files-and-project-found-is-not-solution-but-references-open-file-through-project-reference.js +++ b/tests/baselines/reference/tsserver/projectReferences/solution-with-its-own-files-and-project-found-is-not-solution-but-references-open-file-through-project-reference.js @@ -263,10 +263,6 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) @@ -945,10 +941,6 @@ Info seq [hh:mm:ss:mss] Files (4) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) @@ -969,10 +961,10 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info @@ -1194,10 +1186,6 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) @@ -2438,10 +2426,6 @@ Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/myproject/tsconfig.j Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/myproject/tsconfig-src.json, Cancelled earlier one Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined:: Result: /user/username/projects/myproject/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/own/main.ts" @@ -2481,10 +2465,6 @@ Info seq [hh:mm:ss:mss] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json projectStateVersion: 5 projectProgramVersion: 4 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) @@ -2524,10 +2504,6 @@ Info seq [hh:mm:ss:mss] event: "diagnostics": [] } } -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -2539,10 +2515,6 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json projectStateVersion: 4 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) @@ -3240,15 +3212,11 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3 1 undefined Config: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3 1 undefined Config: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/indirect3/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/main.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/main.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/indirect3/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/indirect3/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) @@ -3351,10 +3319,6 @@ Info seq [hh:mm:ss:mss] Files (4) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) @@ -3375,10 +3339,6 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -3604,10 +3564,6 @@ Info seq [hh:mm:ss:mss] Config: /user/username/projects/myproject/tsconfig-src. Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) @@ -3659,10 +3615,6 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/projectReferences/solution-with-its-own-files-and-project-is-indirectly-referenced-by-solution.js b/tests/baselines/reference/tsserver/projectReferences/solution-with-its-own-files-and-project-is-indirectly-referenced-by-solution.js index 72debef5de164..8f18b37d4203c 100644 --- a/tests/baselines/reference/tsserver/projectReferences/solution-with-its-own-files-and-project-is-indirectly-referenced-by-solution.js +++ b/tests/baselines/reference/tsserver/projectReferences/solution-with-its-own-files-and-project-is-indirectly-referenced-by-solution.js @@ -353,10 +353,6 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) @@ -1084,10 +1080,6 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) @@ -1108,10 +1100,10 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info @@ -1388,10 +1380,6 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) @@ -2796,10 +2784,6 @@ Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/myproject/tsconfig-s Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined:: Result: /user/username/projects/myproject/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/own/main.ts" @@ -2877,10 +2861,6 @@ Info seq [hh:mm:ss:mss] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json projectStateVersion: 5 projectProgramVersion: 4 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (5) @@ -2923,10 +2903,6 @@ Info seq [hh:mm:ss:mss] event: "diagnostics": [] } } -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -2938,10 +2914,6 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json projectStateVersion: 4 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) @@ -3154,10 +3126,6 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) @@ -3260,10 +3228,6 @@ Info seq [hh:mm:ss:mss] event: } Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect2/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect2.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect2.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) @@ -4030,15 +3994,11 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3 1 undefined Config: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3 1 undefined Config: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/indirect3/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/main.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/main.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/indirect3/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/indirect3/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) @@ -4144,10 +4104,6 @@ Info seq [hh:mm:ss:mss] Files (5) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) @@ -4165,10 +4121,6 @@ Info seq [hh:mm:ss:mss] Files (3) Matched by include pattern './src/**/*' in 'tsconfig-src.json' Info seq [hh:mm:ss:mss] ----------------------------------------------- -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) @@ -4189,10 +4141,6 @@ Info seq [hh:mm:ss:mss] Files (4) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) @@ -4216,10 +4164,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -4531,10 +4475,6 @@ Info seq [hh:mm:ss:mss] Config: /user/username/projects/myproject/tsconfig-indi } Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (5) @@ -4589,10 +4529,6 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) @@ -4653,10 +4589,6 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) @@ -4718,10 +4650,6 @@ Info seq [hh:mm:ss:mss] event: } Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect2/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect2.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect2.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) diff --git a/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-arrow-function-as-object-literal-property-types.js b/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-arrow-function-as-object-literal-property-types.js index 16b9b0422be6a..3fc20cdc3b2df 100644 --- a/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-arrow-function-as-object-literal-property-types.js +++ b/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-arrow-function-as-object-literal-property-types.js @@ -346,10 +346,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/solution/shared/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -477,10 +473,6 @@ Info seq [hh:mm:ss:mss] Config: /user/username/projects/solution/app/tsconfig.j Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src 1 undefined Config: /user/username/projects/solution/app/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src 1 undefined Config: /user/username/projects/solution/app/tsconfig.json WatchType: Wild card directory -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/solution/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (0) @@ -560,14 +552,8 @@ Info seq [hh:mm:ss:mss] event: } Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src/app.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/solution/app/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/solution/app/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/solution/app/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-arrow-function-as-object-literal-property.js b/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-arrow-function-as-object-literal-property.js index db429191aebc1..a5ee82f1143c4 100644 --- a/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-arrow-function-as-object-literal-property.js +++ b/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-arrow-function-as-object-literal-property.js @@ -347,10 +347,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/solution/shared/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-arrow-function-assignment.js b/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-arrow-function-assignment.js index 97f148f7a0bc3..2374cecdd46d1 100644 --- a/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-arrow-function-assignment.js +++ b/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-arrow-function-assignment.js @@ -346,10 +346,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/solution/shared/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -477,10 +473,6 @@ Info seq [hh:mm:ss:mss] Config: /user/username/projects/solution/app/tsconfig.j Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src 1 undefined Config: /user/username/projects/solution/app/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src 1 undefined Config: /user/username/projects/solution/app/tsconfig.json WatchType: Wild card directory -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/solution/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (0) @@ -560,14 +552,8 @@ Info seq [hh:mm:ss:mss] event: } Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src/app.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/solution/app/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/solution/app/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/solution/app/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-method-of-class-expression.js b/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-method-of-class-expression.js index 6a9d3bcfac0d7..17a68c46ed2ec 100644 --- a/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-method-of-class-expression.js +++ b/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-method-of-class-expression.js @@ -348,10 +348,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/solution/shared/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -479,10 +475,6 @@ Info seq [hh:mm:ss:mss] Config: /user/username/projects/solution/app/tsconfig.j Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src 1 undefined Config: /user/username/projects/solution/app/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src 1 undefined Config: /user/username/projects/solution/app/tsconfig.json WatchType: Wild card directory -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/solution/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (0) @@ -562,14 +554,8 @@ Info seq [hh:mm:ss:mss] event: } Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src/app.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/solution/app/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/solution/app/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/solution/app/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-object-literal-property.js b/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-object-literal-property.js index 247b1723f494b..c761e844ad8a5 100644 --- a/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-object-literal-property.js +++ b/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-object-literal-property.js @@ -346,10 +346,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/solution/shared/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -477,10 +473,6 @@ Info seq [hh:mm:ss:mss] Config: /user/username/projects/solution/app/tsconfig.j Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src 1 undefined Config: /user/username/projects/solution/app/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src 1 undefined Config: /user/username/projects/solution/app/tsconfig.json WatchType: Wild card directory -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/solution/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (0) @@ -560,14 +552,8 @@ Info seq [hh:mm:ss:mss] event: } Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src/app.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/solution/app/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/solution/app/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/solution/app/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/projectReferences/when-file-is-not-part-of-first-config-tree-found-appConfig-not-composite-with-file-open-before-revert.js b/tests/baselines/reference/tsserver/projectReferences/when-file-is-not-part-of-first-config-tree-found-appConfig-not-composite-with-file-open-before-revert.js index d793be74f063d..55a7d61f3c7ad 100644 --- a/tests/baselines/reference/tsserver/projectReferences/when-file-is-not-part-of-first-config-tree-found-appConfig-not-composite-with-file-open-before-revert.js +++ b/tests/baselines/reference/tsserver/projectReferences/when-file-is-not-part-of-first-config-tree-found-appConfig-not-composite-with-file-open-before-revert.js @@ -275,10 +275,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/demos/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/demos/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/demos/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/demos/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/demos/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) @@ -575,10 +571,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/app/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/app/node_modules/@types 1 undefined Project: /home/src/projects/project/app/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/app/node_modules/@types 1 undefined Project: /home/src/projects/project/app/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/app/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/app/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/app/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/app/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/app/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/app/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -824,8 +816,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/random/node_modules/@types 1 undefined Project: /home/src/projects/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/random/node_modules/@types 1 undefined Project: /home/src/projects/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferences/when-file-is-not-part-of-first-config-tree-found-appConfig-not-composite.js b/tests/baselines/reference/tsserver/projectReferences/when-file-is-not-part-of-first-config-tree-found-appConfig-not-composite.js index 3703221eae115..cde5c0201637d 100644 --- a/tests/baselines/reference/tsserver/projectReferences/when-file-is-not-part-of-first-config-tree-found-appConfig-not-composite.js +++ b/tests/baselines/reference/tsserver/projectReferences/when-file-is-not-part-of-first-config-tree-found-appConfig-not-composite.js @@ -275,10 +275,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/demos/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/demos/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/demos/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/demos/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/demos/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) @@ -575,10 +571,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/app/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/app/node_modules/@types 1 undefined Project: /home/src/projects/project/app/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/app/node_modules/@types 1 undefined Project: /home/src/projects/project/app/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/app/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/app/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/app/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/app/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/app/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/app/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1035,8 +1027,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/random/node_modules/@types 1 undefined Project: /home/src/projects/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/random/node_modules/@types 1 undefined Project: /home/src/projects/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferences/when-file-is-not-part-of-first-config-tree-found-demoConfig-change-with-file-open-before-revert.js b/tests/baselines/reference/tsserver/projectReferences/when-file-is-not-part-of-first-config-tree-found-demoConfig-change-with-file-open-before-revert.js index 2c86c14856154..235b0bbd65ad6 100644 --- a/tests/baselines/reference/tsserver/projectReferences/when-file-is-not-part-of-first-config-tree-found-demoConfig-change-with-file-open-before-revert.js +++ b/tests/baselines/reference/tsserver/projectReferences/when-file-is-not-part-of-first-config-tree-found-demoConfig-change-with-file-open-before-revert.js @@ -275,10 +275,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/demos/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/demos/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/demos/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/demos/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/demos/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) @@ -771,8 +767,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/random/node_modules/@types 1 undefined Project: /home/src/projects/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/random/node_modules/@types 1 undefined Project: /home/src/projects/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferences/when-file-is-not-part-of-first-config-tree-found-demoConfig-change.js b/tests/baselines/reference/tsserver/projectReferences/when-file-is-not-part-of-first-config-tree-found-demoConfig-change.js index 86e73227ad5b1..b523b59238310 100644 --- a/tests/baselines/reference/tsserver/projectReferences/when-file-is-not-part-of-first-config-tree-found-demoConfig-change.js +++ b/tests/baselines/reference/tsserver/projectReferences/when-file-is-not-part-of-first-config-tree-found-demoConfig-change.js @@ -275,10 +275,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/demos/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/demos/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/demos/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/demos/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/demos/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) @@ -1058,8 +1054,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/random/node_modules/@types 1 undefined Project: /home/src/projects/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/random/node_modules/@types 1 undefined Project: /home/src/projects/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferences/when-file-is-not-part-of-first-config-tree-found-finds-default-project.js b/tests/baselines/reference/tsserver/projectReferences/when-file-is-not-part-of-first-config-tree-found-finds-default-project.js index e6b4a92fc80e4..54766439fdf76 100644 --- a/tests/baselines/reference/tsserver/projectReferences/when-file-is-not-part-of-first-config-tree-found-finds-default-project.js +++ b/tests/baselines/reference/tsserver/projectReferences/when-file-is-not-part-of-first-config-tree-found-finds-default-project.js @@ -275,10 +275,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/demos/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/demos/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/demos/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/demos/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/demos/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) @@ -614,8 +610,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/random/node_modules/@types 1 undefined Project: /home/src/projects/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/random/node_modules/@types 1 undefined Project: /home/src/projects/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1159,10 +1153,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project 1 undefined Config: /home/src/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project 1 undefined Config: /home/src/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/tsconfig.json 2000 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/demos/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) @@ -1187,10 +1177,8 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/demos/tsconfig.json 2000 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/demos/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/demos/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/app/Component-demos.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/app/Component.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/demos/helpers.ts 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/projectReferences/when-file-is-not-part-of-first-config-tree-found-reload-projects.js b/tests/baselines/reference/tsserver/projectReferences/when-file-is-not-part-of-first-config-tree-found-reload-projects.js index 2fe4aa2a0e663..e10fb56dfb310 100644 --- a/tests/baselines/reference/tsserver/projectReferences/when-file-is-not-part-of-first-config-tree-found-reload-projects.js +++ b/tests/baselines/reference/tsserver/projectReferences/when-file-is-not-part-of-first-config-tree-found-reload-projects.js @@ -275,10 +275,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/demos/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/demos/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/demos/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/demos/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/demos/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) @@ -485,10 +481,6 @@ Info seq [hh:mm:ss:mss] Config: /home/src/projects/project/app/tsconfig.json : } } Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/projects/project/app/tsconfig.json ProjectRootPath: undefined:: Result: /home/src/projects/project/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Config: /home/src/projects/project/tsconfig.json : { "rootNames": [ "/home/src/projects/project/app/Component-demos.ts", @@ -539,10 +531,6 @@ Info seq [hh:mm:ss:mss] Config: /home/src/projects/project/demos/tsconfig.json "configFilePath": "/home/src/projects/project/demos/tsconfig.json" } } -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/tsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (4) @@ -585,10 +573,6 @@ Info seq [hh:mm:ss:mss] event: } Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/demos/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/demos/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -602,10 +586,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/demos/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/demos/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/demos/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/demos/tsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/demos/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/projectReferences/when-file-is-not-part-of-first-config-tree-found-solutionConfig-delete-with-file-open-before-revert.js b/tests/baselines/reference/tsserver/projectReferences/when-file-is-not-part-of-first-config-tree-found-solutionConfig-delete-with-file-open-before-revert.js index 8a8e1f7b240a2..6ca73af11cbac 100644 --- a/tests/baselines/reference/tsserver/projectReferences/when-file-is-not-part-of-first-config-tree-found-solutionConfig-delete-with-file-open-before-revert.js +++ b/tests/baselines/reference/tsserver/projectReferences/when-file-is-not-part-of-first-config-tree-found-solutionConfig-delete-with-file-open-before-revert.js @@ -275,10 +275,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/demos/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/demos/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/demos/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/demos/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/demos/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) @@ -600,8 +596,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/random/node_modules/@types 1 undefined Project: /home/src/projects/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/random/node_modules/@types 1 undefined Project: /home/src/projects/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferences/when-file-is-not-part-of-first-config-tree-found-solutionConfig-delete.js b/tests/baselines/reference/tsserver/projectReferences/when-file-is-not-part-of-first-config-tree-found-solutionConfig-delete.js index 87a79adb78744..df943c3c07e12 100644 --- a/tests/baselines/reference/tsserver/projectReferences/when-file-is-not-part-of-first-config-tree-found-solutionConfig-delete.js +++ b/tests/baselines/reference/tsserver/projectReferences/when-file-is-not-part-of-first-config-tree-found-solutionConfig-delete.js @@ -275,10 +275,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/demos/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/demos/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/demos/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/demos/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/demos/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) @@ -798,8 +794,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/random/node_modules/@types 1 undefined Project: /home/src/projects/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/random/node_modules/@types 1 undefined Project: /home/src/projects/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferences/when-file-is-not-part-of-first-config-tree-found-solutionConfig-without-reference-to-demo-with-file-open-before-revert.js b/tests/baselines/reference/tsserver/projectReferences/when-file-is-not-part-of-first-config-tree-found-solutionConfig-without-reference-to-demo-with-file-open-before-revert.js index aeb6c26ac06b1..5d87a75a63c82 100644 --- a/tests/baselines/reference/tsserver/projectReferences/when-file-is-not-part-of-first-config-tree-found-solutionConfig-without-reference-to-demo-with-file-open-before-revert.js +++ b/tests/baselines/reference/tsserver/projectReferences/when-file-is-not-part-of-first-config-tree-found-solutionConfig-without-reference-to-demo-with-file-open-before-revert.js @@ -275,10 +275,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/demos/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/demos/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/demos/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/demos/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/demos/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) @@ -725,8 +721,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/random/node_modules/@types 1 undefined Project: /home/src/projects/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/random/node_modules/@types 1 undefined Project: /home/src/projects/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -825,10 +819,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/demos/tsconfig.json 2000 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/demos/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/demos/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/app/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (0) InitialLoadPending @@ -1259,10 +1249,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/demos/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/demos/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/demos/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/demos/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/demos/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/projectReferences/when-file-is-not-part-of-first-config-tree-found-solutionConfig-without-reference-to-demo.js b/tests/baselines/reference/tsserver/projectReferences/when-file-is-not-part-of-first-config-tree-found-solutionConfig-without-reference-to-demo.js index cdb851dc220fb..8bebfb75551ba 100644 --- a/tests/baselines/reference/tsserver/projectReferences/when-file-is-not-part-of-first-config-tree-found-solutionConfig-without-reference-to-demo.js +++ b/tests/baselines/reference/tsserver/projectReferences/when-file-is-not-part-of-first-config-tree-found-solutionConfig-without-reference-to-demo.js @@ -275,10 +275,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/demos/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/demos/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/demos/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/demos/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/demos/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/demos/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) @@ -969,8 +965,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/random/node_modules/@types 1 undefined Project: /home/src/projects/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/random/node_modules/@types 1 undefined Project: /home/src/projects/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferences/when-files-from-two-projects-are-open-and-one-project-references.js b/tests/baselines/reference/tsserver/projectReferences/when-files-from-two-projects-are-open-and-one-project-references.js index 93fcf65868d77..fd992de7578bc 100644 --- a/tests/baselines/reference/tsserver/projectReferences/when-files-from-two-projects-are-open-and-one-project-references.js +++ b/tests/baselines/reference/tsserver/projectReferences/when-files-from-two-projects-are-open-and-one-project-references.js @@ -658,10 +658,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/core/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/core/node_modules/@types 1 undefined Project: /user/username/projects/myproject/core/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/core/node_modules/@types 1 undefined Project: /user/username/projects/myproject/core/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/core/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/core/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/core/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/core/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/core/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/core/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -883,10 +879,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/indirect/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/indirect/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/indirect/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -978,10 +970,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/coreRef1/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef1/node_modules/@types 1 undefined Project: /user/username/projects/myproject/coreRef1/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef1/node_modules/@types 1 undefined Project: /user/username/projects/myproject/coreRef1/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/coreRef1/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/coreRef1/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/coreRef1/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/coreRef1/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/coreRef1/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/coreRef1/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1073,10 +1061,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectDisabledChildLoad1/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectDisabledChildLoad1/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1169,10 +1153,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectDisabledChildLoad2/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectDisabledChildLoad2/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1265,10 +1245,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/refToCoreRef3/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refToCoreRef3/node_modules/@types 1 undefined Project: /user/username/projects/myproject/refToCoreRef3/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refToCoreRef3/node_modules/@types 1 undefined Project: /user/username/projects/myproject/refToCoreRef3/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/refToCoreRef3/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/refToCoreRef3/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/refToCoreRef3/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/refToCoreRef3/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/refToCoreRef3/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/refToCoreRef3/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1360,10 +1336,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/coreRef3/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef3/node_modules/@types 1 undefined Project: /user/username/projects/myproject/coreRef3/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef3/node_modules/@types 1 undefined Project: /user/username/projects/myproject/coreRef3/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/coreRef3/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/coreRef3/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/coreRef3/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/coreRef3/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/coreRef3/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/coreRef3/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferences/when-the-referenced-projects-have-allowJs-and-emitDeclarationOnly.js b/tests/baselines/reference/tsserver/projectReferences/when-the-referenced-projects-have-allowJs-and-emitDeclarationOnly.js index e8402c091b067..26d5a1a1f9059 100644 --- a/tests/baselines/reference/tsserver/projectReferences/when-the-referenced-projects-have-allowJs-and-emitDeclarationOnly.js +++ b/tests/baselines/reference/tsserver/projectReferences/when-the-referenced-projects-have-allowJs-and-emitDeclarationOnly.js @@ -132,11 +132,6 @@ Info seq [hh:mm:ss:mss] Config: /user/username/projects/myproject/packages/emit Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/emit-composite/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/emit-composite/src 1 undefined Config: /user/username/projects/myproject/packages/emit-composite/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/emit-composite/src 1 undefined Config: /user/username/projects/myproject/packages/emit-composite/tsconfig.json WatchType: Wild card directory -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/emit-composite/src/index.js 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/emit-composite 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/emit-composite 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/emit-composite/src/testModule.js 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/consumer/src 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/consumer/src 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/consumer/node_modules 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Failed Lookup Locations @@ -146,6 +141,11 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/emit-composite/package.json 2000 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/emit-composite/src/index.js 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/emit-composite/src 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/emit-composite/src 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/emit-composite/src/testModule.js 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/consumer/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/consumer/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Type roots @@ -287,8 +287,6 @@ FsWatchesRecursive:: {} /user/username/projects/myproject/packages/consumer/src: *new* {} -/user/username/projects/myproject/packages/emit-composite: *new* - {} /user/username/projects/myproject/packages/emit-composite/src: *new* {} diff --git a/tests/baselines/reference/tsserver/projectReferences/with-dts-file-next-to-ts-file.js b/tests/baselines/reference/tsserver/projectReferences/with-dts-file-next-to-ts-file.js index 4cfa521a2dedc..c9961e37a5bc1 100644 --- a/tests/baselines/reference/tsserver/projectReferences/with-dts-file-next-to-ts-file.js +++ b/tests/baselines/reference/tsserver/projectReferences/with-dts-file-next-to-ts-file.js @@ -194,10 +194,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -305,13 +301,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project/src", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -350,7 +344,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -373,7 +366,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-change-as-rename-action-before-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-change-as-rename-action-before-write.js index 481c61c7d0a7e..c8dda6352ef2b 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-change-as-rename-action-before-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-change-as-rename-action-before-write.js @@ -425,10 +425,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-change-as-rename-no-timeout.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-change-as-rename-no-timeout.js index 96b981c4b59da..370a7d16d69ba 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-change-as-rename-no-timeout.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-change-as-rename-no-timeout.js @@ -425,10 +425,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-change-as-rename-timeout-after-delete.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-change-as-rename-timeout-after-delete.js index edd8e1fc829d0..9941c2a490de0 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-change-as-rename-timeout-after-delete.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-change-as-rename-timeout-after-delete.js @@ -425,10 +425,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-change-as-rename-timeout-after-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-change-as-rename-timeout-after-write.js index 575f91149e267..bc4e32bbfb5e0 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-change-as-rename-timeout-after-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-change-as-rename-timeout-after-write.js @@ -425,10 +425,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-changes-with-timeout-before-request.js index 7ee0d87a07596..afaa3fa7da1d4 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-changes-with-timeout-before-request.js @@ -425,10 +425,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-changes.js index 7aeef8c6f9c7c..49c18c27cd2c0 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-changes.js @@ -425,10 +425,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-created.js index b958eeb722738..e717720e28b02 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-created.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-created.js @@ -417,10 +417,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1569,10 +1565,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-deleted.js index 5e13e83abb8e8..1648fadedf8a1 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-deleted.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-deleted.js @@ -425,10 +425,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1521,10 +1517,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-not-present.js index 89a9a4e526516..4a2382124c785 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-not-present.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-not-present.js @@ -417,10 +417,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1313,10 +1309,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-rewrite-as-rename-action-before-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-rewrite-as-rename-action-before-write.js index dfe59e38f2568..ab3647cd7a00c 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-rewrite-as-rename-action-before-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-rewrite-as-rename-action-before-write.js @@ -425,10 +425,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-rewrite-as-rename-no-timeout.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-rewrite-as-rename-no-timeout.js index 6d255c619ecfc..20d5a36f95527 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-rewrite-as-rename-no-timeout.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-rewrite-as-rename-no-timeout.js @@ -425,10 +425,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-rewrite-as-rename-timeout-after-delete.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-rewrite-as-rename-timeout-after-delete.js index e28db8ce20c22..c44aea5101a57 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-rewrite-as-rename-timeout-after-delete.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-rewrite-as-rename-timeout-after-delete.js @@ -425,10 +425,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-rewrite-as-rename-timeout-after-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-rewrite-as-rename-timeout-after-write.js index a313f2343cb71..bc0a5fc5df32e 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-rewrite-as-rename-timeout-after-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-rewrite-as-rename-timeout-after-write.js @@ -425,10 +425,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-change-as-rename-action-before-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-change-as-rename-action-before-write.js index a7e4eda9b387f..d12597fe307d1 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-change-as-rename-action-before-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-change-as-rename-action-before-write.js @@ -425,10 +425,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-change-as-rename-no-timeout.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-change-as-rename-no-timeout.js index 55d7f6a1dabf3..892fbaf581214 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-change-as-rename-no-timeout.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-change-as-rename-no-timeout.js @@ -425,10 +425,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-change-as-rename-timeout-after-delete.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-change-as-rename-timeout-after-delete.js index 86b3d88aa9aab..650e943fd68d5 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-change-as-rename-timeout-after-delete.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-change-as-rename-timeout-after-delete.js @@ -425,10 +425,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-change-as-rename-timeout-after-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-change-as-rename-timeout-after-write.js index 7216c5e2f9169..49fa391f8cd12 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-change-as-rename-timeout-after-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-change-as-rename-timeout-after-write.js @@ -425,10 +425,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-changes-with-timeout-before-request.js index d4706183a934a..4322317b4b388 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-changes-with-timeout-before-request.js @@ -425,10 +425,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-changes.js index 139037394c779..3a85cad1a5237 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-changes.js @@ -425,10 +425,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-created.js index 42e429265c05d..e50109fd84826 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-created.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-created.js @@ -422,10 +422,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1607,10 +1603,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-deleted.js index 412a07d5eab88..c82929ccabb3b 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-deleted.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-deleted.js @@ -425,10 +425,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1535,10 +1531,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-not-present.js index 3d161149f50e4..3b44550906eb1 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-not-present.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-not-present.js @@ -422,10 +422,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1369,10 +1365,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-rewrite-as-rename-action-before-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-rewrite-as-rename-action-before-write.js index b0f89ce3cffd1..1e59d49fd9948 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-rewrite-as-rename-action-before-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-rewrite-as-rename-action-before-write.js @@ -425,10 +425,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-rewrite-as-rename-no-timeout.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-rewrite-as-rename-no-timeout.js index 784e2f5e903f7..2dc9e5320c6af 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-rewrite-as-rename-no-timeout.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-rewrite-as-rename-no-timeout.js @@ -425,10 +425,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-rewrite-as-rename-timeout-after-delete.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-rewrite-as-rename-timeout-after-delete.js index e08d0a072c9cc..d9ba4c620e94e 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-rewrite-as-rename-timeout-after-delete.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-rewrite-as-rename-timeout-after-delete.js @@ -425,10 +425,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-rewrite-as-rename-timeout-after-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-rewrite-as-rename-timeout-after-write.js index fc5cf76e951ea..8ccf63a4dfa7e 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-rewrite-as-rename-timeout-after-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-rewrite-as-rename-timeout-after-write.js @@ -425,10 +425,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/rename-locations.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/rename-locations.js index 9b9b9d140ae25..bc892a47beda4 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/rename-locations.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/rename-locations.js @@ -425,10 +425,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1405,10 +1401,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/usage-file-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/usage-file-changes-with-timeout-before-request.js index 73e055820afbe..8b35e5b599572 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/usage-file-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/usage-file-changes-with-timeout-before-request.js @@ -425,10 +425,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/usage-file-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/usage-file-changes.js index 34ef013ee2ad7..88e3804a13300 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/usage-file-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/usage-file-changes.js @@ -425,10 +425,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-change-as-rename-action-before-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-change-as-rename-action-before-write.js index 9a44e72076171..ee060185c0866 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-change-as-rename-action-before-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-change-as-rename-action-before-write.js @@ -430,10 +430,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-change-as-rename-no-timeout.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-change-as-rename-no-timeout.js index ce08f706a990a..10f67023a5df8 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-change-as-rename-no-timeout.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-change-as-rename-no-timeout.js @@ -430,10 +430,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-change-as-rename-timeout-after-delete.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-change-as-rename-timeout-after-delete.js index d221a4c651090..1bc1dddbd132b 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-change-as-rename-timeout-after-delete.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-change-as-rename-timeout-after-delete.js @@ -430,10 +430,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-change-as-rename-timeout-after-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-change-as-rename-timeout-after-write.js index 4abbbf770b972..1499cf2adc370 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-change-as-rename-timeout-after-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-change-as-rename-timeout-after-write.js @@ -430,10 +430,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-changes-with-timeout-before-request.js index 8b46d845a13f0..79bf6a8b7e8e1 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-changes-with-timeout-before-request.js @@ -430,10 +430,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-changes.js index c08af856555f0..0588a540b5b25 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-changes.js @@ -430,10 +430,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-created.js index 67021b7b2e16a..38fc5dd403ce7 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-created.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-created.js @@ -422,10 +422,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1574,10 +1570,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-deleted.js index 772002540b618..921056101c238 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-deleted.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-deleted.js @@ -430,10 +430,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1526,10 +1522,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-not-present.js index ef6158ed71525..f366ec8aa48d6 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-not-present.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-not-present.js @@ -422,10 +422,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1318,10 +1314,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-rewrite-as-rename-action-before-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-rewrite-as-rename-action-before-write.js index 0274bbcd9506b..c53196df38f7a 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-rewrite-as-rename-action-before-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-rewrite-as-rename-action-before-write.js @@ -430,10 +430,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-rewrite-as-rename-no-timeout.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-rewrite-as-rename-no-timeout.js index 35026208f44d4..129c8ffd09853 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-rewrite-as-rename-no-timeout.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-rewrite-as-rename-no-timeout.js @@ -430,10 +430,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-rewrite-as-rename-timeout-after-delete.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-rewrite-as-rename-timeout-after-delete.js index 36d9059b1b027..885331c790ed9 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-rewrite-as-rename-timeout-after-delete.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-rewrite-as-rename-timeout-after-delete.js @@ -430,10 +430,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-rewrite-as-rename-timeout-after-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-rewrite-as-rename-timeout-after-write.js index 6119bb121aa95..e5b891b835f53 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-rewrite-as-rename-timeout-after-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-rewrite-as-rename-timeout-after-write.js @@ -430,10 +430,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-change-as-rename-action-before-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-change-as-rename-action-before-write.js index a2ff6dfe17993..e1c39ebf5fb06 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-change-as-rename-action-before-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-change-as-rename-action-before-write.js @@ -430,10 +430,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-change-as-rename-no-timeout.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-change-as-rename-no-timeout.js index df4c2ab4a3918..22a044b8665f5 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-change-as-rename-no-timeout.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-change-as-rename-no-timeout.js @@ -430,10 +430,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-change-as-rename-timeout-after-delete.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-change-as-rename-timeout-after-delete.js index 52c4a1909fa68..439eaa1426283 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-change-as-rename-timeout-after-delete.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-change-as-rename-timeout-after-delete.js @@ -430,10 +430,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-change-as-rename-timeout-after-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-change-as-rename-timeout-after-write.js index 423cc929d0c84..cb5673409c1d4 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-change-as-rename-timeout-after-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-change-as-rename-timeout-after-write.js @@ -430,10 +430,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-changes-with-timeout-before-request.js index 62a2aa87ac0f4..ecedd90441028 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-changes-with-timeout-before-request.js @@ -430,10 +430,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-changes.js index 42cf36db95a2d..820ecd8fb8090 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-changes.js @@ -430,10 +430,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-created.js index bd72f7ba20bb6..d5fef8cb6293c 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-created.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-created.js @@ -427,10 +427,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1612,10 +1608,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-deleted.js index f7bade2ae3492..af6006fdb5157 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-deleted.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-deleted.js @@ -430,10 +430,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1540,10 +1536,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-not-present.js index 5d3774aa849d5..2dd9d857e175e 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-not-present.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-not-present.js @@ -427,10 +427,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1374,10 +1370,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-rewrite-as-rename-action-before-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-rewrite-as-rename-action-before-write.js index 1b55c5bf8e625..a0d0fe6d45a25 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-rewrite-as-rename-action-before-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-rewrite-as-rename-action-before-write.js @@ -430,10 +430,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-rewrite-as-rename-no-timeout.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-rewrite-as-rename-no-timeout.js index b8e00fcb6de64..1e883e0944981 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-rewrite-as-rename-no-timeout.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-rewrite-as-rename-no-timeout.js @@ -430,10 +430,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-rewrite-as-rename-timeout-after-delete.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-rewrite-as-rename-timeout-after-delete.js index db5c6bfc16734..81a5110b38aea 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-rewrite-as-rename-timeout-after-delete.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-rewrite-as-rename-timeout-after-delete.js @@ -430,10 +430,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-rewrite-as-rename-timeout-after-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-rewrite-as-rename-timeout-after-write.js index 775912569f36f..9f392a5e9de7f 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-rewrite-as-rename-timeout-after-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-rewrite-as-rename-timeout-after-write.js @@ -430,10 +430,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-source-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-source-changes-with-timeout-before-request.js index 8f16f8e1f150d..06034e328298a 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-source-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-source-changes-with-timeout-before-request.js @@ -430,10 +430,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-source-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-source-changes.js index e54f0661d96fd..c23fb723752bc 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-source-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-source-changes.js @@ -430,10 +430,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/rename-locations.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/rename-locations.js index 251a1c518c53e..c7a518bd23f92 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/rename-locations.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/rename-locations.js @@ -430,10 +430,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1410,10 +1406,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/usage-file-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/usage-file-changes-with-timeout-before-request.js index 57a1642953ada..0ec50e0a5f8c0 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/usage-file-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/usage-file-changes-with-timeout-before-request.js @@ -430,10 +430,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/usage-file-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/usage-file-changes.js index bf4628ee3987b..571f191adf4c5 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/usage-file-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/usage-file-changes.js @@ -430,10 +430,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/when-projects-are-not-built.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/when-projects-are-not-built.js index 082ba39cad7c3..b055c8cd24799 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/when-projects-are-not-built.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/when-projects-are-not-built.js @@ -284,10 +284,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1180,10 +1176,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-change-as-rename-action-before-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-change-as-rename-action-before-write.js index a744186d96e3a..01b2c80fb3bbd 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-change-as-rename-action-before-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-change-as-rename-action-before-write.js @@ -431,10 +431,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-change-as-rename-no-timeout.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-change-as-rename-no-timeout.js index aa4c5aa0718e5..d2f0012652934 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-change-as-rename-no-timeout.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-change-as-rename-no-timeout.js @@ -431,10 +431,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-change-as-rename-timeout-after-delete.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-change-as-rename-timeout-after-delete.js index 81e6085e73a67..567b57061010e 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-change-as-rename-timeout-after-delete.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-change-as-rename-timeout-after-delete.js @@ -431,10 +431,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-change-as-rename-timeout-after-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-change-as-rename-timeout-after-write.js index fc4f8c4151885..9d62f0f1b049f 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-change-as-rename-timeout-after-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-change-as-rename-timeout-after-write.js @@ -431,10 +431,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-changes-with-timeout-before-request.js index 41466b5645272..9ebaffc8ee21d 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-changes-with-timeout-before-request.js @@ -431,10 +431,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-changes.js index 98c270db229ad..cd06414d6e3a3 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-changes.js @@ -431,10 +431,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-created.js index 4eeb002617615..08937d52e6887 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-created.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-created.js @@ -423,10 +423,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1575,10 +1571,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-deleted.js index d3a9336c31252..cb2bda5621c21 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-deleted.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-deleted.js @@ -431,10 +431,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1527,10 +1523,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-not-present.js index 1f97d8a8d095f..8e32417fba812 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-not-present.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-not-present.js @@ -423,10 +423,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1319,10 +1315,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-rewrite-as-rename-action-before-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-rewrite-as-rename-action-before-write.js index 8f617f46e903b..94edc593bc16a 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-rewrite-as-rename-action-before-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-rewrite-as-rename-action-before-write.js @@ -431,10 +431,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-rewrite-as-rename-no-timeout.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-rewrite-as-rename-no-timeout.js index 319d447f4cfa1..9b0316bfd7e62 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-rewrite-as-rename-no-timeout.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-rewrite-as-rename-no-timeout.js @@ -431,10 +431,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-rewrite-as-rename-timeout-after-delete.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-rewrite-as-rename-timeout-after-delete.js index 05a89c1b4c4d7..22d00fa19d89a 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-rewrite-as-rename-timeout-after-delete.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-rewrite-as-rename-timeout-after-delete.js @@ -431,10 +431,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-rewrite-as-rename-timeout-after-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-rewrite-as-rename-timeout-after-write.js index bd5233b5bdbfd..3114a79738e12 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-rewrite-as-rename-timeout-after-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-rewrite-as-rename-timeout-after-write.js @@ -431,10 +431,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-change-as-rename-action-before-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-change-as-rename-action-before-write.js index ac69235575435..346143bb9299b 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-change-as-rename-action-before-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-change-as-rename-action-before-write.js @@ -431,10 +431,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-change-as-rename-no-timeout.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-change-as-rename-no-timeout.js index d3536f7332cef..4f3430f42f15d 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-change-as-rename-no-timeout.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-change-as-rename-no-timeout.js @@ -431,10 +431,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-change-as-rename-timeout-after-delete.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-change-as-rename-timeout-after-delete.js index 79d3e68aae790..409dd13a00342 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-change-as-rename-timeout-after-delete.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-change-as-rename-timeout-after-delete.js @@ -431,10 +431,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-change-as-rename-timeout-after-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-change-as-rename-timeout-after-write.js index e1508b990acc4..c0fc33b50ba54 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-change-as-rename-timeout-after-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-change-as-rename-timeout-after-write.js @@ -431,10 +431,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-changes-with-timeout-before-request.js index 7bb2db7447a87..4c3c4ecb9ad64 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-changes-with-timeout-before-request.js @@ -431,10 +431,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-changes.js index 733558714dcdf..6ac1261f3f4f4 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-changes.js @@ -431,10 +431,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-created.js index 94ff0a151722a..0aa24e2482acb 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-created.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-created.js @@ -428,10 +428,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1613,10 +1609,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-deleted.js index a386d08e2c813..1023573f88d41 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-deleted.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-deleted.js @@ -431,10 +431,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1541,10 +1537,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-not-present.js index db1aea36b4b94..61a35ea15926d 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-not-present.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-not-present.js @@ -428,10 +428,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1375,10 +1371,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-action-before-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-action-before-write.js index 8ce339f2af5bf..885c27224638b 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-action-before-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-action-before-write.js @@ -431,10 +431,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-no-timeout.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-no-timeout.js index dbc4d8db23b8e..1793425415694 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-no-timeout.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-no-timeout.js @@ -431,10 +431,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-timeout-after-delete.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-timeout-after-delete.js index 9ff56f4aecc34..ac8a083c26d07 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-timeout-after-delete.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-timeout-after-delete.js @@ -431,10 +431,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-timeout-after-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-timeout-after-write.js index fd9b70d390a43..c595282198a92 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-timeout-after-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-timeout-after-write.js @@ -431,10 +431,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/rename-locations.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/rename-locations.js index 8b15fc5e2b33b..16b8b2473d582 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/rename-locations.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/rename-locations.js @@ -431,10 +431,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1411,10 +1407,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/usage-file-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/usage-file-changes-with-timeout-before-request.js index f4995bf9ddb14..14c6807e67bd2 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/usage-file-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/usage-file-changes-with-timeout-before-request.js @@ -431,10 +431,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/usage-file-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/usage-file-changes.js index 05fdcd607495b..059dd383f766c 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/usage-file-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/usage-file-changes.js @@ -431,10 +431,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-change-as-rename-action-before-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-change-as-rename-action-before-write.js index f89669115bf0d..f66288688cf43 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-change-as-rename-action-before-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-change-as-rename-action-before-write.js @@ -440,10 +440,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -643,10 +639,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-change-as-rename-no-timeout.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-change-as-rename-no-timeout.js index d4b1413c590a5..361da4762f835 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-change-as-rename-no-timeout.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-change-as-rename-no-timeout.js @@ -440,10 +440,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -643,10 +639,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-change-as-rename-timeout-after-delete.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-change-as-rename-timeout-after-delete.js index 979a2aa2df6c1..a16beec1cdf77 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-change-as-rename-timeout-after-delete.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-change-as-rename-timeout-after-delete.js @@ -440,10 +440,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -643,10 +639,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-change-as-rename-timeout-after-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-change-as-rename-timeout-after-write.js index 1bddb51ad37f4..415f34ffc2811 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-change-as-rename-timeout-after-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-change-as-rename-timeout-after-write.js @@ -440,10 +440,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -643,10 +639,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-changes-with-timeout-before-request.js index 0d088d4bd0caa..e82fba5ab1622 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-changes-with-timeout-before-request.js @@ -440,10 +440,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -643,10 +639,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-changes.js index c76c69e230dde..0aa4cd93887ed 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-changes.js @@ -440,10 +440,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -643,10 +639,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-created.js index 9a1967bf85990..85648509782c6 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-created.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-created.js @@ -422,10 +422,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -619,10 +615,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2591,14 +2583,10 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2617,10 +2605,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-deleted.js index f46ab50343f1d..73891d0dce873 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-deleted.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-deleted.js @@ -440,10 +440,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -643,10 +639,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2424,14 +2416,10 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2450,10 +2438,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-not-present.js index 29dc21b4282c9..5c3594dbb1bc6 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-not-present.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-not-present.js @@ -422,10 +422,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -619,10 +615,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2013,14 +2005,10 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2039,10 +2027,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-rewrite-as-rename-action-before-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-rewrite-as-rename-action-before-write.js index 32720c09e07d5..1cb69265d03b7 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-rewrite-as-rename-action-before-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-rewrite-as-rename-action-before-write.js @@ -440,10 +440,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -643,10 +639,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-rewrite-as-rename-no-timeout.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-rewrite-as-rename-no-timeout.js index cc61e318ac21f..6e1ca10373878 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-rewrite-as-rename-no-timeout.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-rewrite-as-rename-no-timeout.js @@ -440,10 +440,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -643,10 +639,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-rewrite-as-rename-timeout-after-delete.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-rewrite-as-rename-timeout-after-delete.js index fe2f3fa3dbd2f..f143862ff1cac 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-rewrite-as-rename-timeout-after-delete.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-rewrite-as-rename-timeout-after-delete.js @@ -440,10 +440,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -643,10 +639,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-rewrite-as-rename-timeout-after-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-rewrite-as-rename-timeout-after-write.js index eadd2415c5168..9144ae9ab17f1 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-rewrite-as-rename-timeout-after-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-rewrite-as-rename-timeout-after-write.js @@ -440,10 +440,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -643,10 +639,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-change-as-rename-action-before-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-change-as-rename-action-before-write.js index e51016a7ba7cb..375b08c7bd076 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-change-as-rename-action-before-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-change-as-rename-action-before-write.js @@ -440,10 +440,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -643,10 +639,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-change-as-rename-no-timeout.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-change-as-rename-no-timeout.js index 5032fb4650303..721592332ba83 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-change-as-rename-no-timeout.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-change-as-rename-no-timeout.js @@ -440,10 +440,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -643,10 +639,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-change-as-rename-timeout-after-delete.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-change-as-rename-timeout-after-delete.js index aa3279cfc95bb..c102d0c265780 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-change-as-rename-timeout-after-delete.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-change-as-rename-timeout-after-delete.js @@ -440,10 +440,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -643,10 +639,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-change-as-rename-timeout-after-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-change-as-rename-timeout-after-write.js index 3d4fd051822da..3dd3d0d8ff9a3 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-change-as-rename-timeout-after-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-change-as-rename-timeout-after-write.js @@ -440,10 +440,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -643,10 +639,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-changes-with-timeout-before-request.js index 2302fed17d4d2..fe92051dbd085 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-changes-with-timeout-before-request.js @@ -440,10 +440,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -643,10 +639,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-changes.js index 23e176959080d..6496d0d49cda4 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-changes.js @@ -440,10 +440,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -643,10 +639,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-created.js index ec30620bad72b..03802da307a6f 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-created.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-created.js @@ -437,10 +437,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -640,10 +636,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2668,14 +2660,10 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2694,10 +2682,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-deleted.js index 49d6f3f42f022..6610e30262d63 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-deleted.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-deleted.js @@ -440,10 +440,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -643,10 +639,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2442,14 +2434,10 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2468,10 +2456,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-not-present.js index 555ff8fcf73ad..4ecc050b974b8 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-not-present.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-not-present.js @@ -437,10 +437,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -640,10 +636,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2127,14 +2119,10 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2153,10 +2141,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-rewrite-as-rename-action-before-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-rewrite-as-rename-action-before-write.js index 17e4a821da9bf..ea721da6f2545 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-rewrite-as-rename-action-before-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-rewrite-as-rename-action-before-write.js @@ -440,10 +440,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -643,10 +639,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-rewrite-as-rename-no-timeout.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-rewrite-as-rename-no-timeout.js index eabf53a218858..deae2bbff12aa 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-rewrite-as-rename-no-timeout.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-rewrite-as-rename-no-timeout.js @@ -440,10 +440,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -643,10 +639,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-rewrite-as-rename-timeout-after-delete.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-rewrite-as-rename-timeout-after-delete.js index 2442a65bca19f..7d621b2eb799b 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-rewrite-as-rename-timeout-after-delete.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-rewrite-as-rename-timeout-after-delete.js @@ -440,10 +440,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -643,10 +639,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-rewrite-as-rename-timeout-after-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-rewrite-as-rename-timeout-after-write.js index 690551564fc4c..c2fef9f55d95d 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-rewrite-as-rename-timeout-after-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-rewrite-as-rename-timeout-after-write.js @@ -440,10 +440,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -643,10 +639,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/goToDef-and-rename-locations-and-deleting-config-file.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/goToDef-and-rename-locations-and-deleting-config-file.js index 210d4ea09a50a..c730c5d55b151 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/goToDef-and-rename-locations-and-deleting-config-file.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/goToDef-and-rename-locations-and-deleting-config-file.js @@ -444,10 +444,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -732,14 +728,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (3) @@ -977,8 +965,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (0) @@ -1139,10 +1125,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1224,12 +1206,6 @@ Info seq [hh:mm:ss:mss] Files (0) Info seq [hh:mm:ss:mss] ----------------------------------------------- -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) @@ -1527,14 +1503,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (3) @@ -2096,8 +2064,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (0) @@ -2263,12 +2229,6 @@ Info seq [hh:mm:ss:mss] Files (0) Info seq [hh:mm:ss:mss] ----------------------------------------------- -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/goToDef-and-rename-locations.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/goToDef-and-rename-locations.js index 0680cd5db4b5f..15db463960f8d 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/goToDef-and-rename-locations.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/goToDef-and-rename-locations.js @@ -440,10 +440,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -643,10 +639,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2346,14 +2338,10 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2372,10 +2360,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/usage-file-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/usage-file-changes-with-timeout-before-request.js index b4bfbf6ca5477..578a0964e75e2 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/usage-file-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/usage-file-changes-with-timeout-before-request.js @@ -440,10 +440,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -643,10 +639,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/usage-file-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/usage-file-changes.js index 16176505e676e..d725783afe977 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/usage-file-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/usage-file-changes.js @@ -440,10 +440,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -643,10 +639,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-change-as-rename-action-before-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-change-as-rename-action-before-write.js index 8d9194256f6ac..9c6a2d81c31df 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-change-as-rename-action-before-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-change-as-rename-action-before-write.js @@ -456,10 +456,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -659,10 +655,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-change-as-rename-no-timeout.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-change-as-rename-no-timeout.js index 6cdace6d2c848..8363cd2ad3285 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-change-as-rename-no-timeout.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-change-as-rename-no-timeout.js @@ -456,10 +456,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -659,10 +655,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-change-as-rename-timeout-after-delete.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-change-as-rename-timeout-after-delete.js index ac3f5c2a95713..0989a1aad30d3 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-change-as-rename-timeout-after-delete.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-change-as-rename-timeout-after-delete.js @@ -456,10 +456,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -659,10 +655,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-change-as-rename-timeout-after-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-change-as-rename-timeout-after-write.js index f91ea55cb1d81..f67cdf261d980 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-change-as-rename-timeout-after-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-change-as-rename-timeout-after-write.js @@ -456,10 +456,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -659,10 +655,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-changes-with-timeout-before-request.js index 755afb8156540..4546d876c3253 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-changes-with-timeout-before-request.js @@ -456,10 +456,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -659,10 +655,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-changes.js index 1e6bbb3ee7d55..73121d26af471 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-changes.js @@ -456,10 +456,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -659,10 +655,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-created.js index 55ce5b386ae0a..01796d16afcf1 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-created.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-created.js @@ -448,10 +448,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -651,10 +647,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2618,14 +2610,10 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2644,10 +2632,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-deleted.js index 839ed8ebcb3fb..15d6a3c7e0ac1 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-deleted.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-deleted.js @@ -456,10 +456,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -659,10 +655,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2576,14 +2568,10 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2602,10 +2590,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-not-present.js index 81bb711a16ef4..f33ed19d32b5a 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-not-present.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-not-present.js @@ -448,10 +448,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -651,10 +647,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2219,14 +2211,10 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2245,10 +2233,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-rewrite-as-rename-action-before-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-rewrite-as-rename-action-before-write.js index 61de7454cdd72..697329a57c04a 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-rewrite-as-rename-action-before-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-rewrite-as-rename-action-before-write.js @@ -456,10 +456,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -659,10 +655,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-rewrite-as-rename-no-timeout.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-rewrite-as-rename-no-timeout.js index e11fb695abbe2..fbb04458a6808 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-rewrite-as-rename-no-timeout.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-rewrite-as-rename-no-timeout.js @@ -456,10 +456,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -659,10 +655,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-rewrite-as-rename-timeout-after-delete.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-rewrite-as-rename-timeout-after-delete.js index ca5c19a99b730..91299f0c8d5c9 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-rewrite-as-rename-timeout-after-delete.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-rewrite-as-rename-timeout-after-delete.js @@ -456,10 +456,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -659,10 +655,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-rewrite-as-rename-timeout-after-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-rewrite-as-rename-timeout-after-write.js index 0e491ff23f07c..75a21d5f89344 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-rewrite-as-rename-timeout-after-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-rewrite-as-rename-timeout-after-write.js @@ -456,10 +456,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -659,10 +655,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-change-as-rename-action-before-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-change-as-rename-action-before-write.js index 7261c5a796df3..6666e896fb401 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-change-as-rename-action-before-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-change-as-rename-action-before-write.js @@ -456,10 +456,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -659,10 +655,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-change-as-rename-no-timeout.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-change-as-rename-no-timeout.js index 05e2bf2d704b0..018b29b540692 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-change-as-rename-no-timeout.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-change-as-rename-no-timeout.js @@ -456,10 +456,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -659,10 +655,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-change-as-rename-timeout-after-delete.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-change-as-rename-timeout-after-delete.js index 388a5b4985af5..ebc8e9a152081 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-change-as-rename-timeout-after-delete.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-change-as-rename-timeout-after-delete.js @@ -456,10 +456,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -659,10 +655,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-change-as-rename-timeout-after-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-change-as-rename-timeout-after-write.js index bb1fb3f91e2db..21f690503c0c5 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-change-as-rename-timeout-after-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-change-as-rename-timeout-after-write.js @@ -456,10 +456,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -659,10 +655,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-changes-with-timeout-before-request.js index 4c32e23bb6b5e..e7ce80f6541e4 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-changes-with-timeout-before-request.js @@ -456,10 +456,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -659,10 +655,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-changes.js index c17936ebbbac4..bda77b4c5d69f 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-changes.js @@ -456,10 +456,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -659,10 +655,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-created.js index 0093893c2a96a..02a4542897a6a 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-created.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-created.js @@ -453,10 +453,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -656,10 +652,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2689,14 +2681,10 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2715,10 +2703,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-deleted.js index 749f4ef9dd489..8aba0be05e07e 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-deleted.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-deleted.js @@ -456,10 +456,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -659,10 +655,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2589,14 +2581,10 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2615,10 +2603,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-not-present.js index 0dd103ff1abfc..950e3d5bc9f4a 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-not-present.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-not-present.js @@ -453,10 +453,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -656,10 +652,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2288,14 +2280,10 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2314,10 +2302,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-rewrite-as-rename-action-before-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-rewrite-as-rename-action-before-write.js index a1ae34bccc8da..3482612f572f8 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-rewrite-as-rename-action-before-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-rewrite-as-rename-action-before-write.js @@ -456,10 +456,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -659,10 +655,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-rewrite-as-rename-no-timeout.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-rewrite-as-rename-no-timeout.js index f324302eae032..2cf07ec00d411 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-rewrite-as-rename-no-timeout.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-rewrite-as-rename-no-timeout.js @@ -456,10 +456,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -659,10 +655,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-rewrite-as-rename-timeout-after-delete.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-rewrite-as-rename-timeout-after-delete.js index d9b65dab6ce54..68c71fe65b59c 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-rewrite-as-rename-timeout-after-delete.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-rewrite-as-rename-timeout-after-delete.js @@ -456,10 +456,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -659,10 +655,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-rewrite-as-rename-timeout-after-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-rewrite-as-rename-timeout-after-write.js index eeb475cbf76ca..595c96943197e 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-rewrite-as-rename-timeout-after-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-rewrite-as-rename-timeout-after-write.js @@ -456,10 +456,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -659,10 +655,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-source-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-source-changes-with-timeout-before-request.js index 7dc1cf9bd0748..8f53228fad971 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-source-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-source-changes-with-timeout-before-request.js @@ -456,10 +456,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -659,10 +655,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-source-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-source-changes.js index c1a42f935d338..4ed92c07b5cd7 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-source-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-source-changes.js @@ -456,10 +456,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -659,10 +655,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/goToDef-and-rename-locations-and-deleting-config-file.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/goToDef-and-rename-locations-and-deleting-config-file.js index a6764101c6cee..a93f3d912b381 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/goToDef-and-rename-locations-and-deleting-config-file.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/goToDef-and-rename-locations-and-deleting-config-file.js @@ -457,10 +457,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -727,15 +723,7 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (3) @@ -976,8 +964,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (0) @@ -1129,10 +1115,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1214,12 +1196,6 @@ Info seq [hh:mm:ss:mss] Files (0) Info seq [hh:mm:ss:mss] ----------------------------------------------- -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) @@ -1498,15 +1474,7 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (3) @@ -2053,8 +2021,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (0) @@ -2211,12 +2177,6 @@ Info seq [hh:mm:ss:mss] Files (0) Info seq [hh:mm:ss:mss] ----------------------------------------------- -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/goToDef-and-rename-locations.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/goToDef-and-rename-locations.js index 6fbf64ecbab7b..2f0adec0ea450 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/goToDef-and-rename-locations.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/goToDef-and-rename-locations.js @@ -456,10 +456,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -659,10 +655,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2330,14 +2322,10 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2356,10 +2344,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/usage-file-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/usage-file-changes-with-timeout-before-request.js index 8c391932a2816..76d99ad4d28b6 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/usage-file-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/usage-file-changes-with-timeout-before-request.js @@ -456,10 +456,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -659,10 +655,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/usage-file-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/usage-file-changes.js index 97cf5539d5575..4b33e7bdec840 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/usage-file-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/usage-file-changes.js @@ -456,10 +456,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -659,10 +655,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/when-projects-are-not-built.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/when-projects-are-not-built.js index 8c609ddd3907e..199427d6b7115 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/when-projects-are-not-built.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/when-projects-are-not-built.js @@ -310,10 +310,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -513,10 +509,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2081,14 +2073,10 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2107,10 +2095,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-change-as-rename-action-before-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-change-as-rename-action-before-write.js index 6b35ce57192c3..aa58702bf96ba 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-change-as-rename-action-before-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-change-as-rename-action-before-write.js @@ -458,10 +458,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -661,10 +657,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-change-as-rename-no-timeout.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-change-as-rename-no-timeout.js index 59302c855cd36..ea05c0e286569 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-change-as-rename-no-timeout.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-change-as-rename-no-timeout.js @@ -458,10 +458,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -661,10 +657,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-change-as-rename-timeout-after-delete.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-change-as-rename-timeout-after-delete.js index 66716f7d1bf35..237d688235d9e 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-change-as-rename-timeout-after-delete.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-change-as-rename-timeout-after-delete.js @@ -458,10 +458,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -661,10 +657,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-change-as-rename-timeout-after-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-change-as-rename-timeout-after-write.js index 48add41de4bb2..7b12412ebf9aa 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-change-as-rename-timeout-after-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-change-as-rename-timeout-after-write.js @@ -458,10 +458,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -661,10 +657,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-changes-with-timeout-before-request.js index 13cab0ac35d93..3730ca4ce51f9 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-changes-with-timeout-before-request.js @@ -458,10 +458,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -661,10 +657,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-changes.js index 0d2860807d2bf..8f6cea795ad8b 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-changes.js @@ -458,10 +458,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -661,10 +657,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-created.js index 786be92c165de..6976724f1de7a 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-created.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-created.js @@ -440,10 +440,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -637,10 +633,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2593,14 +2585,10 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2619,10 +2607,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-deleted.js index abe681b03b3d8..a395836cb5a8e 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-deleted.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-deleted.js @@ -458,10 +458,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -661,10 +657,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2426,14 +2418,10 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2452,10 +2440,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-not-present.js index 5759e7a45b10d..cd623504cbe65 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-not-present.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-not-present.js @@ -440,10 +440,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -637,10 +633,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2016,14 +2008,10 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2042,10 +2030,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-rewrite-as-rename-action-before-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-rewrite-as-rename-action-before-write.js index ecf9711e184f9..eac3022872e8b 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-rewrite-as-rename-action-before-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-rewrite-as-rename-action-before-write.js @@ -458,10 +458,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -661,10 +657,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-rewrite-as-rename-no-timeout.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-rewrite-as-rename-no-timeout.js index c7f05f0be6730..f9ed7afbb3a8e 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-rewrite-as-rename-no-timeout.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-rewrite-as-rename-no-timeout.js @@ -458,10 +458,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -661,10 +657,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-rewrite-as-rename-timeout-after-delete.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-rewrite-as-rename-timeout-after-delete.js index b343fe0ca045c..3eb92d961cf81 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-rewrite-as-rename-timeout-after-delete.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-rewrite-as-rename-timeout-after-delete.js @@ -458,10 +458,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -661,10 +657,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-rewrite-as-rename-timeout-after-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-rewrite-as-rename-timeout-after-write.js index 6b00f4473e929..879e38335f68a 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-rewrite-as-rename-timeout-after-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-rewrite-as-rename-timeout-after-write.js @@ -458,10 +458,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -661,10 +657,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-change-as-rename-action-before-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-change-as-rename-action-before-write.js index 362786ebe53e4..6b6c956557292 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-change-as-rename-action-before-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-change-as-rename-action-before-write.js @@ -458,10 +458,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -661,10 +657,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-change-as-rename-no-timeout.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-change-as-rename-no-timeout.js index f938ccf887b48..752d38cb96430 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-change-as-rename-no-timeout.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-change-as-rename-no-timeout.js @@ -458,10 +458,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -661,10 +657,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-change-as-rename-timeout-after-delete.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-change-as-rename-timeout-after-delete.js index 4bdfb5e041f31..e5c7611362acf 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-change-as-rename-timeout-after-delete.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-change-as-rename-timeout-after-delete.js @@ -458,10 +458,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -661,10 +657,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-change-as-rename-timeout-after-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-change-as-rename-timeout-after-write.js index ca39a1fd7db94..17806b52052f5 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-change-as-rename-timeout-after-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-change-as-rename-timeout-after-write.js @@ -458,10 +458,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -661,10 +657,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-changes-with-timeout-before-request.js index df6948ba5f264..6fe4b33560264 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-changes-with-timeout-before-request.js @@ -458,10 +458,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -661,10 +657,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-changes.js index 820de468ef12b..6f2dce78c899a 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-changes.js @@ -458,10 +458,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -661,10 +657,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-created.js index b2fe0cf9b33eb..8415841fba7b6 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-created.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-created.js @@ -455,10 +455,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -658,10 +654,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2669,14 +2661,10 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2695,10 +2683,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-deleted.js index d27975602052a..802bab94b01ed 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-deleted.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-deleted.js @@ -458,10 +458,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -661,10 +657,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2443,14 +2435,10 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2469,10 +2457,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-not-present.js index fc89ed4bd2540..e42ec3a45bb7e 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-not-present.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-not-present.js @@ -455,10 +455,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -658,10 +654,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2130,14 +2122,10 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2156,10 +2144,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-action-before-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-action-before-write.js index d750cfafa0f46..7b08080136c85 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-action-before-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-action-before-write.js @@ -458,10 +458,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -661,10 +657,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-no-timeout.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-no-timeout.js index eda806b54d49f..285c559fa8235 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-no-timeout.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-no-timeout.js @@ -458,10 +458,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -661,10 +657,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-timeout-after-delete.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-timeout-after-delete.js index 7354ca47dadf0..c3d295e119797 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-timeout-after-delete.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-timeout-after-delete.js @@ -458,10 +458,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -661,10 +657,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-timeout-after-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-timeout-after-write.js index 10bd4f4df3530..070237645f447 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-timeout-after-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-timeout-after-write.js @@ -458,10 +458,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -661,10 +657,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/goToDef-and-rename-locations-and-deleting-config-file.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/goToDef-and-rename-locations-and-deleting-config-file.js index dde3ffeb30029..3fda13493fb47 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/goToDef-and-rename-locations-and-deleting-config-file.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/goToDef-and-rename-locations-and-deleting-config-file.js @@ -462,10 +462,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -750,14 +746,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (3) @@ -1008,8 +996,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (0) @@ -1170,10 +1156,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1255,12 +1237,6 @@ Info seq [hh:mm:ss:mss] Files (0) Info seq [hh:mm:ss:mss] ----------------------------------------------- -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) @@ -1558,14 +1534,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (3) @@ -2140,8 +2108,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (0) @@ -2307,12 +2273,6 @@ Info seq [hh:mm:ss:mss] Files (0) Info seq [hh:mm:ss:mss] ----------------------------------------------- -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/goToDef-and-rename-locations.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/goToDef-and-rename-locations.js index 37ab4a7e41678..be05ef59f2efa 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/goToDef-and-rename-locations.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/goToDef-and-rename-locations.js @@ -458,10 +458,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -661,10 +657,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2347,14 +2339,10 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2373,10 +2361,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/usage-file-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/usage-file-changes-with-timeout-before-request.js index b28bafd0a7a2c..cc4f57b3c9669 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/usage-file-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/usage-file-changes-with-timeout-before-request.js @@ -458,10 +458,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -661,10 +657,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/usage-file-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/usage-file-changes.js index e2c55642ec8b9..4975962c9bf15 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/usage-file-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/usage-file-changes.js @@ -458,10 +458,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -661,10 +657,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/can-go-to-definition-correctly.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/can-go-to-definition-correctly.js index a90ddb1bfa803..35c425a3a86ad 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/can-go-to-definition-correctly.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/can-go-to-definition-correctly.js @@ -437,10 +437,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1411,14 +1407,10 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-change-as-rename-action-before-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-change-as-rename-action-before-write.js index df11b0a1be24f..dcc7c0eda1022 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-change-as-rename-action-before-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-change-as-rename-action-before-write.js @@ -437,10 +437,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-change-as-rename-no-timeout.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-change-as-rename-no-timeout.js index 8b8638d2f8417..09873503ec4a1 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-change-as-rename-no-timeout.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-change-as-rename-no-timeout.js @@ -437,10 +437,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-change-as-rename-timeout-after-delete.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-change-as-rename-timeout-after-delete.js index 38066af041849..a5ede78174cec 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-change-as-rename-timeout-after-delete.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-change-as-rename-timeout-after-delete.js @@ -437,10 +437,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-change-as-rename-timeout-after-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-change-as-rename-timeout-after-write.js index a517dd2fb5edc..e07b05fb4b322 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-change-as-rename-timeout-after-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-change-as-rename-timeout-after-write.js @@ -437,10 +437,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-changes-with-timeout-before-request.js index 2da938c46ae33..26311654b80e5 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-changes-with-timeout-before-request.js @@ -437,10 +437,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-changes.js index 3711e4bf96024..20ddfce13e9b0 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-changes.js @@ -437,10 +437,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-created.js index 847a17d971ee9..75682fa47a432 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-created.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-created.js @@ -419,10 +419,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1475,14 +1471,10 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-deleted.js index 01e649ba26c95..7a6dabb9abeeb 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-deleted.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-deleted.js @@ -437,10 +437,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1513,14 +1509,10 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-not-present.js index 0d08ea4e02eab..eddab5672e320 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-not-present.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-not-present.js @@ -419,10 +419,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1221,14 +1217,10 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-rewrite-as-rename-action-before-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-rewrite-as-rename-action-before-write.js index f46b782a9ddb9..98014f3b27a1e 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-rewrite-as-rename-action-before-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-rewrite-as-rename-action-before-write.js @@ -437,10 +437,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-rewrite-as-rename-no-timeout.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-rewrite-as-rename-no-timeout.js index 2d2f5c04ff596..dae02d0fa3776 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-rewrite-as-rename-no-timeout.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-rewrite-as-rename-no-timeout.js @@ -437,10 +437,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-rewrite-as-rename-timeout-after-delete.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-rewrite-as-rename-timeout-after-delete.js index 27ec2fa303912..63264296a0503 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-rewrite-as-rename-timeout-after-delete.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-rewrite-as-rename-timeout-after-delete.js @@ -437,10 +437,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-rewrite-as-rename-timeout-after-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-rewrite-as-rename-timeout-after-write.js index 269ec7329392b..06e7308bb239f 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-rewrite-as-rename-timeout-after-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-rewrite-as-rename-timeout-after-write.js @@ -437,10 +437,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-change-as-rename-action-before-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-change-as-rename-action-before-write.js index e259b479c2b47..26f31be14d630 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-change-as-rename-action-before-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-change-as-rename-action-before-write.js @@ -437,10 +437,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-change-as-rename-no-timeout.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-change-as-rename-no-timeout.js index 999c3ecd00bee..ddea4893b5350 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-change-as-rename-no-timeout.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-change-as-rename-no-timeout.js @@ -437,10 +437,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-change-as-rename-timeout-after-delete.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-change-as-rename-timeout-after-delete.js index 1a051ac14b201..9ee25932ae9a0 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-change-as-rename-timeout-after-delete.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-change-as-rename-timeout-after-delete.js @@ -437,10 +437,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-change-as-rename-timeout-after-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-change-as-rename-timeout-after-write.js index a79aa8db64f7d..1852e47dac410 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-change-as-rename-timeout-after-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-change-as-rename-timeout-after-write.js @@ -437,10 +437,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-changes-with-timeout-before-request.js index 5c5364fe557fc..3db803e2f1704 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-changes-with-timeout-before-request.js @@ -437,10 +437,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-changes.js index 42336d0b04890..9913cbb66a19a 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-changes.js @@ -437,10 +437,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-created.js index cedba3b5a2206..2a0f4ff53a521 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-created.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-created.js @@ -434,10 +434,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1569,14 +1565,10 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-deleted.js index 2001d25172d82..6d3cfeed1865f 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-deleted.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-deleted.js @@ -437,10 +437,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1536,14 +1532,10 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-not-present.js index cb79ad5780f53..8cf2af577122d 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-not-present.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-not-present.js @@ -434,10 +434,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1320,14 +1316,10 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-rewrite-as-rename-action-before-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-rewrite-as-rename-action-before-write.js index 70a6e49b8e979..5510b81c69bbe 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-rewrite-as-rename-action-before-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-rewrite-as-rename-action-before-write.js @@ -437,10 +437,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-rewrite-as-rename-no-timeout.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-rewrite-as-rename-no-timeout.js index b9a3da9286aef..0ad918d1bc44d 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-rewrite-as-rename-no-timeout.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-rewrite-as-rename-no-timeout.js @@ -437,10 +437,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-rewrite-as-rename-timeout-after-delete.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-rewrite-as-rename-timeout-after-delete.js index a4eff8c63d6ad..a0b2aee5eac0a 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-rewrite-as-rename-timeout-after-delete.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-rewrite-as-rename-timeout-after-delete.js @@ -437,10 +437,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-rewrite-as-rename-timeout-after-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-rewrite-as-rename-timeout-after-write.js index 02ee2eed5239e..f7ebc6bb76258 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-rewrite-as-rename-timeout-after-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-rewrite-as-rename-timeout-after-write.js @@ -437,10 +437,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/usage-file-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/usage-file-changes-with-timeout-before-request.js index 2bb1286c13fc9..03c47f2be2738 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/usage-file-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/usage-file-changes-with-timeout-before-request.js @@ -437,10 +437,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/usage-file-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/usage-file-changes.js index af1486fe0d98f..62c70495b5b6d 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/usage-file-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/usage-file-changes.js @@ -437,10 +437,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/can-go-to-definition-correctly.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/can-go-to-definition-correctly.js index cea2be2c13de0..75a562f710e40 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/can-go-to-definition-correctly.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/can-go-to-definition-correctly.js @@ -466,10 +466,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1324,14 +1320,10 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-change-as-rename-action-before-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-change-as-rename-action-before-write.js index bbdf86b22c240..49927973e2e1c 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-change-as-rename-action-before-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-change-as-rename-action-before-write.js @@ -466,10 +466,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-change-as-rename-no-timeout.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-change-as-rename-no-timeout.js index 597acb78d1cac..39c9e24e960b7 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-change-as-rename-no-timeout.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-change-as-rename-no-timeout.js @@ -466,10 +466,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-change-as-rename-timeout-after-delete.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-change-as-rename-timeout-after-delete.js index 781c54256f946..f854ae44afb81 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-change-as-rename-timeout-after-delete.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-change-as-rename-timeout-after-delete.js @@ -466,10 +466,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-change-as-rename-timeout-after-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-change-as-rename-timeout-after-write.js index efa76b44c6bc9..f4b56fa0e8e28 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-change-as-rename-timeout-after-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-change-as-rename-timeout-after-write.js @@ -466,10 +466,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-changes-with-timeout-before-request.js index 23ce8e878010b..ee4f5ea8d2777 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-changes-with-timeout-before-request.js @@ -466,10 +466,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-changes.js index 5432c159e5b3d..0ca7c9c766b18 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-changes.js @@ -466,10 +466,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-created.js index ad968ea30a05a..c8b6a78e3e31d 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-created.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-created.js @@ -458,10 +458,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1385,14 +1381,10 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-deleted.js index 148c36cc13572..c9dd27732d94f 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-deleted.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-deleted.js @@ -466,10 +466,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1386,14 +1382,10 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-not-present.js index 900b43a12156c..4680e285ca20c 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-not-present.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-not-present.js @@ -458,10 +458,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1316,14 +1312,10 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-rewrite-as-rename-action-before-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-rewrite-as-rename-action-before-write.js index e4c927f8c43a3..cd9fbdffad441 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-rewrite-as-rename-action-before-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-rewrite-as-rename-action-before-write.js @@ -466,10 +466,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-rewrite-as-rename-no-timeout.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-rewrite-as-rename-no-timeout.js index 3365b57b6750f..d3ec6dde46bf2 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-rewrite-as-rename-no-timeout.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-rewrite-as-rename-no-timeout.js @@ -466,10 +466,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-rewrite-as-rename-timeout-after-delete.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-rewrite-as-rename-timeout-after-delete.js index f548f701fd68e..71ed3e7485a24 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-rewrite-as-rename-timeout-after-delete.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-rewrite-as-rename-timeout-after-delete.js @@ -466,10 +466,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-rewrite-as-rename-timeout-after-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-rewrite-as-rename-timeout-after-write.js index 48b39c05a2b3b..8ad5b92023c66 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-rewrite-as-rename-timeout-after-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-rewrite-as-rename-timeout-after-write.js @@ -466,10 +466,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-change-as-rename-action-before-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-change-as-rename-action-before-write.js index b2b46321ffa69..08664a41f4051 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-change-as-rename-action-before-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-change-as-rename-action-before-write.js @@ -466,10 +466,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-change-as-rename-no-timeout.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-change-as-rename-no-timeout.js index 45b96daa1cb46..ea62a6bd3a444 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-change-as-rename-no-timeout.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-change-as-rename-no-timeout.js @@ -466,10 +466,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-change-as-rename-timeout-after-delete.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-change-as-rename-timeout-after-delete.js index 2f46b10fcb088..11d1ec304d895 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-change-as-rename-timeout-after-delete.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-change-as-rename-timeout-after-delete.js @@ -466,10 +466,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-change-as-rename-timeout-after-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-change-as-rename-timeout-after-write.js index 16b847705c667..8a5cbcb5192de 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-change-as-rename-timeout-after-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-change-as-rename-timeout-after-write.js @@ -466,10 +466,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-changes-with-timeout-before-request.js index 1c016f5b935af..0a0fdae787d48 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-changes-with-timeout-before-request.js @@ -466,10 +466,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-changes.js index c827a4abcbd16..465358680d86b 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-changes.js @@ -466,10 +466,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-created.js index ce1fdf01a9ca9..0f91521cb0e96 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-created.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-created.js @@ -463,10 +463,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1378,14 +1374,10 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-deleted.js index e5fb9482f4184..4902b7c834a7d 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-deleted.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-deleted.js @@ -466,10 +466,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1379,14 +1375,10 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-not-present.js index ac9c56d161dfe..2e709d0b8a5e2 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-not-present.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-not-present.js @@ -463,10 +463,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1321,14 +1317,10 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-rewrite-as-rename-action-before-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-rewrite-as-rename-action-before-write.js index 3e5a3fa1f84e9..b176859f7504c 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-rewrite-as-rename-action-before-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-rewrite-as-rename-action-before-write.js @@ -466,10 +466,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-rewrite-as-rename-no-timeout.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-rewrite-as-rename-no-timeout.js index e92a1b4767048..2d11b20d8362c 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-rewrite-as-rename-no-timeout.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-rewrite-as-rename-no-timeout.js @@ -466,10 +466,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-rewrite-as-rename-timeout-after-delete.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-rewrite-as-rename-timeout-after-delete.js index a32d9fd1e78d0..8eaa57db2311c 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-rewrite-as-rename-timeout-after-delete.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-rewrite-as-rename-timeout-after-delete.js @@ -466,10 +466,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-rewrite-as-rename-timeout-after-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-rewrite-as-rename-timeout-after-write.js index cd84f4957b482..fc1062afa1ab0 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-rewrite-as-rename-timeout-after-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-rewrite-as-rename-timeout-after-write.js @@ -466,10 +466,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-source-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-source-changes-with-timeout-before-request.js index ed2a9938a1036..97527ef0b252d 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-source-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-source-changes-with-timeout-before-request.js @@ -466,10 +466,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-source-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-source-changes.js index 7c48dd60d1134..eb035b830ac31 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-source-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-source-changes.js @@ -466,10 +466,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/usage-file-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/usage-file-changes-with-timeout-before-request.js index b696409f5e503..d9498221a7977 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/usage-file-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/usage-file-changes-with-timeout-before-request.js @@ -466,10 +466,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/usage-file-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/usage-file-changes.js index d8805c0300d42..f4008b35881ba 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/usage-file-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/usage-file-changes.js @@ -466,10 +466,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/when-projects-are-not-built.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/when-projects-are-not-built.js index 8cfe1325e6fcc..dbcfd6f119a51 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/when-projects-are-not-built.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/when-projects-are-not-built.js @@ -320,10 +320,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1178,14 +1174,10 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/can-go-to-definition-correctly.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/can-go-to-definition-correctly.js index e0c806bacb58e..0c1b5728bb1ed 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/can-go-to-definition-correctly.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/can-go-to-definition-correctly.js @@ -469,10 +469,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1470,14 +1466,10 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-change-as-rename-action-before-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-change-as-rename-action-before-write.js index bbee8b7ce352c..bc706ffcb6436 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-change-as-rename-action-before-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-change-as-rename-action-before-write.js @@ -469,10 +469,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-change-as-rename-no-timeout.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-change-as-rename-no-timeout.js index c75765bb8c9cf..59ee58c7c8aae 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-change-as-rename-no-timeout.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-change-as-rename-no-timeout.js @@ -469,10 +469,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-change-as-rename-timeout-after-delete.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-change-as-rename-timeout-after-delete.js index c7326cf585625..e9e8fdfc0fdaf 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-change-as-rename-timeout-after-delete.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-change-as-rename-timeout-after-delete.js @@ -469,10 +469,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-change-as-rename-timeout-after-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-change-as-rename-timeout-after-write.js index ba0cd84e7d52e..e9dcbdd71ec18 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-change-as-rename-timeout-after-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-change-as-rename-timeout-after-write.js @@ -469,10 +469,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-changes-with-timeout-before-request.js index 2f6cad50af97e..98509b5bb5c54 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-changes-with-timeout-before-request.js @@ -469,10 +469,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-changes.js index b13d279fc0106..a46c6e3251f05 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-changes.js @@ -469,10 +469,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-created.js index a5af6df0abcdb..0a404a7281f76 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-created.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-created.js @@ -451,10 +451,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1534,14 +1530,10 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-deleted.js index c412fd781f121..0e681fbe5f7cb 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-deleted.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-deleted.js @@ -469,10 +469,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1572,14 +1568,10 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-not-present.js index 882e93d5254e6..bab6d1c2fce17 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-not-present.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-not-present.js @@ -451,10 +451,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1276,14 +1272,10 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-rewrite-as-rename-action-before-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-rewrite-as-rename-action-before-write.js index 7d837d44391c9..db918f4935436 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-rewrite-as-rename-action-before-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-rewrite-as-rename-action-before-write.js @@ -469,10 +469,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-rewrite-as-rename-no-timeout.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-rewrite-as-rename-no-timeout.js index 324abf229937a..6994d4d4b46c1 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-rewrite-as-rename-no-timeout.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-rewrite-as-rename-no-timeout.js @@ -469,10 +469,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-rewrite-as-rename-timeout-after-delete.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-rewrite-as-rename-timeout-after-delete.js index fc38bec3ee53e..c925b96298ed6 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-rewrite-as-rename-timeout-after-delete.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-rewrite-as-rename-timeout-after-delete.js @@ -469,10 +469,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-rewrite-as-rename-timeout-after-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-rewrite-as-rename-timeout-after-write.js index fc81bdbfd4cda..567f2d376dda7 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-rewrite-as-rename-timeout-after-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-rewrite-as-rename-timeout-after-write.js @@ -469,10 +469,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-change-as-rename-action-before-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-change-as-rename-action-before-write.js index 4e50a4e904d95..20e531b865100 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-change-as-rename-action-before-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-change-as-rename-action-before-write.js @@ -469,10 +469,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-change-as-rename-no-timeout.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-change-as-rename-no-timeout.js index 476cb914c3a7d..e92cb1c4a6e24 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-change-as-rename-no-timeout.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-change-as-rename-no-timeout.js @@ -469,10 +469,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-change-as-rename-timeout-after-delete.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-change-as-rename-timeout-after-delete.js index 53218a981e9e2..defd03faba9bd 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-change-as-rename-timeout-after-delete.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-change-as-rename-timeout-after-delete.js @@ -469,10 +469,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-change-as-rename-timeout-after-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-change-as-rename-timeout-after-write.js index d9783f7087d03..9b28d83040c52 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-change-as-rename-timeout-after-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-change-as-rename-timeout-after-write.js @@ -469,10 +469,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-changes-with-timeout-before-request.js index 01bbf4c79861e..1f50fa1c8281d 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-changes-with-timeout-before-request.js @@ -469,10 +469,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-changes.js index 87a80c39acc32..befe28bd9b936 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-changes.js @@ -469,10 +469,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-created.js index 92e8c70225720..37a408b301efa 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-created.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-created.js @@ -466,10 +466,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1636,14 +1632,10 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-deleted.js index a99fed28a7f85..e6a7bf67e7fe0 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-deleted.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-deleted.js @@ -469,10 +469,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1595,14 +1591,10 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-not-present.js index b127f70d24d41..9893382824e7f 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-not-present.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-not-present.js @@ -466,10 +466,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1379,14 +1375,10 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-action-before-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-action-before-write.js index 45a87a03bd2b7..a1d2b2908fd01 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-action-before-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-action-before-write.js @@ -469,10 +469,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-no-timeout.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-no-timeout.js index 2ce04812ded23..06a4a08a05e84 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-no-timeout.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-no-timeout.js @@ -469,10 +469,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-timeout-after-delete.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-timeout-after-delete.js index 18da751c6a6f5..1b26039e94ec0 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-timeout-after-delete.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-timeout-after-delete.js @@ -469,10 +469,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-timeout-after-write.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-timeout-after-write.js index 236a3354a92a4..f9b5d7eddba71 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-timeout-after-write.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-rewrite-as-rename-timeout-after-write.js @@ -469,10 +469,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/usage-file-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/usage-file-changes-with-timeout-before-request.js index e7427533d647d..e6a623d540c7a 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/usage-file-changes-with-timeout-before-request.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/usage-file-changes-with-timeout-before-request.js @@ -469,10 +469,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/usage-file-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/usage-file-changes.js index d88d60eb78a6b..e0cee01f096bb 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/usage-file-changes.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/usage-file-changes.js @@ -469,10 +469,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projects/File-in-multiple-projects-at-opened-and-closed-correctly.js b/tests/baselines/reference/tsserver/projects/File-in-multiple-projects-at-opened-and-closed-correctly.js index 225343395a215..633ada99d3454 100644 --- a/tests/baselines/reference/tsserver/projects/File-in-multiple-projects-at-opened-and-closed-correctly.js +++ b/tests/baselines/reference/tsserver/projects/File-in-multiple-projects-at-opened-and-closed-correctly.js @@ -247,10 +247,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/project/b/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/b/node_modules/@types 1 undefined Project: /user/username/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/b/node_modules/@types 1 undefined Project: /user/username/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/project/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/project/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -612,10 +608,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/project/b/tsconfig.json 2000 undefined Project: /user/username/projects/project/b/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/b/node_modules/@types 1 undefined Project: /user/username/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/b/node_modules/@types 1 undefined Project: /user/username/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/project/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/project/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/user/username/projects/project/c/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/projects/changes-in-closed-files-are-reflected-in-project-structure.js b/tests/baselines/reference/tsserver/projects/changes-in-closed-files-are-reflected-in-project-structure.js index 008b889e9acd4..dbfd94c7c1b68 100644 --- a/tests/baselines/reference/tsserver/projects/changes-in-closed-files-are-reflected-in-project-structure.js +++ b/tests/baselines/reference/tsserver/projects/changes-in-closed-files-are-reflected-in-project-structure.js @@ -148,10 +148,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/c/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/c/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projects/config-file-is-deleted.js b/tests/baselines/reference/tsserver/projects/config-file-is-deleted.js index 4b1a00dcafeda..f0fc70551a2e0 100644 --- a/tests/baselines/reference/tsserver/projects/config-file-is-deleted.js +++ b/tests/baselines/reference/tsserver/projects/config-file-is-deleted.js @@ -309,10 +309,6 @@ Info seq [hh:mm:ss:mss] Projects: /user/username/projects/project/tsconfig.js Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, currentDirectory: /user/username/projects/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -328,10 +324,6 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, currentDirectory: /user/username/projects/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projects/correctly-migrate-files-between-projects.js b/tests/baselines/reference/tsserver/projects/correctly-migrate-files-between-projects.js index 4aeaebf0f3389..76be96e8fb158 100644 --- a/tests/baselines/reference/tsserver/projects/correctly-migrate-files-between-projects.js +++ b/tests/baselines/reference/tsserver/projects/correctly-migrate-files-between-projects.js @@ -140,10 +140,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/d/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/d/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -252,10 +248,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject3* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject3* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject3*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -294,10 +286,6 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/c/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/c/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -313,10 +301,6 @@ Info seq [hh:mm:ss:mss] Files (2) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/d/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/d/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject3*' (Inferred) Info seq [hh:mm:ss:mss] Files (4) @@ -440,10 +424,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject4* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/c/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/c/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject4* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject4*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -463,10 +443,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject5* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/d/node_modules/@types 1 undefined Project: /dev/null/inferredProject5* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/d/node_modules/@types 1 undefined Project: /dev/null/inferredProject5* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject5* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject5* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject5* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject5* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject5* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject5*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -738,10 +714,6 @@ Info seq [hh:mm:ss:mss] Files (0) Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/project/b/f1.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject5*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projects/deleted-files-affect-project-structure.js b/tests/baselines/reference/tsserver/projects/deleted-files-affect-project-structure.js index e925673f604db..2e10349916bd1 100644 --- a/tests/baselines/reference/tsserver/projects/deleted-files-affect-project-structure.js +++ b/tests/baselines/reference/tsserver/projects/deleted-files-affect-project-structure.js @@ -259,10 +259,10 @@ ScriptInfos:: Info seq [hh:mm:ss:mss] Running: /dev/null/inferredProject1* Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/b/f2 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/b/f2 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/b 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/b 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/b/f2 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/b/f2 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -293,10 +293,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/c/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/c/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projects/does-not-look-beyond-node_modules-folders-for-default-configured-projects.js b/tests/baselines/reference/tsserver/projects/does-not-look-beyond-node_modules-folders-for-default-configured-projects.js index 07c25d201554a..a46cb171995b6 100644 --- a/tests/baselines/reference/tsserver/projects/does-not-look-beyond-node_modules-folders-for-default-configured-projects.js +++ b/tests/baselines/reference/tsserver/projects/does-not-look-beyond-node_modules-folders-for-default-configured-projects.js @@ -67,10 +67,10 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project 1 undefined Config: /home/src/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project 1 undefined Config: /home/src/projects/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types/a/package.json 2000 undefined Project: /home/src/projects/project/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types/package.json 2000 undefined Project: /home/src/projects/project/tsconfig.json WatchType: File location affecting resolution @@ -275,26 +275,14 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/node_modules/@types/a/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types/a/node_modules 1 undefined Project: /home/src/projects/project/node_modules/@types/a/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types/a/node_modules 1 undefined Project: /home/src/projects/project/node_modules/@types/a/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /home/src/projects/project/node_modules/@types/a/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /home/src/projects/project/node_modules/@types/a/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types/a 0 undefined Project: /home/src/projects/project/node_modules/@types/a/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types/a 0 undefined Project: /home/src/projects/project/node_modules/@types/a/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types/a/package.json 2000 undefined Project: /home/src/projects/project/node_modules/@types/a/tsconfig.json WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types/package.json 2000 undefined Project: /home/src/projects/project/node_modules/@types/a/tsconfig.json WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/package.json 2000 undefined Project: /home/src/projects/project/node_modules/@types/a/tsconfig.json WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/package.json 2000 undefined Project: /home/src/projects/project/node_modules/@types/a/tsconfig.json WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/package.json 2000 undefined Project: /home/src/projects/project/node_modules/@types/a/tsconfig.json WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types/b/package.json 2000 undefined Project: /home/src/projects/project/node_modules/@types/a/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types/a/node_modules/@types 1 undefined Project: /home/src/projects/project/node_modules/@types/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types/a/node_modules/@types 1 undefined Project: /home/src/projects/project/node_modules/@types/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types/node_modules/@types 1 undefined Project: /home/src/projects/project/node_modules/@types/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types/node_modules/@types 1 undefined Project: /home/src/projects/project/node_modules/@types/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/node_modules/@types 1 undefined Project: /home/src/projects/project/node_modules/@types/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/node_modules/@types 1 undefined Project: /home/src/projects/project/node_modules/@types/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/node_modules/@types/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/node_modules/@types/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/node_modules/@types/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/node_modules/@types/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/node_modules/@types/a/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/node_modules/@types/a/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/projects/file-opened-is-in-configured-project-that-will-be-removed.js b/tests/baselines/reference/tsserver/projects/file-opened-is-in-configured-project-that-will-be-removed.js index e2e12220b74db..2132987f7535c 100644 --- a/tests/baselines/reference/tsserver/projects/file-opened-is-in-configured-project-that-will-be-removed.js +++ b/tests/baselines/reference/tsserver/projects/file-opened-is-in-configured-project-that-will-be-removed.js @@ -343,12 +343,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/playground/tsconfig-json/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projects/file-with-name-constructor.js-doesnt-cause-issue-with-typeAcquisition-when-safe-type-list.js b/tests/baselines/reference/tsserver/projects/file-with-name-constructor.js-doesnt-cause-issue-with-typeAcquisition-when-safe-type-list.js index 07766b2bdc81e..ee5ba78498d9d 100644 --- a/tests/baselines/reference/tsserver/projects/file-with-name-constructor.js-doesnt-cause-issue-with-typeAcquisition-when-safe-type-list.js +++ b/tests/baselines/reference/tsserver/projects/file-with-name-constructor.js-doesnt-cause-issue-with-typeAcquisition-when-safe-type-list.js @@ -79,11 +79,11 @@ Info seq [hh:mm:ss:mss] Creating ExternalProject: project, currentDirectory: Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/f1.js 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/constructor.js 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: project -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules 1 undefined Project: project WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules 1 undefined Project: project WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: project WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: project WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin/node_modules/@types 1 undefined Project: project WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin/node_modules/@types 1 undefined Project: project WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/node_modules/@types 1 undefined Project: project WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/projects/files-opened-and-closed-affecting-multiple-projects.js b/tests/baselines/reference/tsserver/projects/files-opened-and-closed-affecting-multiple-projects.js index 98abce4d0d64c..688d3e9367f7f 100644 --- a/tests/baselines/reference/tsserver/projects/files-opened-and-closed-affecting-multiple-projects.js +++ b/tests/baselines/reference/tsserver/projects/files-opened-and-closed-affecting-multiple-projects.js @@ -369,10 +369,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /a/b/workspace/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /a/b/workspace/projects/files/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/workspace/projects/files/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /a/b/workspace/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/workspace/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /a/b/workspace/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/workspace/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -407,10 +403,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/ Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /a/b/workspace/projects/config/tsconfig.json 2000 undefined Project: /a/b/workspace/projects/config/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /a/b/workspace/projects/config/node_modules/@types 1 undefined Project: /a/b/workspace/projects/config/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/workspace/projects/config/node_modules/@types 1 undefined Project: /a/b/workspace/projects/config/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /a/b/workspace/projects/node_modules/@types 1 undefined Project: /a/b/workspace/projects/config/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/workspace/projects/node_modules/@types 1 undefined Project: /a/b/workspace/projects/config/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /a/b/workspace/node_modules/@types 1 undefined Project: /a/b/workspace/projects/config/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/workspace/node_modules/@types 1 undefined Project: /a/b/workspace/projects/config/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /a/b/workspace/projects/config/file.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -527,12 +519,6 @@ Info seq [hh:mm:ss:mss] FileName: /a/b/workspace/projects/files/file2.ts Proje Info seq [hh:mm:ss:mss] Projects: /dev/null/inferredProject1* Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, currentDirectory: /a/b/workspace/projects/files Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /a/b/workspace/projects/files/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/workspace/projects/files/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /a/b/workspace/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/workspace/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /a/b/workspace/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/workspace/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projects/files-with-mixed-content-are-handled-correctly.js b/tests/baselines/reference/tsserver/projects/files-with-mixed-content-are-handled-correctly.js index 914375adce1fc..e8e9598412a42 100644 --- a/tests/baselines/reference/tsserver/projects/files-with-mixed-content-are-handled-correctly.js +++ b/tests/baselines/reference/tsserver/projects/files-with-mixed-content-are-handled-correctly.js @@ -125,13 +125,11 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -167,7 +165,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -187,7 +184,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/projects/ignores-files-excluded-by-a-custom-safe-type-list.js b/tests/baselines/reference/tsserver/projects/ignores-files-excluded-by-a-custom-safe-type-list.js index 937cefe832171..79c7d20f9f8b4 100644 --- a/tests/baselines/reference/tsserver/projects/ignores-files-excluded-by-a-custom-safe-type-list.js +++ b/tests/baselines/reference/tsserver/projects/ignores-files-excluded-by-a-custom-safe-type-list.js @@ -161,13 +161,11 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Loaded safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: ["duck-types"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -226,7 +224,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -248,7 +245,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/projects/ignores-files-excluded-by-a-legacy-safe-type-list.js b/tests/baselines/reference/tsserver/projects/ignores-files-excluded-by-a-legacy-safe-type-list.js index 36c877fe38483..2f23f35541bc4 100644 --- a/tests/baselines/reference/tsserver/projects/ignores-files-excluded-by-a-legacy-safe-type-list.js +++ b/tests/baselines/reference/tsserver/projects/ignores-files-excluded-by-a-legacy-safe-type-list.js @@ -167,14 +167,12 @@ TI:: [hh:mm:ss:mss] Got install request ], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Loaded safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: ["blissfuljs"] TI:: [hh:mm:ss:mss] Inferred typings from file names: ["blissfuljs"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -225,7 +223,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -247,7 +244,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/projects/ignores-files-excluded-by-the-default-type-list.js b/tests/baselines/reference/tsserver/projects/ignores-files-excluded-by-the-default-type-list.js index a03fa64fcc121..1b25d1a317eae 100644 --- a/tests/baselines/reference/tsserver/projects/ignores-files-excluded-by-the-default-type-list.js +++ b/tests/baselines/reference/tsserver/projects/ignores-files-excluded-by-the-default-type-list.js @@ -174,13 +174,11 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: ["kendo-ui","office"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -266,7 +264,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -289,7 +286,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/projects/js-file-opened-is-in-configured-project-that-will-be-removed.js b/tests/baselines/reference/tsserver/projects/js-file-opened-is-in-configured-project-that-will-be-removed.js index 1fcc37d98cb6a..76fc98137608b 100644 --- a/tests/baselines/reference/tsserver/projects/js-file-opened-is-in-configured-project-that-will-be-removed.js +++ b/tests/baselines/reference/tsserver/projects/js-file-opened-is-in-configured-project-that-will-be-removed.js @@ -365,10 +365,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/apps/editor/node_modules/@types 1 undefined Project: /user/username/projects/myproject/apps/editor/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/apps/node_modules/@types 1 undefined Project: /user/username/projects/myproject/apps/editor/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/apps/node_modules/@types 1 undefined Project: /user/username/projects/myproject/apps/editor/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/apps/editor/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/apps/editor/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/apps/editor/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/apps/editor/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/apps/editor/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/apps/editor/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projects/loading-files-with-correct-priority.js b/tests/baselines/reference/tsserver/projects/loading-files-with-correct-priority.js index e2712530662b7..b1cb70041348d 100644 --- a/tests/baselines/reference/tsserver/projects/loading-files-with-correct-priority.js +++ b/tests/baselines/reference/tsserver/projects/loading-files-with-correct-priority.js @@ -340,12 +340,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -451,13 +445,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -497,7 +489,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -521,7 +512,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -704,10 +694,6 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -741,12 +727,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -786,7 +770,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -810,7 +793,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -831,12 +813,6 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/a 1 undefined Config: /user/username/projects/project/a/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/a 1 undefined Config: /user/username/projects/project/a/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/project/a/tsconfig.json 2000 undefined Project: /user/username/projects/project/a/tsconfig.json WatchType: Config file -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/a/node_modules/@types 1 undefined Project: /user/username/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/a/node_modules/@types 1 undefined Project: /user/username/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] `remove Project:: Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -862,12 +838,8 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /us Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/a/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Directory location for typing installer Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/a/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Directory location for typing installer TI:: [hh:mm:ss:mss] Closing file watchers for project '/dev/null/inferredProject1*' - done. -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/a/node_modules/@types 1 undefined Project: /user/username/projects/project/a/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/a/node_modules/@types 1 undefined Project: /user/username/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/project/a/main.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/project/a/main.js 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) diff --git a/tests/baselines/reference/tsserver/projects/project-structure-update-is-deferred-if-files-are-not-added-or-removed.js b/tests/baselines/reference/tsserver/projects/project-structure-update-is-deferred-if-files-are-not-added-or-removed.js index 08d5a168523d4..fb7c0f1ec8f0d 100644 --- a/tests/baselines/reference/tsserver/projects/project-structure-update-is-deferred-if-files-are-not-added-or-removed.js +++ b/tests/baselines/reference/tsserver/projects/project-structure-update-is-deferred-if-files-are-not-added-or-removed.js @@ -260,10 +260,6 @@ Info seq [hh:mm:ss:mss] FileName: /user/username/projects/project/f2.ts Projec Info seq [hh:mm:ss:mss] Projects: Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, currentDirectory: /user/username/projects/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projects/references-on-file-opened-is-in-configured-project-that-will-be-removed.js b/tests/baselines/reference/tsserver/projects/references-on-file-opened-is-in-configured-project-that-will-be-removed.js index 0e90140e9d15c..15da70dfb9512 100644 --- a/tests/baselines/reference/tsserver/projects/references-on-file-opened-is-in-configured-project-that-will-be-removed.js +++ b/tests/baselines/reference/tsserver/projects/references-on-file-opened-is-in-configured-project-that-will-be-removed.js @@ -343,12 +343,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/myproject/playground/tsconfig-json/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projects/regression-test-for-crash-in-acquireOrUpdateDocument.js b/tests/baselines/reference/tsserver/projects/regression-test-for-crash-in-acquireOrUpdateDocument.js index acd5a855c2148..d4abeb814b4be 100644 --- a/tests/baselines/reference/tsserver/projects/regression-test-for-crash-in-acquireOrUpdateDocument.js +++ b/tests/baselines/reference/tsserver/projects/regression-test-for-crash-in-acquireOrUpdateDocument.js @@ -242,10 +242,6 @@ Info seq [hh:mm:ss:mss] request: Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /user/username/projects/project/file1.js ProjectRootPath: undefined:: Result: undefined Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, currentDirectory: /user/username/projects/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -324,13 +320,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -370,7 +364,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -394,7 +387,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/projects/should-create-new-inferred-projects-for-files-excluded-from-a-configured-project.js b/tests/baselines/reference/tsserver/projects/should-create-new-inferred-projects-for-files-excluded-from-a-configured-project.js index be61fa4e118a6..ee33575f52e2f 100644 --- a/tests/baselines/reference/tsserver/projects/should-create-new-inferred-projects-for-files-excluded-from-a-configured-project.js +++ b/tests/baselines/reference/tsserver/projects/should-create-new-inferred-projects-for-files-excluded-from-a-configured-project.js @@ -358,10 +358,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, currentDirectory: /user/username/projects/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/projects/should-disable-features-when-the-files-are-too-large.js b/tests/baselines/reference/tsserver/projects/should-disable-features-when-the-files-are-too-large.js index 7327480fd331a..fd5fad9367bf1 100644 --- a/tests/baselines/reference/tsserver/projects/should-disable-features-when-the-files-are-too-large.js +++ b/tests/baselines/reference/tsserver/projects/should-disable-features-when-the-files-are-too-large.js @@ -144,13 +144,11 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -194,7 +192,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -214,7 +211,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -330,12 +326,6 @@ Info seq [hh:mm:ss:mss] event: "maxFileSize": 4194304 } } -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin/node_modules/@types 1 undefined Project: proj2 WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin/node_modules/@types 1 undefined Project: proj2 WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/node_modules/@types 1 undefined Project: proj2 WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/node_modules/@types 1 undefined Project: proj2 WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/node_modules/@types 1 undefined Project: proj2 WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/node_modules/@types 1 undefined Project: proj2 WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: proj2 projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project 'proj2' (External) Info seq [hh:mm:ss:mss] Files (2) @@ -365,12 +355,10 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -414,7 +402,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -434,7 +421,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/projects/synchronizeProjectList-provides-redirect-info-when-requested.js b/tests/baselines/reference/tsserver/projects/synchronizeProjectList-provides-redirect-info-when-requested.js index 7768350966486..8de1e63108bb4 100644 --- a/tests/baselines/reference/tsserver/projects/synchronizeProjectList-provides-redirect-info-when-requested.js +++ b/tests/baselines/reference/tsserver/projects/synchronizeProjectList-provides-redirect-info-when-requested.js @@ -263,10 +263,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/projects/project/B/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/B/node_modules/@types 1 undefined Project: /users/username/projects/project/B/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/B/node_modules/@types 1 undefined Project: /users/username/projects/project/B/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/B/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/B/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/node_modules/@types 1 undefined Project: /users/username/projects/project/B/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/node_modules/@types 1 undefined Project: /users/username/projects/project/B/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/username/projects/project/B/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/users/username/projects/project/B/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/projects/synchronizeProjectList-provides-updates-to-redirect-info-when-requested.js b/tests/baselines/reference/tsserver/projects/synchronizeProjectList-provides-updates-to-redirect-info-when-requested.js index 575cbfe12b704..fac14400a5acf 100644 --- a/tests/baselines/reference/tsserver/projects/synchronizeProjectList-provides-updates-to-redirect-info-when-requested.js +++ b/tests/baselines/reference/tsserver/projects/synchronizeProjectList-provides-updates-to-redirect-info-when-requested.js @@ -268,10 +268,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/username/projec Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/projects/project/B/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/B/node_modules/@types 1 undefined Project: /users/username/projects/project/B/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/B/node_modules/@types 1 undefined Project: /users/username/projects/project/B/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/B/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/B/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/node_modules/@types 1 undefined Project: /users/username/projects/project/B/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/node_modules/@types 1 undefined Project: /users/username/projects/project/B/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/username/projects/project/B/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/users/username/projects/project/B/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-deleting-referenced-config-file.js b/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-deleting-referenced-config-file.js index 5d1b0d6fedcc6..6d9e1ced1a2a6 100644 --- a/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-deleting-referenced-config-file.js +++ b/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-deleting-referenced-config-file.js @@ -168,14 +168,14 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/index.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs/a.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/index.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs/a.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-deleting-transitively-referenced-config-file.js b/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-deleting-transitively-referenced-config-file.js index 8eb6ae7df5675..b8892e1565e96 100644 --- a/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-deleting-transitively-referenced-config-file.js +++ b/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-deleting-transitively-referenced-config-file.js @@ -168,14 +168,14 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/index.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs/a.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/index.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs/a.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-edit-in-referenced-config-file.js b/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-edit-in-referenced-config-file.js index fedbf7bbd9f2c..1f60a3f863fce 100644 --- a/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-edit-in-referenced-config-file.js +++ b/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-edit-in-referenced-config-file.js @@ -168,14 +168,14 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/index.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs/a.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/index.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs/a.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots @@ -424,9 +424,9 @@ Info seq [hh:mm:ss:mss] Config: /user/username/projects/myproject/b/tsconfig.js } ] } -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/nrefs/a.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/nrefs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/nrefs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/nrefs/a.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms diff --git a/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-edit-on-config-file.js b/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-edit-on-config-file.js index 5a860f36992f9..48e2e4aec068b 100644 --- a/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-edit-on-config-file.js +++ b/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-edit-on-config-file.js @@ -168,14 +168,14 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/index.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs/a.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/index.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs/a.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots @@ -433,9 +433,9 @@ Info seq [hh:mm:ss:mss] Config: /user/username/projects/myproject/c/tsconfig.js ] } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/nrefs/a.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/nrefs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/nrefs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/nrefs/a.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms diff --git a/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-non-local-edit.js b/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-non-local-edit.js index f6ba8da0e8d2d..a13fe338a5bf3 100644 --- a/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-non-local-edit.js +++ b/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-non-local-edit.js @@ -168,14 +168,14 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/index.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs/a.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/index.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs/a.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-deleting-referenced-config-file.js b/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-deleting-referenced-config-file.js index 9737c6d559a46..21cf39305f3a3 100644 --- a/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-deleting-referenced-config-file.js +++ b/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-deleting-referenced-config-file.js @@ -165,14 +165,14 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/index.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs/a.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/index.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs/a.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-deleting-transitively-referenced-config-file.js b/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-deleting-transitively-referenced-config-file.js index c2d2da2ce26e1..d1f5177b9b704 100644 --- a/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-deleting-transitively-referenced-config-file.js +++ b/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-deleting-transitively-referenced-config-file.js @@ -165,14 +165,14 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/index.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs/a.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/index.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs/a.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-edit-in-referenced-config-file.js b/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-edit-in-referenced-config-file.js index 9d42eefdc79f5..9964af340368b 100644 --- a/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-edit-in-referenced-config-file.js +++ b/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-edit-in-referenced-config-file.js @@ -165,14 +165,14 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/index.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs/a.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/index.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs/a.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots @@ -420,9 +420,9 @@ Info seq [hh:mm:ss:mss] Config: /user/username/projects/myproject/b/tsconfig.js } ] } -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/nrefs/a.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/nrefs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/nrefs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/nrefs/a.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms diff --git a/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-edit-on-config-file.js b/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-edit-on-config-file.js index 343930355e1c8..11444ccf7abe9 100644 --- a/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-edit-on-config-file.js +++ b/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-edit-on-config-file.js @@ -165,14 +165,14 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/index.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs/a.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/index.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs/a.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots @@ -429,9 +429,9 @@ Info seq [hh:mm:ss:mss] Config: /user/username/projects/myproject/c/tsconfig.js ] } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/nrefs/a.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/nrefs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/nrefs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/nrefs/a.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms diff --git a/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-non-local-edit.js b/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-non-local-edit.js index 4130cd73a6693..14de36fa7c3f5 100644 --- a/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-non-local-edit.js +++ b/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-non-local-edit.js @@ -165,14 +165,14 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/index.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs/a.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/index.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs/a.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/refactors/handles-moving-statement-to-an-existing-file.js b/tests/baselines/reference/tsserver/refactors/handles-moving-statement-to-an-existing-file.js index 3d20900131ed4..193cfd3b9bb80 100644 --- a/tests/baselines/reference/tsserver/refactors/handles-moving-statement-to-an-existing-file.js +++ b/tests/baselines/reference/tsserver/refactors/handles-moving-statement-to-an-existing-file.js @@ -62,10 +62,10 @@ Info seq [hh:mm:ss:mss] event: } Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/Foo/b.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/Foo/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/Foo/bar 1 undefined Project: /home/src/projects/project/Foo/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/Foo/bar 1 undefined Project: /home/src/projects/project/Foo/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/Foo 0 undefined Project: /home/src/projects/project/Foo/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/Foo 0 undefined Project: /home/src/projects/project/Foo/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/Foo/bar 1 undefined Project: /home/src/projects/project/Foo/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/Foo/bar 1 undefined Project: /home/src/projects/project/Foo/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/Foo/node_modules/@types 1 undefined Project: /home/src/projects/project/Foo/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/Foo/node_modules/@types 1 undefined Project: /home/src/projects/project/Foo/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/regionDiagnostics/diagnostics-for-select-nodes-and-whole-file-for-multiple-files.js b/tests/baselines/reference/tsserver/regionDiagnostics/diagnostics-for-select-nodes-and-whole-file-for-multiple-files.js index a3867456923f0..df4c7eaafbb1a 100644 --- a/tests/baselines/reference/tsserver/regionDiagnostics/diagnostics-for-select-nodes-and-whole-file-for-multiple-files.js +++ b/tests/baselines/reference/tsserver/regionDiagnostics/diagnostics-for-select-nodes-and-whole-file-for-multiple-files.js @@ -166,14 +166,6 @@ Info seq [hh:mm:ss:mss] request: Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/projects/project/a/b/app2.ts ProjectRootPath: undefined:: Result: undefined Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, currentDirectory: /home/src/projects/project/a/b Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -252,14 +244,6 @@ Info seq [hh:mm:ss:mss] request: Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/projects/project/a/b/app3.ts ProjectRootPath: undefined:: Result: undefined Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject3*, currentDirectory: /home/src/projects/project/a/b Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject3* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject3* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject3*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -353,14 +337,6 @@ Info seq [hh:mm:ss:mss] request: Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/projects/project/a/b/app4.ts ProjectRootPath: undefined:: Result: undefined Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject4*, currentDirectory: /home/src/projects/project/a/b Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject4* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject4* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject4* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject4*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/reloadProjects/configured-project.js b/tests/baselines/reference/tsserver/reloadProjects/configured-project.js index 0a024919f0cd6..d404b73101f6c 100644 --- a/tests/baselines/reference/tsserver/reloadProjects/configured-project.js +++ b/tests/baselines/reference/tsserver/reloadProjects/configured-project.js @@ -105,10 +105,10 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/file2.ts 500 {"excludeFiles":["/user/username/projects/myproject/file2.ts"]} WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 {"excludeFiles":["/user/username/projects/myproject/file2.ts"]} WatchType: Closed Script info Info seq [hh:mm:ss:mss] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 {"excludeFiles":["/user/username/projects/myproject/file2.ts"]} WatchType: Closed Script info Info seq [hh:mm:ss:mss] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots @@ -263,12 +263,12 @@ Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /user/username/projects/myproject/file1.ts ProjectRootPath: undefined:: Result: /user/username/projects/myproject/tsconfig.json -Info seq [hh:mm:ss:mss] ExcludeWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] ExcludeWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] ExcludeWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/file1.ts", @@ -294,9 +294,9 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info seq [hh:mm:ss:mss] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"]} WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"]} WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/module1/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution @@ -457,14 +457,14 @@ Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earli Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /user/username/projects/myproject/file1.ts ProjectRootPath: undefined:: Result: /user/username/projects/myproject/tsconfig.json +Info seq [hh:mm:ss:mss] ExcludeWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] ExcludeWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/module1/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] ExcludeWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/file1.ts", @@ -653,14 +653,14 @@ Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earli Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /user/username/projects/myproject/file1.ts ProjectRootPath: undefined:: Result: /user/username/projects/myproject/tsconfig.json +Info seq [hh:mm:ss:mss] ExcludeWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] ExcludeWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/module1/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] ExcludeWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/file1.ts" @@ -685,11 +685,11 @@ Info seq [hh:mm:ss:mss] event: } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/file2 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/file2 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/file2 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/file2 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/module1/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution diff --git a/tests/baselines/reference/tsserver/reloadProjects/external-project-with-config-file.js b/tests/baselines/reference/tsserver/reloadProjects/external-project-with-config-file.js index cf642ee2502fe..8d1decb0f47d8 100644 --- a/tests/baselines/reference/tsserver/reloadProjects/external-project-with-config-file.js +++ b/tests/baselines/reference/tsserver/reloadProjects/external-project-with-config-file.js @@ -121,10 +121,10 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/file1.ts 500 {"excludeFiles":["/user/username/projects/myproject/file2.ts"]} WatchType: Closed Script info Info seq [hh:mm:ss:mss] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/file2.ts 500 {"excludeFiles":["/user/username/projects/myproject/file2.ts"]} WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 {"excludeFiles":["/user/username/projects/myproject/file2.ts"]} WatchType: Closed Script info Info seq [hh:mm:ss:mss] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 {"excludeFiles":["/user/username/projects/myproject/file2.ts"]} WatchType: Closed Script info Info seq [hh:mm:ss:mss] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots @@ -339,12 +339,12 @@ Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/myproject/tsconfig.j Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info seq [hh:mm:ss:mss] ExcludeWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] ExcludeWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] ExcludeWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -370,9 +370,9 @@ Info seq [hh:mm:ss:mss] Config: /user/username/projects/myproject/tsconfig.json } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info seq [hh:mm:ss:mss] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"]} WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"]} WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/module1/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution @@ -532,14 +532,14 @@ Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/myproject/tsconfig.j Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info seq [hh:mm:ss:mss] ExcludeWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] ExcludeWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/module1/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] ExcludeWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -728,14 +728,14 @@ Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/myproject/tsconfig.j Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info seq [hh:mm:ss:mss] ExcludeWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] ExcludeWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/module1/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] ExcludeWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -760,11 +760,11 @@ Info seq [hh:mm:ss:mss] Config: /user/username/projects/myproject/tsconfig.json } } Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/file2 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/file2 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/file2 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/file2 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/module1/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution diff --git a/tests/baselines/reference/tsserver/reloadProjects/external-project.js b/tests/baselines/reference/tsserver/reloadProjects/external-project.js index a95adc73cb58e..8734cdfa30f48 100644 --- a/tests/baselines/reference/tsserver/reloadProjects/external-project.js +++ b/tests/baselines/reference/tsserver/reloadProjects/external-project.js @@ -80,10 +80,10 @@ Info seq [hh:mm:ss:mss] Creating ExternalProject: /user/username/projects/mypro Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/file1.ts 500 {"excludeFiles":["/user/username/projects/myproject/file2.ts"]} WatchType: Closed Script info Info seq [hh:mm:ss:mss] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/file2.ts 500 {"excludeFiles":["/user/username/projects/myproject/file2.ts"]} WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/project.sln -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 {"excludeFiles":["/user/username/projects/myproject/file2.ts"]} WatchType: Closed Script info Info seq [hh:mm:ss:mss] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 {"excludeFiles":["/user/username/projects/myproject/file2.ts"]} WatchType: Closed Script info Info seq [hh:mm:ss:mss] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: Type roots @@ -261,16 +261,16 @@ Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/myproject/project.sl Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/myproject/project.sln, Cancelled earlier one Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info seq [hh:mm:ss:mss] ExcludeWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] ExcludeWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: Type roots +Info seq [hh:mm:ss:mss] ExcludeWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/project.sln +Info seq [hh:mm:ss:mss] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"]} WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"]} WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/module1/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: File location affecting resolution @@ -405,14 +405,14 @@ Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/myproject/project.sl Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/myproject/project.sln, Cancelled earlier one Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info seq [hh:mm:ss:mss] ExcludeWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: Type roots Info seq [hh:mm:ss:mss] ExcludeWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/module1/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] ExcludeWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: Type roots Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/project.sln Info seq [hh:mm:ss:mss] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/module1/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: File location affecting resolution @@ -552,20 +552,20 @@ Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/myproject/project.sl Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/myproject/project.sln, Cancelled earlier one Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info seq [hh:mm:ss:mss] ExcludeWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: Type roots Info seq [hh:mm:ss:mss] ExcludeWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/module1/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] ExcludeWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: Type roots Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/project.sln -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/file2 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/file2 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/file2 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/file2 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/module1/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.sln WatchType: File location affecting resolution diff --git a/tests/baselines/reference/tsserver/reloadProjects/inferred-project.js b/tests/baselines/reference/tsserver/reloadProjects/inferred-project.js index 285366798f1e5..df8d3bbc56468 100644 --- a/tests/baselines/reference/tsserver/reloadProjects/inferred-project.js +++ b/tests/baselines/reference/tsserver/reloadProjects/inferred-project.js @@ -92,11 +92,11 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"]} WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"]} WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/file2.ts 500 {"excludeFiles":["/user/username/projects/myproject/file2.ts"]} WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 {"excludeFiles":["/user/username/projects/myproject/file2.ts"]} WatchType: Closed Script info Info seq [hh:mm:ss:mss] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/file2.ts 500 {"excludeFiles":["/user/username/projects/myproject/file2.ts"]} WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 {"excludeFiles":["/user/username/projects/myproject/file2.ts"]} WatchType: Closed Script info Info seq [hh:mm:ss:mss] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Type roots @@ -187,12 +187,12 @@ Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* Info seq [hh:mm:ss:mss] Scheduled: /dev/null/inferredProject1*, Cancelled earlier one Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /user/username/projects/myproject/file1.ts ProjectRootPath: /user/username/projects/myproject:: Result: undefined -Info seq [hh:mm:ss:mss] ExcludeWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] ExcludeWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Type roots +Info seq [hh:mm:ss:mss] ExcludeWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (0) NoProgram @@ -202,9 +202,9 @@ Info seq [hh:mm:ss:mss] Open files: Info seq [hh:mm:ss:mss] FileName: /user/username/projects/myproject/file1.ts ProjectRootPath: /user/username/projects/myproject Info seq [hh:mm:ss:mss] Projects: /dev/null/inferredProject1* Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info seq [hh:mm:ss:mss] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"]} WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"]} WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/module1/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: File location affecting resolution @@ -336,14 +336,14 @@ Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earli Info seq [hh:mm:ss:mss] Scheduled: /dev/null/inferredProject1*, Cancelled earlier one Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /user/username/projects/myproject/file1.ts ProjectRootPath: /user/username/projects/myproject:: Result: undefined +Info seq [hh:mm:ss:mss] ExcludeWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] ExcludeWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/module1/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] ExcludeWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (0) NoProgram @@ -487,14 +487,14 @@ Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earli Info seq [hh:mm:ss:mss] Scheduled: /dev/null/inferredProject1*, Cancelled earlier one Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /user/username/projects/myproject/file1.ts ProjectRootPath: /user/username/projects/myproject:: Result: undefined +Info seq [hh:mm:ss:mss] ExcludeWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] ExcludeWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/module1/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] ExcludeWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (0) NoProgram @@ -504,11 +504,11 @@ Info seq [hh:mm:ss:mss] Open files: Info seq [hh:mm:ss:mss] FileName: /user/username/projects/myproject/file1.ts ProjectRootPath: /user/username/projects/myproject Info seq [hh:mm:ss:mss] Projects: /dev/null/inferredProject1* Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/file2 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/file2 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/file2 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/file2 1 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/module1/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/package.json 2000 {"excludeFiles":["/user/username/projects/myproject/file2.ts"],"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: File location affecting resolution diff --git a/tests/baselines/reference/tsserver/rename/rename-TS-file-with-js-extension.js b/tests/baselines/reference/tsserver/rename/rename-TS-file-with-js-extension.js index 2b709377601b7..fd204cbbccd7a 100644 --- a/tests/baselines/reference/tsserver/rename/rename-TS-file-with-js-extension.js +++ b/tests/baselines/reference/tsserver/rename/rename-TS-file-with-js-extension.js @@ -121,10 +121,6 @@ Info seq [hh:mm:ss:mss] request: Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/projects/project/b.ts ProjectRootPath: undefined:: Result: undefined Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, currentDirectory: /home/src/projects/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (3) @@ -154,10 +150,6 @@ Info seq [hh:mm:ss:mss] Files (2) Root file specified for compilation Info seq [hh:mm:ss:mss] ----------------------------------------------- -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/rename/rename-behavior-is-based-on-file-of-rename-initiation.js b/tests/baselines/reference/tsserver/rename/rename-behavior-is-based-on-file-of-rename-initiation.js index 7f3d952478568..b1c2739d993f6 100644 --- a/tests/baselines/reference/tsserver/rename/rename-behavior-is-based-on-file-of-rename-initiation.js +++ b/tests/baselines/reference/tsserver/rename/rename-behavior-is-based-on-file-of-rename-initiation.js @@ -121,10 +121,6 @@ Info seq [hh:mm:ss:mss] request: Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/projects/project/b.ts ProjectRootPath: undefined:: Result: undefined Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, currentDirectory: /home/src/projects/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (3) @@ -154,10 +150,6 @@ Info seq [hh:mm:ss:mss] Files (2) Root file specified for compilation Info seq [hh:mm:ss:mss] ----------------------------------------------- -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/rename/with-symlinks-and-case-difference.js b/tests/baselines/reference/tsserver/rename/with-symlinks-and-case-difference.js index 8c064c08f6085..076027a84f4dd 100644 --- a/tests/baselines/reference/tsserver/rename/with-symlinks-and-case-difference.js +++ b/tests/baselines/reference/tsserver/rename/with-symlinks-and-case-difference.js @@ -318,10 +318,6 @@ Info seq [hh:mm:ss:mss] Config: c:/temp/test/project2/tsconfig.json : { Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: c:/temp/test/project2/tsconfig.json 2000 undefined Project: c:/temp/test/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: c:/temp/test/project2 1 undefined Config: c:/temp/test/project2/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/temp/test/project2 1 undefined Config: c:/temp/test/project2/tsconfig.json WatchType: Wild card directory -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: c:/temp/test/node_modules/@types 1 undefined Project: c:/temp/test/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/temp/test/node_modules/@types 1 undefined Project: c:/temp/test/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: c:/temp/node_modules/@types 1 undefined Project: c:/temp/test/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/temp/node_modules/@types 1 undefined Project: c:/temp/test/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: c:/temp/test/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project 'c:/temp/test/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (0) @@ -408,10 +404,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: C:/temp/test/project1/package.json 2000 undefined Project: c:/temp/test/project2/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: c:/temp/test/project2/node_modules/@types 1 undefined Project: c:/temp/test/project2/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/temp/test/project2/node_modules/@types 1 undefined Project: c:/temp/test/project2/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: c:/temp/test/node_modules/@types 1 undefined Project: c:/temp/test/project2/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/temp/test/node_modules/@types 1 undefined Project: c:/temp/test/project2/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: c:/temp/node_modules/@types 1 undefined Project: c:/temp/test/project2/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/temp/node_modules/@types 1 undefined Project: c:/temp/test/project2/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: c:/temp/test/project2/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project 'c:/temp/test/project2/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/resolutionCache/avoid-unnecessary-lookup-invalidation-on-save.js b/tests/baselines/reference/tsserver/resolutionCache/avoid-unnecessary-lookup-invalidation-on-save.js index 49c9edd5db18a..4aa33924298f3 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/avoid-unnecessary-lookup-invalidation-on-save.js +++ b/tests/baselines/reference/tsserver/resolutionCache/avoid-unnecessary-lookup-invalidation-on-save.js @@ -80,6 +80,8 @@ Info seq [hh:mm:ss:mss] File '/user/username/projects/myproject/src/node_module Info seq [hh:mm:ss:mss] File '/user/username/projects/myproject/src/node_modules/module1/index.ts' exists - use it as a name resolution result. Info seq [hh:mm:ss:mss] Resolving real path for '/user/username/projects/myproject/src/node_modules/module1/index.ts', result '/user/username/projects/myproject/src/node_modules/module1/index.ts'. Info seq [hh:mm:ss:mss] ======== Module name 'module1' was successfully resolved to '/user/username/projects/myproject/src/node_modules/module1/index.ts'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] ======== Resolving module 'module2' from '/user/username/projects/myproject/src/file1.ts'. ======== Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. Info seq [hh:mm:ss:mss] Loading module 'module2' from 'node_modules' folder, target file types: TypeScript, Declaration. @@ -95,6 +97,8 @@ Info seq [hh:mm:ss:mss] File '/user/username/projects/myproject/node_modules/mo Info seq [hh:mm:ss:mss] File '/user/username/projects/myproject/node_modules/module2/index.ts' exists - use it as a name resolution result. Info seq [hh:mm:ss:mss] Resolving real path for '/user/username/projects/myproject/node_modules/module2/index.ts', result '/user/username/projects/myproject/node_modules/module2/index.ts'. Info seq [hh:mm:ss:mss] ======== Module name 'module2' was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] File '/user/username/projects/myproject/src/node_modules/module1/package.json' does not exist according to earlier cached lookups. Info seq [hh:mm:ss:mss] File '/user/username/projects/myproject/src/node_modules/package.json' does not exist. Info seq [hh:mm:ss:mss] File '/user/username/projects/myproject/src/package.json' does not exist. @@ -115,10 +119,6 @@ Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlie Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/module1/package.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/package.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/package.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution diff --git a/tests/baselines/reference/tsserver/resolutionCache/can-load-typings-that-are-proper-modules.js b/tests/baselines/reference/tsserver/resolutionCache/can-load-typings-that-are-proper-modules.js index ee370fcb9e0cf..1081fd7cc5765 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/can-load-typings-that-are-proper-modules.js +++ b/tests/baselines/reference/tsserver/resolutionCache/can-load-typings-that-are-proper-modules.js @@ -90,17 +90,17 @@ Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/ Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/lib/package.json' does not exist. Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/lib.d.ts' does not exist. Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/lib/index.d.ts' exists - use it as a name resolution result. -Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/lib/package.json' does not exist according to earlier cached lookups. -Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist. -Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist. -Info seq [hh:mm:ss:mss] Found 'package.json' at '/home/src/Library/Caches/typescript/package.json'. -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/lib/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] Found 'package.json' at '/home/src/Library/Caches/typescript/package.json'. +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/lib/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution @@ -205,13 +205,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -250,7 +248,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -273,7 +270,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/resolutionCache/disable-suggestion-diagnostics.js b/tests/baselines/reference/tsserver/resolutionCache/disable-suggestion-diagnostics.js index 95f81f350f145..0490282494dde 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/disable-suggestion-diagnostics.js +++ b/tests/baselines/reference/tsserver/resolutionCache/disable-suggestion-diagnostics.js @@ -37,11 +37,11 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/resolutionCache/multiple-projects-with-redirect-options.js b/tests/baselines/reference/tsserver/resolutionCache/multiple-projects-with-redirect-options.js new file mode 100644 index 0000000000000..a9a18ebffc535 --- /dev/null +++ b/tests/baselines/reference/tsserver/resolutionCache/multiple-projects-with-redirect-options.js @@ -0,0 +1,2499 @@ +Info seq [hh:mm:ss:mss] currentDirectory:: /home/src/Vscode/Projects/bin useCaseSensitiveFileNames:: false +Info seq [hh:mm:ss:mss] libs Location:: /home/src/tslibs/TS/Lib +Info seq [hh:mm:ss:mss] globalTypingsCacheLocation:: /home/src/Library/Caches/typescript +Info seq [hh:mm:ss:mss] Provided types map file "/home/src/tslibs/TS/Lib/typesMap.json" doesn't exist +Before request +//// [/home/src/workspaces/project/tsconfig.a.json] +{ + "compilerOptions": { + "composite": true, + "traceResolution": true + }, + "files": [ + "aMain.ts", + "aFileWithImports.ts", + "aRandomFileForImport.ts", + "aRandomFileForImport2.ts" + ] +} + +//// [/home/src/workspaces/project/aMain.ts] +export const x = 10; + +//// [/home/src/workspaces/project/aFileWithImports.ts] +import type { ImportInterface0 } from "pkg0"; +export { x } from "./aRandomFileForImport"; +export { x as x2 } from "./aRandomFileForImport2"; +export const y = 10; + + +//// [/home/src/workspaces/project/aRandomFileForImport.ts] +export const x = 10; + +//// [/home/src/workspaces/project/aRandomFileForImport2.ts] +export const x = 10; + +//// [/home/src/workspaces/project/node_modules/pkg0/index.d.ts] +export interface ImportInterface0 {} + +//// [/home/src/workspaces/project/tsconfig.b.json] +{ + "compilerOptions": { + "composite": true, + "traceResolution": true + }, + "files": [ + "bMain.ts", + "bFileWithImports.ts", + "bRandomFileForImport.ts", + "bRandomFileForImport2.ts" + ], + "references": [ + { + "path": "./tsconfig.a.json" + } + ] +} + +//// [/home/src/workspaces/project/bMain.ts] +export const x = 10; + +//// [/home/src/workspaces/project/bFileWithImports.ts] +export { y } from "./aFileWithImports"; +export { x } from "./bRandomFileForImport"; +import type { ImportInterface0 } from "pkg0"; + + +//// [/home/src/workspaces/project/bRandomFileForImport.ts] +export const x = 10; + +//// [/home/src/workspaces/project/bRandomFileForImport2.ts] +export const x = 10; + +//// [/home/src/workspaces/project/tsconfig.json] +{ + "compilerOptions": { + "composite": true, + "traceResolution": true, + "module": "amd" + }, + "files": [ + "cMain.ts", + "cFileWithImports.ts", + "cRandomFileForImport.ts", + "cRandomFileForImport2.ts" + ], + "references": [ + { + "path": "./tsconfig.a.json" + }, + { + "path": "./tsconfig.b.json" + } + ] +} + +//// [/home/src/workspaces/project/cMain.ts] +export const x = 10; + +//// [/home/src/workspaces/project/cFileWithImports.ts] +import { y } from "./bFileWithImports"; +import type { ImportInterface0 } from "pkg0"; + + +//// [/home/src/workspaces/project/cRandomFileForImport.ts] +export const x = 10; + +//// [/home/src/workspaces/project/cRandomFileForImport2.ts] +export const x = 10; + +//// [/home/src/workspaces/project/pkg0.d.ts] +export interface ImportInterface0 {} + +//// [/home/src/tslibs/TS/Lib/lib.d.ts] +/// +interface Boolean {} +interface Function {} +interface CallableFunction {} +interface NewableFunction {} +interface IArguments {} +interface Number { toExponential: any; } +interface Object {} +interface RegExp {} +interface String { charAt: any; } +interface Array { length: number; [n: number]: T; } +interface ReadonlyArray {} +declare const console: { log(msg: any): void; }; + +//// [/home/src/workspaces/project/aMain.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/aMain.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/aRandomFileForImport.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/aRandomFileForImport.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/aRandomFileForImport2.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/aRandomFileForImport2.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/aFileWithImports.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.y = exports.x2 = exports.x = void 0; +var aRandomFileForImport_1 = require("./aRandomFileForImport"); +Object.defineProperty(exports, "x", { enumerable: true, get: function () { return aRandomFileForImport_1.x; } }); +var aRandomFileForImport2_1 = require("./aRandomFileForImport2"); +Object.defineProperty(exports, "x2", { enumerable: true, get: function () { return aRandomFileForImport2_1.x; } }); +exports.y = 10; + + +//// [/home/src/workspaces/project/aFileWithImports.d.ts] +export { x } from "./aRandomFileForImport"; +export { x as x2 } from "./aRandomFileForImport2"; +export declare const y = 10; + + +//// [/home/src/workspaces/project/tsconfig.a.tsbuildinfo] +{"fileNames":["../../tslibs/ts/lib/lib.d.ts","./amain.ts","./node_modules/pkg0/index.d.ts","./arandomfileforimport.ts","./arandomfileforimport2.ts","./afilewithimports.ts"],"fileIdsList":[[3,4,5]],"fileInfos":[{"version":"3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n"},{"version":"769951468-export interface ImportInterface0 {}","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n"},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n"},{"version":"25172849050-import type { ImportInterface0 } from \"pkg0\";\nexport { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport const y = 10;\n","signature":"-19407286966-export { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport declare const y = 10;\n"}],"root":[2,[4,6]],"options":{"composite":true},"referencedMap":[[6,1]],"latestChangedDtsFile":"./aFileWithImports.d.ts","version":"FakeTSVersion"} + +//// [/home/src/workspaces/project/tsconfig.a.tsbuildinfo.readable.baseline.txt] +{ + "fileNames": [ + "../../tslibs/ts/lib/lib.d.ts", + "./amain.ts", + "./node_modules/pkg0/index.d.ts", + "./arandomfileforimport.ts", + "./arandomfileforimport2.ts", + "./afilewithimports.ts" + ], + "fileIdsList": [ + [ + "./node_modules/pkg0/index.d.ts", + "./arandomfileforimport.ts", + "./arandomfileforimport2.ts" + ] + ], + "fileInfos": { + "../../tslibs/ts/lib/lib.d.ts": { + "original": { + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true + }, + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "signature": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true + }, + "./amain.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./node_modules/pkg0/index.d.ts": { + "original": { + "version": "769951468-export interface ImportInterface0 {}", + "impliedFormat": 1 + }, + "version": "769951468-export interface ImportInterface0 {}", + "signature": "769951468-export interface ImportInterface0 {}", + "impliedFormat": "commonjs" + }, + "./arandomfileforimport.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./arandomfileforimport2.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./afilewithimports.ts": { + "original": { + "version": "25172849050-import type { ImportInterface0 } from \"pkg0\";\nexport { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport const y = 10;\n", + "signature": "-19407286966-export { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport declare const y = 10;\n" + }, + "version": "25172849050-import type { ImportInterface0 } from \"pkg0\";\nexport { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport const y = 10;\n", + "signature": "-19407286966-export { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport declare const y = 10;\n" + } + }, + "root": [ + [ + 2, + "./amain.ts" + ], + [ + [ + 4, + 6 + ], + [ + "./arandomfileforimport.ts", + "./arandomfileforimport2.ts", + "./afilewithimports.ts" + ] + ] + ], + "options": { + "composite": true + }, + "referencedMap": { + "./afilewithimports.ts": [ + "./node_modules/pkg0/index.d.ts", + "./arandomfileforimport.ts", + "./arandomfileforimport2.ts" + ] + }, + "latestChangedDtsFile": "./aFileWithImports.d.ts", + "version": "FakeTSVersion", + "size": 1587 +} + +//// [/home/src/workspaces/project/bMain.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/bMain.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/bRandomFileForImport.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/bRandomFileForImport.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/bFileWithImports.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = exports.y = void 0; +var aFileWithImports_1 = require("./aFileWithImports"); +Object.defineProperty(exports, "y", { enumerable: true, get: function () { return aFileWithImports_1.y; } }); +var bRandomFileForImport_1 = require("./bRandomFileForImport"); +Object.defineProperty(exports, "x", { enumerable: true, get: function () { return bRandomFileForImport_1.x; } }); + + +//// [/home/src/workspaces/project/bFileWithImports.d.ts] +export { y } from "./aFileWithImports"; +export { x } from "./bRandomFileForImport"; + + +//// [/home/src/workspaces/project/bRandomFileForImport2.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/bRandomFileForImport2.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/tsconfig.b.tsbuildinfo] +{"fileNames":["../../tslibs/ts/lib/lib.d.ts","./bmain.ts","./arandomfileforimport.d.ts","./arandomfileforimport2.d.ts","./afilewithimports.d.ts","./brandomfileforimport.ts","./node_modules/pkg0/index.d.ts","./bfilewithimports.ts","./brandomfileforimport2.ts"],"fileIdsList":[[3,4],[5,6,7]],"fileInfos":[{"version":"3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n"},"-6821242887-export declare const x = 10;\n","-6821242887-export declare const x = 10;\n","-19407286966-export { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport declare const y = 10;\n",{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n"},{"version":"769951468-export interface ImportInterface0 {}","impliedFormat":1},{"version":"-16966571634-export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\nimport type { ImportInterface0 } from \"pkg0\";\n","signature":"-7362913554-export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\n"},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n"}],"root":[2,6,8,9],"options":{"composite":true},"referencedMap":[[5,1],[8,2]],"latestChangedDtsFile":"./bRandomFileForImport2.d.ts","version":"FakeTSVersion"} + +//// [/home/src/workspaces/project/tsconfig.b.tsbuildinfo.readable.baseline.txt] +{ + "fileNames": [ + "../../tslibs/ts/lib/lib.d.ts", + "./bmain.ts", + "./arandomfileforimport.d.ts", + "./arandomfileforimport2.d.ts", + "./afilewithimports.d.ts", + "./brandomfileforimport.ts", + "./node_modules/pkg0/index.d.ts", + "./bfilewithimports.ts", + "./brandomfileforimport2.ts" + ], + "fileIdsList": [ + [ + "./arandomfileforimport.d.ts", + "./arandomfileforimport2.d.ts" + ], + [ + "./afilewithimports.d.ts", + "./brandomfileforimport.ts", + "./node_modules/pkg0/index.d.ts" + ] + ], + "fileInfos": { + "../../tslibs/ts/lib/lib.d.ts": { + "original": { + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true + }, + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "signature": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true + }, + "./bmain.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./arandomfileforimport.d.ts": { + "version": "-6821242887-export declare const x = 10;\n", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./arandomfileforimport2.d.ts": { + "version": "-6821242887-export declare const x = 10;\n", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./afilewithimports.d.ts": { + "version": "-19407286966-export { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport declare const y = 10;\n", + "signature": "-19407286966-export { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport declare const y = 10;\n" + }, + "./brandomfileforimport.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./node_modules/pkg0/index.d.ts": { + "original": { + "version": "769951468-export interface ImportInterface0 {}", + "impliedFormat": 1 + }, + "version": "769951468-export interface ImportInterface0 {}", + "signature": "769951468-export interface ImportInterface0 {}", + "impliedFormat": "commonjs" + }, + "./bfilewithimports.ts": { + "original": { + "version": "-16966571634-export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\nimport type { ImportInterface0 } from \"pkg0\";\n", + "signature": "-7362913554-export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\n" + }, + "version": "-16966571634-export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\nimport type { ImportInterface0 } from \"pkg0\";\n", + "signature": "-7362913554-export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\n" + }, + "./brandomfileforimport2.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + } + }, + "root": [ + [ + 2, + "./bmain.ts" + ], + [ + 6, + "./brandomfileforimport.ts" + ], + [ + 8, + "./bfilewithimports.ts" + ], + [ + 9, + "./brandomfileforimport2.ts" + ] + ], + "options": { + "composite": true + }, + "referencedMap": { + "./afilewithimports.d.ts": [ + "./arandomfileforimport.d.ts", + "./arandomfileforimport2.d.ts" + ], + "./bfilewithimports.ts": [ + "./afilewithimports.d.ts", + "./brandomfileforimport.ts", + "./node_modules/pkg0/index.d.ts" + ] + }, + "latestChangedDtsFile": "./bRandomFileForImport2.d.ts", + "version": "FakeTSVersion", + "size": 1854 +} + +//// [/home/src/workspaces/project/cMain.js] +define(["require", "exports"], function (require, exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { value: true }); + exports.x = void 0; + exports.x = 10; +}); + + +//// [/home/src/workspaces/project/cMain.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/cFileWithImports.js] +define(["require", "exports"], function (require, exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { value: true }); +}); + + +//// [/home/src/workspaces/project/cFileWithImports.d.ts] +export {}; + + +//// [/home/src/workspaces/project/cRandomFileForImport.js] +define(["require", "exports"], function (require, exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { value: true }); + exports.x = void 0; + exports.x = 10; +}); + + +//// [/home/src/workspaces/project/cRandomFileForImport.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/cRandomFileForImport2.js] +define(["require", "exports"], function (require, exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { value: true }); + exports.x = void 0; + exports.x = 10; +}); + + +//// [/home/src/workspaces/project/cRandomFileForImport2.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/tsconfig.tsbuildinfo] +{"fileNames":["../../tslibs/ts/lib/lib.d.ts","./cmain.ts","./arandomfileforimport.d.ts","./arandomfileforimport2.d.ts","./afilewithimports.d.ts","./brandomfileforimport.d.ts","./bfilewithimports.d.ts","./pkg0.d.ts","./cfilewithimports.ts","./crandomfileforimport.ts","./crandomfileforimport2.ts"],"fileIdsList":[[3,4],[5,6],[7,8]],"fileInfos":[{"version":"3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n"},"-6821242887-export declare const x = 10;\n","-6821242887-export declare const x = 10;\n","-19407286966-export { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport declare const y = 10;\n","-6821242887-export declare const x = 10;\n","-7362913554-export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\n","769951468-export interface ImportInterface0 {}",{"version":"-1053334089-import { y } from \"./bFileWithImports\";\nimport type { ImportInterface0 } from \"pkg0\";\n","signature":"-3531856636-export {};\n"},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n"},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n"}],"root":[2,[9,11]],"options":{"composite":true,"module":2},"referencedMap":[[5,1],[7,2],[9,3]],"latestChangedDtsFile":"./cRandomFileForImport2.d.ts","version":"FakeTSVersion"} + +//// [/home/src/workspaces/project/tsconfig.tsbuildinfo.readable.baseline.txt] +{ + "fileNames": [ + "../../tslibs/ts/lib/lib.d.ts", + "./cmain.ts", + "./arandomfileforimport.d.ts", + "./arandomfileforimport2.d.ts", + "./afilewithimports.d.ts", + "./brandomfileforimport.d.ts", + "./bfilewithimports.d.ts", + "./pkg0.d.ts", + "./cfilewithimports.ts", + "./crandomfileforimport.ts", + "./crandomfileforimport2.ts" + ], + "fileIdsList": [ + [ + "./arandomfileforimport.d.ts", + "./arandomfileforimport2.d.ts" + ], + [ + "./afilewithimports.d.ts", + "./brandomfileforimport.d.ts" + ], + [ + "./bfilewithimports.d.ts", + "./pkg0.d.ts" + ] + ], + "fileInfos": { + "../../tslibs/ts/lib/lib.d.ts": { + "original": { + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true + }, + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "signature": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true + }, + "./cmain.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./arandomfileforimport.d.ts": { + "version": "-6821242887-export declare const x = 10;\n", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./arandomfileforimport2.d.ts": { + "version": "-6821242887-export declare const x = 10;\n", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./afilewithimports.d.ts": { + "version": "-19407286966-export { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport declare const y = 10;\n", + "signature": "-19407286966-export { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport declare const y = 10;\n" + }, + "./brandomfileforimport.d.ts": { + "version": "-6821242887-export declare const x = 10;\n", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./bfilewithimports.d.ts": { + "version": "-7362913554-export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\n", + "signature": "-7362913554-export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\n" + }, + "./pkg0.d.ts": { + "version": "769951468-export interface ImportInterface0 {}", + "signature": "769951468-export interface ImportInterface0 {}" + }, + "./cfilewithimports.ts": { + "original": { + "version": "-1053334089-import { y } from \"./bFileWithImports\";\nimport type { ImportInterface0 } from \"pkg0\";\n", + "signature": "-3531856636-export {};\n" + }, + "version": "-1053334089-import { y } from \"./bFileWithImports\";\nimport type { ImportInterface0 } from \"pkg0\";\n", + "signature": "-3531856636-export {};\n" + }, + "./crandomfileforimport.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./crandomfileforimport2.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + } + }, + "root": [ + [ + 2, + "./cmain.ts" + ], + [ + [ + 9, + 11 + ], + [ + "./cfilewithimports.ts", + "./crandomfileforimport.ts", + "./crandomfileforimport2.ts" + ] + ] + ], + "options": { + "composite": true, + "module": 2 + }, + "referencedMap": { + "./afilewithimports.d.ts": [ + "./arandomfileforimport.d.ts", + "./arandomfileforimport2.d.ts" + ], + "./bfilewithimports.d.ts": [ + "./afilewithimports.d.ts", + "./brandomfileforimport.d.ts" + ], + "./cfilewithimports.ts": [ + "./bfilewithimports.d.ts", + "./pkg0.d.ts" + ] + }, + "latestChangedDtsFile": "./cRandomFileForImport2.d.ts", + "version": "FakeTSVersion", + "size": 1907 +} + + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/home/src/workspaces/project/cMain.ts" + }, + "seq": 1, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/project/cMain.ts ProjectRootPath: undefined:: Result: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /home/src/workspaces/project/tsconfig.json, currentDirectory: /home/src/workspaces/project +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/tsconfig.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /home/src/workspaces/project/tsconfig.json : { + "rootNames": [ + "/home/src/workspaces/project/cMain.ts", + "/home/src/workspaces/project/cFileWithImports.ts", + "/home/src/workspaces/project/cRandomFileForImport.ts", + "/home/src/workspaces/project/cRandomFileForImport2.ts" + ], + "options": { + "composite": true, + "traceResolution": true, + "module": 2, + "configFilePath": "/home/src/workspaces/project/tsconfig.json" + }, + "projectReferences": [ + { + "path": "/home/src/workspaces/project/tsconfig.a.json", + "originalPath": "./tsconfig.a.json" + }, + { + "path": "/home/src/workspaces/project/tsconfig.b.json", + "originalPath": "./tsconfig.b.json" + } + ] +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/home/src/workspaces/project/tsconfig.json", + "reason": "Creating possible configured project for /home/src/workspaces/project/cMain.ts to open" + } + } +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/cFileWithImports.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/cRandomFileForImport.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/cRandomFileForImport2.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Config: /home/src/workspaces/project/tsconfig.a.json : { + "rootNames": [ + "/home/src/workspaces/project/aMain.ts", + "/home/src/workspaces/project/aFileWithImports.ts", + "/home/src/workspaces/project/aRandomFileForImport.ts", + "/home/src/workspaces/project/aRandomFileForImport2.ts" + ], + "options": { + "composite": true, + "traceResolution": true, + "configFilePath": "/home/src/workspaces/project/tsconfig.a.json" + } +} +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/tsconfig.a.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /home/src/workspaces/project/tsconfig.b.json : { + "rootNames": [ + "/home/src/workspaces/project/bMain.ts", + "/home/src/workspaces/project/bFileWithImports.ts", + "/home/src/workspaces/project/bRandomFileForImport.ts", + "/home/src/workspaces/project/bRandomFileForImport2.ts" + ], + "options": { + "composite": true, + "traceResolution": true, + "configFilePath": "/home/src/workspaces/project/tsconfig.b.json" + }, + "projectReferences": [ + { + "path": "/home/src/workspaces/project/tsconfig.a.json", + "originalPath": "./tsconfig.a.json" + } + ] +} +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/tsconfig.b.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] ======== Resolving module './bFileWithImports' from '/home/src/workspaces/project/cFileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Classic'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/bFileWithImports.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] ======== Module name './bFileWithImports' was successfully resolved to '/home/src/workspaces/project/bFileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/cFileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Classic'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/pkg0.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/pkg0.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/pkg0.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/pkg0.d.ts'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/bFileWithImports.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] ======== Resolving module './aFileWithImports' from '/home/src/workspaces/project/bFileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Using compiler options of project reference redirect '/home/src/workspaces/project/tsconfig.b.json'. +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module as file / folder, candidate module location '/home/src/workspaces/project/aFileWithImports', target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/aFileWithImports.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] ======== Module name './aFileWithImports' was successfully resolved to '/home/src/workspaces/project/aFileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] ======== Resolving module './bRandomFileForImport' from '/home/src/workspaces/project/bFileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Using compiler options of project reference redirect '/home/src/workspaces/project/tsconfig.b.json'. +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module as file / folder, candidate module location '/home/src/workspaces/project/bRandomFileForImport', target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/bRandomFileForImport.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] ======== Module name './bRandomFileForImport' was successfully resolved to '/home/src/workspaces/project/bRandomFileForImport.ts'. ======== +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/bFileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Using compiler options of project reference redirect '/home/src/workspaces/project/tsconfig.b.json'. +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/home/src/workspaces/project/node_modules/pkg0/index.d.ts', result '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/aFileWithImports.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/aFileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Using compiler options of project reference redirect '/home/src/workspaces/project/tsconfig.a.json'. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] ======== Resolving module './aRandomFileForImport' from '/home/src/workspaces/project/aFileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Using compiler options of project reference redirect '/home/src/workspaces/project/tsconfig.a.json'. +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module as file / folder, candidate module location '/home/src/workspaces/project/aRandomFileForImport', target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/aRandomFileForImport.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] ======== Module name './aRandomFileForImport' was successfully resolved to '/home/src/workspaces/project/aRandomFileForImport.ts'. ======== +Info seq [hh:mm:ss:mss] ======== Resolving module './aRandomFileForImport2' from '/home/src/workspaces/project/aFileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Using compiler options of project reference redirect '/home/src/workspaces/project/tsconfig.a.json'. +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module as file / folder, candidate module location '/home/src/workspaces/project/aRandomFileForImport2', target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/aRandomFileForImport2.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] ======== Module name './aRandomFileForImport2' was successfully resolved to '/home/src/workspaces/project/aRandomFileForImport2.ts'. ======== +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/aRandomFileForImport.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/aRandomFileForImport2.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/bRandomFileForImport.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/pkg0.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/pkg0/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (12) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/cMain.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/node_modules/pkg0/index.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/aRandomFileForImport.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/aRandomFileForImport2.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/aFileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nexport { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport const y = 10;\n" + /home/src/workspaces/project/bRandomFileForImport.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/bFileWithImports.ts Text-1 "export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\nimport type { ImportInterface0 } from \"pkg0\";\n" + /home/src/workspaces/project/pkg0.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/cFileWithImports.ts Text-1 "import { y } from \"./bFileWithImports\";\nimport type { ImportInterface0 } from \"pkg0\";\n" + /home/src/workspaces/project/cRandomFileForImport.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/cRandomFileForImport2.ts Text-1 "export const x = 10;" + + + ../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + cMain.ts + Part of 'files' list in tsconfig.json + node_modules/pkg0/index.d.ts + Imported via "pkg0" from file 'aFileWithImports.ts' + Imported via "pkg0" from file 'bFileWithImports.ts' + aRandomFileForImport.ts + Imported via "./aRandomFileForImport" from file 'aFileWithImports.ts' + aRandomFileForImport2.ts + Imported via "./aRandomFileForImport2" from file 'aFileWithImports.ts' + aFileWithImports.ts + Imported via "./aFileWithImports" from file 'bFileWithImports.ts' + bRandomFileForImport.ts + Imported via "./bRandomFileForImport" from file 'bFileWithImports.ts' + bFileWithImports.ts + Imported via "./bFileWithImports" from file 'cFileWithImports.ts' + pkg0.d.ts + Imported via "pkg0" from file 'cFileWithImports.ts' + cFileWithImports.ts + Part of 'files' list in tsconfig.json + cRandomFileForImport.ts + Part of 'files' list in tsconfig.json + cRandomFileForImport2.ts + Part of 'files' list in tsconfig.json + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/home/src/workspaces/project/tsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "c508fd683797f5f4c77b8519182a36985021d6361b6a0aa9c8b69f7e25d6e876", + "fileStats": { + "js": 0, + "jsSize": 0, + "jsx": 0, + "jsxSize": 0, + "ts": 9, + "tsSize": 498, + "tsx": 0, + "tsxSize": 0, + "dts": 3, + "dtsSize": 485, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "composite": true, + "traceResolution": true, + "module": "amd" + }, + "typeAcquisition": { + "enable": false, + "include": false, + "exclude": false + }, + "extends": false, + "files": true, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "tsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/home/src/workspaces/project/cMain.ts", + "configFile": "/home/src/workspaces/project/tsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/project/tsconfig.json ProjectRootPath: undefined:: Result: undefined +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (12) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/cMain.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 1, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/home/src/workspaces/node_modules/@types: *new* + {"pollingInterval":500} +/home/src/workspaces/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/@types: *new* + {"pollingInterval":500} +/home/src/workspaces/project/node_modules/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/pkg0/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/package.json: *new* + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: *new* + {} +/home/src/workspaces/project: *new* + {} +/home/src/workspaces/project/aFileWithImports.ts: *new* + {} +/home/src/workspaces/project/aRandomFileForImport.ts: *new* + {} +/home/src/workspaces/project/aRandomFileForImport2.ts: *new* + {} +/home/src/workspaces/project/bFileWithImports.ts: *new* + {} +/home/src/workspaces/project/bRandomFileForImport.ts: *new* + {} +/home/src/workspaces/project/cFileWithImports.ts: *new* + {} +/home/src/workspaces/project/cRandomFileForImport.ts: *new* + {} +/home/src/workspaces/project/cRandomFileForImport2.ts: *new* + {} +/home/src/workspaces/project/pkg0.d.ts: *new* + {} +/home/src/workspaces/project/tsconfig.a.json: *new* + {} +/home/src/workspaces/project/tsconfig.b.json: *new* + {} +/home/src/workspaces/project/tsconfig.json: *new* + {} + +FsWatchesRecursive:: +/home/src/workspaces/project/node_modules: *new* + {} + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/aFileWithImports.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/aRandomFileForImport.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/aRandomFileForImport2.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/bFileWithImports.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/bRandomFileForImport.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/cFileWithImports.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/cMain.ts (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/cRandomFileForImport.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/cRandomFileForImport2.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg0/index.d.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/pkg0.d.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +modify cRandomFileForImport by adding import +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /home/src/workspaces/project/cRandomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/cRandomFileForImport.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/cRandomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/cRandomFileForImport.ts 500 undefined WatchType: Closed Script info +Before running Timeout callback:: count: 2 +1: /home/src/workspaces/project/tsconfig.json +2: *ensureProjectForOpenFiles* +//// [/home/src/workspaces/project/cRandomFileForImport.ts] +export type { ImportInterface0 } from "pkg0"; +export const x = 10; + + +Timeout callback:: count: 2 +1: /home/src/workspaces/project/tsconfig.json *new* +2: *ensureProjectForOpenFiles* *new* + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 2 *changed* + projectProgramVersion: 1 + dirty: true *changed* + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/aFileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/aRandomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/aRandomFileForImport2.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/bFileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/bRandomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/cFileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/cMain.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/cRandomFileForImport.ts *changed* + version: Text-1 + pendingReloadFromDisk: true *changed* + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/cRandomFileForImport2.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg0/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/pkg0.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module './bFileWithImports' from '/home/src/workspaces/project/cFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/bFileWithImports.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/cFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/pkg0.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module './aFileWithImports' from '/home/src/workspaces/project/bFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/aFileWithImports.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module './bRandomFileForImport' from '/home/src/workspaces/project/bFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/bRandomFileForImport.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/bFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/aFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module './aRandomFileForImport' from '/home/src/workspaces/project/aFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/aRandomFileForImport.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module './aRandomFileForImport2' from '/home/src/workspaces/project/aFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/aRandomFileForImport2.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/cRandomFileForImport.ts'. ======== +Info seq [hh:mm:ss:mss] Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/pkg0.d.ts'. ======== +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (12) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/cMain.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/node_modules/pkg0/index.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/aRandomFileForImport.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/aRandomFileForImport2.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/aFileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nexport { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport const y = 10;\n" + /home/src/workspaces/project/bRandomFileForImport.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/bFileWithImports.ts Text-1 "export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\nimport type { ImportInterface0 } from \"pkg0\";\n" + /home/src/workspaces/project/pkg0.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/cFileWithImports.ts Text-1 "import { y } from \"./bFileWithImports\";\nimport type { ImportInterface0 } from \"pkg0\";\n" + /home/src/workspaces/project/cRandomFileForImport.ts Text-2 "export type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/cRandomFileForImport2.ts Text-1 "export const x = 10;" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (12) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/cMain.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (12) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/cMain.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /home/src/workspaces/project/cMain.ts +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/home/src/workspaces/project/cMain.ts" + ] + } + } +After running Timeout callback:: count: 0 + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 2 + projectProgramVersion: 2 *changed* + dirty: false *changed* + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/aFileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/aRandomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/aRandomFileForImport2.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/bFileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/bRandomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/cFileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/cMain.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/cRandomFileForImport.ts *changed* + version: Text-2 *changed* + pendingReloadFromDisk: false *changed* + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/cRandomFileForImport2.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg0/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/pkg0.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +Before request + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/home/src/workspaces/project/bMain.ts" + }, + "seq": 2, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/project/bMain.ts ProjectRootPath: undefined:: Result: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /home/src/workspaces/project/tsconfig.b.json, currentDirectory: /home/src/workspaces/project +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/home/src/workspaces/project/tsconfig.b.json", + "reason": "Creating project referenced in solution /home/src/workspaces/project/tsconfig.json to find possible configured project for /home/src/workspaces/project/bMain.ts to open" + } + } +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/bRandomFileForImport2.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.b.json +Info seq [hh:mm:ss:mss] ======== Resolving module './aFileWithImports' from '/home/src/workspaces/project/bFileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Resolution for module './aFileWithImports' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name './aFileWithImports' was successfully resolved to '/home/src/workspaces/project/aFileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] ======== Resolving module './bRandomFileForImport' from '/home/src/workspaces/project/bFileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Resolution for module './bRandomFileForImport' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name './bRandomFileForImport' was successfully resolved to '/home/src/workspaces/project/bRandomFileForImport.ts'. ======== +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/bFileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/aFileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Using compiler options of project reference redirect '/home/src/workspaces/project/tsconfig.a.json'. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] ======== Resolving module './aRandomFileForImport' from '/home/src/workspaces/project/aFileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Using compiler options of project reference redirect '/home/src/workspaces/project/tsconfig.a.json'. +Info seq [hh:mm:ss:mss] Resolution for module './aRandomFileForImport' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name './aRandomFileForImport' was successfully resolved to '/home/src/workspaces/project/aRandomFileForImport.ts'. ======== +Info seq [hh:mm:ss:mss] ======== Resolving module './aRandomFileForImport2' from '/home/src/workspaces/project/aFileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Using compiler options of project reference redirect '/home/src/workspaces/project/tsconfig.a.json'. +Info seq [hh:mm:ss:mss] Resolution for module './aRandomFileForImport2' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name './aRandomFileForImport2' was successfully resolved to '/home/src/workspaces/project/aRandomFileForImport2.ts'. ======== +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.b.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.b.json' (Configured) +Info seq [hh:mm:ss:mss] Files (9) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/bMain.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/node_modules/pkg0/index.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/aRandomFileForImport.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/aRandomFileForImport2.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/aFileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nexport { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport const y = 10;\n" + /home/src/workspaces/project/bRandomFileForImport.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/bFileWithImports.ts Text-1 "export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\nimport type { ImportInterface0 } from \"pkg0\";\n" + /home/src/workspaces/project/bRandomFileForImport2.ts Text-1 "export const x = 10;" + + + ../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + bMain.ts + Part of 'files' list in tsconfig.json + node_modules/pkg0/index.d.ts + Imported via "pkg0" from file 'aFileWithImports.ts' + Imported via "pkg0" from file 'bFileWithImports.ts' + aRandomFileForImport.ts + Imported via "./aRandomFileForImport" from file 'aFileWithImports.ts' + aRandomFileForImport2.ts + Imported via "./aRandomFileForImport2" from file 'aFileWithImports.ts' + aFileWithImports.ts + Imported via "./aFileWithImports" from file 'bFileWithImports.ts' + bRandomFileForImport.ts + Imported via "./bRandomFileForImport" from file 'bFileWithImports.ts' + Part of 'files' list in tsconfig.json + bFileWithImports.ts + Part of 'files' list in tsconfig.json + bRandomFileForImport2.ts + Part of 'files' list in tsconfig.json + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/home/src/workspaces/project/tsconfig.b.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "73c540e802376e55b9fbc269476ae9d94f06444273cd1059a823c9dc01856649", + "fileStats": { + "js": 0, + "jsSize": 0, + "jsx": 0, + "jsxSize": 0, + "ts": 7, + "tsSize": 392, + "tsx": 0, + "tsxSize": 0, + "dts": 2, + "dtsSize": 449, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "composite": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false, + "include": false, + "exclude": false + }, + "extends": false, + "files": true, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "other", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/home/src/workspaces/project/bMain.ts", + "configFile": "/home/src/workspaces/project/tsconfig.b.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/project/tsconfig.json ProjectRootPath: undefined:: Result: undefined +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (12) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.b.json' (Configured) +Info seq [hh:mm:ss:mss] Files (9) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/cMain.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/bMain.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.b.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 2, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/home/src/workspaces/node_modules/@types: + {"pollingInterval":500} +/home/src/workspaces/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/@types: + {"pollingInterval":500} +/home/src/workspaces/project/node_modules/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/pkg0/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/home/src/workspaces/project: + {} +/home/src/workspaces/project/aFileWithImports.ts: + {} +/home/src/workspaces/project/aRandomFileForImport.ts: + {} +/home/src/workspaces/project/aRandomFileForImport2.ts: + {} +/home/src/workspaces/project/bFileWithImports.ts: + {} +/home/src/workspaces/project/bRandomFileForImport.ts: + {} +/home/src/workspaces/project/bRandomFileForImport2.ts: *new* + {} +/home/src/workspaces/project/cFileWithImports.ts: + {} +/home/src/workspaces/project/cRandomFileForImport.ts: + {} +/home/src/workspaces/project/cRandomFileForImport2.ts: + {} +/home/src/workspaces/project/pkg0.d.ts: + {} +/home/src/workspaces/project/tsconfig.a.json: + {} +/home/src/workspaces/project/tsconfig.b.json: + {} +/home/src/workspaces/project/tsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/workspaces/project/node_modules: + {} + +Projects:: +/home/src/workspaces/project/tsconfig.b.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/home/src/workspaces/project/tsconfig.json (Configured) + projectStateVersion: 2 + projectProgramVersion: 2 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts *changed* + version: Text-1 + containingProjects: 2 *changed* + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.b.json *new* +/home/src/workspaces/project/aFileWithImports.ts *changed* + version: Text-1 + containingProjects: 2 *changed* + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.b.json *new* +/home/src/workspaces/project/aRandomFileForImport.ts *changed* + version: Text-1 + containingProjects: 2 *changed* + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.b.json *new* +/home/src/workspaces/project/aRandomFileForImport2.ts *changed* + version: Text-1 + containingProjects: 2 *changed* + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.b.json *new* +/home/src/workspaces/project/bFileWithImports.ts *changed* + version: Text-1 + containingProjects: 2 *changed* + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.b.json *new* +/home/src/workspaces/project/bMain.ts (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json *default* +/home/src/workspaces/project/bRandomFileForImport.ts *changed* + version: Text-1 + containingProjects: 2 *changed* + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.b.json *new* +/home/src/workspaces/project/bRandomFileForImport2.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/cFileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/cMain.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/cRandomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/cRandomFileForImport2.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg0/index.d.ts *changed* + version: Text-1 + containingProjects: 2 *changed* + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.b.json *new* +/home/src/workspaces/project/pkg0.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +Info seq [hh:mm:ss:mss] modify bRandomFileForImport by adding import +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /home/src/workspaces/project/bRandomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/bRandomFileForImport.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.b.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/bRandomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/bRandomFileForImport.ts 500 undefined WatchType: Closed Script info +Before running Timeout callback:: count: 3 +3: /home/src/workspaces/project/tsconfig.json +4: /home/src/workspaces/project/tsconfig.b.json +5: *ensureProjectForOpenFiles* +//// [/home/src/workspaces/project/bRandomFileForImport.ts] +export type { ImportInterface0 } from "pkg0"; +export const x = 10; + + +Timeout callback:: count: 3 +3: /home/src/workspaces/project/tsconfig.json *new* +4: /home/src/workspaces/project/tsconfig.b.json *new* +5: *ensureProjectForOpenFiles* *new* + +Projects:: +/home/src/workspaces/project/tsconfig.b.json (Configured) *changed* + projectStateVersion: 2 *changed* + projectProgramVersion: 1 + dirty: true *changed* + autoImportProviderHost: false +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 3 *changed* + projectProgramVersion: 2 + dirty: true *changed* + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 2 + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/aFileWithImports.ts + version: Text-1 + containingProjects: 2 + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/aRandomFileForImport.ts + version: Text-1 + containingProjects: 2 + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/aRandomFileForImport2.ts + version: Text-1 + containingProjects: 2 + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/bFileWithImports.ts + version: Text-1 + containingProjects: 2 + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/bMain.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json *default* +/home/src/workspaces/project/bRandomFileForImport.ts *changed* + version: Text-1 + pendingReloadFromDisk: true *changed* + containingProjects: 2 + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/bRandomFileForImport2.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/cFileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/cMain.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/cRandomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/cRandomFileForImport2.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg0/index.d.ts + version: Text-1 + containingProjects: 2 + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/pkg0.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module './bFileWithImports' from '/home/src/workspaces/project/cFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/bFileWithImports.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/cFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/pkg0.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module './aFileWithImports' from '/home/src/workspaces/project/bFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/aFileWithImports.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module './bRandomFileForImport' from '/home/src/workspaces/project/bFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/bRandomFileForImport.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/bFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/aFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module './aRandomFileForImport' from '/home/src/workspaces/project/aFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/aRandomFileForImport.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module './aRandomFileForImport2' from '/home/src/workspaces/project/aFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/aRandomFileForImport2.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/bRandomFileForImport.ts'. ======== +Info seq [hh:mm:ss:mss] Using compiler options of project reference redirect '/home/src/workspaces/project/tsconfig.b.json'. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/cRandomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/pkg0.d.ts'. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 3 projectProgramVersion: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (12) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/cMain.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/node_modules/pkg0/index.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/aRandomFileForImport.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/aRandomFileForImport2.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/aFileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nexport { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport const y = 10;\n" + /home/src/workspaces/project/bRandomFileForImport.ts Text-2 "export type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/bFileWithImports.ts Text-1 "export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\nimport type { ImportInterface0 } from \"pkg0\";\n" + /home/src/workspaces/project/pkg0.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/cFileWithImports.ts Text-1 "import { y } from \"./bFileWithImports\";\nimport type { ImportInterface0 } from \"pkg0\";\n" + /home/src/workspaces/project/cRandomFileForImport.ts Text-2 "export type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/cRandomFileForImport2.ts Text-1 "export const x = 10;" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/tsconfig.b.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.b.json +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module './aFileWithImports' from '/home/src/workspaces/project/bFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/aFileWithImports.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module './bRandomFileForImport' from '/home/src/workspaces/project/bFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/bRandomFileForImport.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/bFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/aFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module './aRandomFileForImport' from '/home/src/workspaces/project/aFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/aRandomFileForImport.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module './aRandomFileForImport2' from '/home/src/workspaces/project/aFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/aRandomFileForImport2.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/bRandomFileForImport.ts'. ======== +Info seq [hh:mm:ss:mss] Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.b.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.b.json' (Configured) +Info seq [hh:mm:ss:mss] Files (9) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/bMain.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/node_modules/pkg0/index.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/aRandomFileForImport.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/aRandomFileForImport2.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/aFileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nexport { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport const y = 10;\n" + /home/src/workspaces/project/bRandomFileForImport.ts Text-2 "export type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/bFileWithImports.ts Text-1 "export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\nimport type { ImportInterface0 } from \"pkg0\";\n" + /home/src/workspaces/project/bRandomFileForImport2.ts Text-1 "export const x = 10;" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (12) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.b.json' (Configured) +Info seq [hh:mm:ss:mss] Files (9) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/cMain.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/bMain.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.b.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (12) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.b.json' (Configured) +Info seq [hh:mm:ss:mss] Files (9) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/cMain.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/bMain.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.b.json +Info seq [hh:mm:ss:mss] got projects updated in background /home/src/workspaces/project/cMain.ts,/home/src/workspaces/project/bMain.ts +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/home/src/workspaces/project/cMain.ts", + "/home/src/workspaces/project/bMain.ts" + ] + } + } +After running Timeout callback:: count: 0 + +Projects:: +/home/src/workspaces/project/tsconfig.b.json (Configured) *changed* + projectStateVersion: 2 + projectProgramVersion: 2 *changed* + dirty: false *changed* + autoImportProviderHost: false +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 3 + projectProgramVersion: 3 *changed* + dirty: false *changed* + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 2 + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/aFileWithImports.ts + version: Text-1 + containingProjects: 2 + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/aRandomFileForImport.ts + version: Text-1 + containingProjects: 2 + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/aRandomFileForImport2.ts + version: Text-1 + containingProjects: 2 + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/bFileWithImports.ts + version: Text-1 + containingProjects: 2 + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/bMain.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json *default* +/home/src/workspaces/project/bRandomFileForImport.ts *changed* + version: Text-2 *changed* + pendingReloadFromDisk: false *changed* + containingProjects: 2 + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/bRandomFileForImport2.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/cFileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/cMain.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/cRandomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/cRandomFileForImport2.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg0/index.d.ts + version: Text-1 + containingProjects: 2 + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/pkg0.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +Before request + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/home/src/workspaces/project/aMain.ts" + }, + "seq": 3, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/project/aMain.ts ProjectRootPath: undefined:: Result: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /home/src/workspaces/project/tsconfig.a.json, currentDirectory: /home/src/workspaces/project +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/home/src/workspaces/project/tsconfig.a.json", + "reason": "Creating project referenced in solution /home/src/workspaces/project/tsconfig.json to find possible configured project for /home/src/workspaces/project/aMain.ts to open" + } + } +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.a.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/aFileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] ======== Resolving module './aRandomFileForImport' from '/home/src/workspaces/project/aFileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Resolution for module './aRandomFileForImport' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name './aRandomFileForImport' was successfully resolved to '/home/src/workspaces/project/aRandomFileForImport.ts'. ======== +Info seq [hh:mm:ss:mss] ======== Resolving module './aRandomFileForImport2' from '/home/src/workspaces/project/aFileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Resolution for module './aRandomFileForImport2' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name './aRandomFileForImport2' was successfully resolved to '/home/src/workspaces/project/aRandomFileForImport2.ts'. ======== +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.a.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.a.json' (Configured) +Info seq [hh:mm:ss:mss] Files (6) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/aMain.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/node_modules/pkg0/index.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/aRandomFileForImport.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/aRandomFileForImport2.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/aFileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nexport { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport const y = 10;\n" + + + ../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + aMain.ts + Part of 'files' list in tsconfig.json + node_modules/pkg0/index.d.ts + Imported via "pkg0" from file 'aFileWithImports.ts' + aRandomFileForImport.ts + Imported via "./aRandomFileForImport" from file 'aFileWithImports.ts' + Part of 'files' list in tsconfig.json + aRandomFileForImport2.ts + Imported via "./aRandomFileForImport2" from file 'aFileWithImports.ts' + Part of 'files' list in tsconfig.json + aFileWithImports.ts + Part of 'files' list in tsconfig.json + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/home/src/workspaces/project/tsconfig.a.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "5c3604817af33290066ae1a9079dd39814f1ebd45b5625f71913cd67682ee3c2", + "fileStats": { + "js": 0, + "jsSize": 0, + "jsx": 0, + "jsxSize": 0, + "ts": 4, + "tsSize": 222, + "tsx": 0, + "tsxSize": 0, + "dts": 2, + "dtsSize": 449, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "composite": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false, + "include": false, + "exclude": false + }, + "extends": false, + "files": true, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "other", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/home/src/workspaces/project/aMain.ts", + "configFile": "/home/src/workspaces/project/tsconfig.a.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/project/tsconfig.json ProjectRootPath: undefined:: Result: undefined +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (12) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.b.json' (Configured) +Info seq [hh:mm:ss:mss] Files (9) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.a.json' (Configured) +Info seq [hh:mm:ss:mss] Files (6) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/cMain.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/bMain.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.b.json +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/aMain.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.a.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 3, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +Projects:: +/home/src/workspaces/project/tsconfig.a.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/home/src/workspaces/project/tsconfig.b.json (Configured) + projectStateVersion: 2 + projectProgramVersion: 2 + autoImportProviderHost: false +/home/src/workspaces/project/tsconfig.json (Configured) + projectStateVersion: 3 + projectProgramVersion: 3 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts *changed* + version: Text-1 + containingProjects: 3 *changed* + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.a.json *new* +/home/src/workspaces/project/aFileWithImports.ts *changed* + version: Text-1 + containingProjects: 3 *changed* + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.a.json *new* +/home/src/workspaces/project/aMain.ts (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.a.json *default* +/home/src/workspaces/project/aRandomFileForImport.ts *changed* + version: Text-1 + containingProjects: 3 *changed* + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.a.json *new* +/home/src/workspaces/project/aRandomFileForImport2.ts *changed* + version: Text-1 + containingProjects: 3 *changed* + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.a.json *new* +/home/src/workspaces/project/bFileWithImports.ts + version: Text-1 + containingProjects: 2 + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/bMain.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json *default* +/home/src/workspaces/project/bRandomFileForImport.ts + version: Text-2 + containingProjects: 2 + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/bRandomFileForImport2.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/cFileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/cMain.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/cRandomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/cRandomFileForImport2.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg0/index.d.ts *changed* + version: Text-1 + containingProjects: 3 *changed* + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.a.json *new* +/home/src/workspaces/project/pkg0.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +Info seq [hh:mm:ss:mss] modify aRandomFileForImport by adding import +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /home/src/workspaces/project/aRandomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/aRandomFileForImport.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.b.json +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.a.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/aRandomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/aRandomFileForImport.ts 500 undefined WatchType: Closed Script info +Before running Timeout callback:: count: 4 +6: /home/src/workspaces/project/tsconfig.json +7: /home/src/workspaces/project/tsconfig.b.json +8: /home/src/workspaces/project/tsconfig.a.json +9: *ensureProjectForOpenFiles* +//// [/home/src/workspaces/project/aRandomFileForImport.ts] +export type { ImportInterface0 } from "pkg0"; +export const x = 10; + + +Timeout callback:: count: 4 +6: /home/src/workspaces/project/tsconfig.json *new* +7: /home/src/workspaces/project/tsconfig.b.json *new* +8: /home/src/workspaces/project/tsconfig.a.json *new* +9: *ensureProjectForOpenFiles* *new* + +Projects:: +/home/src/workspaces/project/tsconfig.a.json (Configured) *changed* + projectStateVersion: 2 *changed* + projectProgramVersion: 1 + dirty: true *changed* + autoImportProviderHost: false +/home/src/workspaces/project/tsconfig.b.json (Configured) *changed* + projectStateVersion: 3 *changed* + projectProgramVersion: 2 + dirty: true *changed* + autoImportProviderHost: false +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 4 *changed* + projectProgramVersion: 3 + dirty: true *changed* + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 3 + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.a.json +/home/src/workspaces/project/aFileWithImports.ts + version: Text-1 + containingProjects: 3 + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.a.json +/home/src/workspaces/project/aMain.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.a.json *default* +/home/src/workspaces/project/aRandomFileForImport.ts *changed* + version: Text-1 + pendingReloadFromDisk: true *changed* + containingProjects: 3 + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.a.json +/home/src/workspaces/project/aRandomFileForImport2.ts + version: Text-1 + containingProjects: 3 + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.a.json +/home/src/workspaces/project/bFileWithImports.ts + version: Text-1 + containingProjects: 2 + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/bMain.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json *default* +/home/src/workspaces/project/bRandomFileForImport.ts + version: Text-2 + containingProjects: 2 + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/bRandomFileForImport2.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/cFileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/cMain.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/cRandomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/cRandomFileForImport2.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg0/index.d.ts + version: Text-1 + containingProjects: 3 + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.a.json +/home/src/workspaces/project/pkg0.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module './bFileWithImports' from '/home/src/workspaces/project/cFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/bFileWithImports.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/cFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/pkg0.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module './aFileWithImports' from '/home/src/workspaces/project/bFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/aFileWithImports.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module './bRandomFileForImport' from '/home/src/workspaces/project/bFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/bRandomFileForImport.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/bFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/aFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module './aRandomFileForImport' from '/home/src/workspaces/project/aFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/aRandomFileForImport.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module './aRandomFileForImport2' from '/home/src/workspaces/project/aFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/aRandomFileForImport2.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/aRandomFileForImport.ts'. ======== +Info seq [hh:mm:ss:mss] Using compiler options of project reference redirect '/home/src/workspaces/project/tsconfig.a.json'. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/bRandomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/cRandomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/pkg0.d.ts'. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 4 projectProgramVersion: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (12) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/cMain.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/node_modules/pkg0/index.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/aRandomFileForImport.ts Text-2 "export type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/aRandomFileForImport2.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/aFileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nexport { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport const y = 10;\n" + /home/src/workspaces/project/bRandomFileForImport.ts Text-2 "export type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/bFileWithImports.ts Text-1 "export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\nimport type { ImportInterface0 } from \"pkg0\";\n" + /home/src/workspaces/project/pkg0.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/cFileWithImports.ts Text-1 "import { y } from \"./bFileWithImports\";\nimport type { ImportInterface0 } from \"pkg0\";\n" + /home/src/workspaces/project/cRandomFileForImport.ts Text-2 "export type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/cRandomFileForImport2.ts Text-1 "export const x = 10;" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/tsconfig.b.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.b.json +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module './aFileWithImports' from '/home/src/workspaces/project/bFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/aFileWithImports.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module './bRandomFileForImport' from '/home/src/workspaces/project/bFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/bRandomFileForImport.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/bFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/aFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module './aRandomFileForImport' from '/home/src/workspaces/project/aFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/aRandomFileForImport.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module './aRandomFileForImport2' from '/home/src/workspaces/project/aFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/aRandomFileForImport2.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/aRandomFileForImport.ts'. ======== +Info seq [hh:mm:ss:mss] Using compiler options of project reference redirect '/home/src/workspaces/project/tsconfig.a.json'. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/bRandomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.b.json projectStateVersion: 3 projectProgramVersion: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.b.json' (Configured) +Info seq [hh:mm:ss:mss] Files (9) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/bMain.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/node_modules/pkg0/index.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/aRandomFileForImport.ts Text-2 "export type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/aRandomFileForImport2.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/aFileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nexport { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport const y = 10;\n" + /home/src/workspaces/project/bRandomFileForImport.ts Text-2 "export type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/bFileWithImports.ts Text-1 "export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\nimport type { ImportInterface0 } from \"pkg0\";\n" + /home/src/workspaces/project/bRandomFileForImport2.ts Text-1 "export const x = 10;" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/tsconfig.a.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.a.json +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/aFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module './aRandomFileForImport' from '/home/src/workspaces/project/aFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/aRandomFileForImport.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module './aRandomFileForImport2' from '/home/src/workspaces/project/aFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/aRandomFileForImport2.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/aRandomFileForImport.ts'. ======== +Info seq [hh:mm:ss:mss] Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.a.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.a.json' (Configured) +Info seq [hh:mm:ss:mss] Files (6) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/aMain.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/node_modules/pkg0/index.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/aRandomFileForImport.ts Text-2 "export type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/aRandomFileForImport2.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/aFileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nexport { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport const y = 10;\n" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (12) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.b.json' (Configured) +Info seq [hh:mm:ss:mss] Files (9) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.a.json' (Configured) +Info seq [hh:mm:ss:mss] Files (6) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/cMain.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/bMain.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.b.json +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/aMain.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.a.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (12) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.b.json' (Configured) +Info seq [hh:mm:ss:mss] Files (9) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.a.json' (Configured) +Info seq [hh:mm:ss:mss] Files (6) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/cMain.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/bMain.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.b.json +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/aMain.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.a.json +Info seq [hh:mm:ss:mss] got projects updated in background /home/src/workspaces/project/cMain.ts,/home/src/workspaces/project/bMain.ts,/home/src/workspaces/project/aMain.ts +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/home/src/workspaces/project/cMain.ts", + "/home/src/workspaces/project/bMain.ts", + "/home/src/workspaces/project/aMain.ts" + ] + } + } +After running Timeout callback:: count: 0 + +Projects:: +/home/src/workspaces/project/tsconfig.a.json (Configured) *changed* + projectStateVersion: 2 + projectProgramVersion: 2 *changed* + dirty: false *changed* + autoImportProviderHost: false +/home/src/workspaces/project/tsconfig.b.json (Configured) *changed* + projectStateVersion: 3 + projectProgramVersion: 3 *changed* + dirty: false *changed* + autoImportProviderHost: false +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 4 + projectProgramVersion: 4 *changed* + dirty: false *changed* + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 3 + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.a.json +/home/src/workspaces/project/aFileWithImports.ts + version: Text-1 + containingProjects: 3 + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.a.json +/home/src/workspaces/project/aMain.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.a.json *default* +/home/src/workspaces/project/aRandomFileForImport.ts *changed* + version: Text-2 *changed* + pendingReloadFromDisk: false *changed* + containingProjects: 3 + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.a.json +/home/src/workspaces/project/aRandomFileForImport2.ts + version: Text-1 + containingProjects: 3 + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.a.json +/home/src/workspaces/project/bFileWithImports.ts + version: Text-1 + containingProjects: 2 + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/bMain.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json *default* +/home/src/workspaces/project/bRandomFileForImport.ts + version: Text-2 + containingProjects: 2 + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/bRandomFileForImport2.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/cFileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/cMain.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/cRandomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/cRandomFileForImport2.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg0/index.d.ts + version: Text-1 + containingProjects: 3 + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.a.json +/home/src/workspaces/project/pkg0.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json diff --git a/tests/baselines/reference/tsserver/resolutionCache/multiple-projects.js b/tests/baselines/reference/tsserver/resolutionCache/multiple-projects.js new file mode 100644 index 0000000000000..aef8ea54accdb --- /dev/null +++ b/tests/baselines/reference/tsserver/resolutionCache/multiple-projects.js @@ -0,0 +1,2439 @@ +Info seq [hh:mm:ss:mss] currentDirectory:: /home/src/Vscode/Projects/bin useCaseSensitiveFileNames:: false +Info seq [hh:mm:ss:mss] libs Location:: /home/src/tslibs/TS/Lib +Info seq [hh:mm:ss:mss] globalTypingsCacheLocation:: /home/src/Library/Caches/typescript +Info seq [hh:mm:ss:mss] Provided types map file "/home/src/tslibs/TS/Lib/typesMap.json" doesn't exist +Before request +//// [/home/src/workspaces/project/tsconfig.a.json] +{ + "compilerOptions": { + "composite": true, + "traceResolution": true + }, + "files": [ + "aMain.ts", + "aFileWithImports.ts", + "aRandomFileForImport.ts", + "aRandomFileForImport2.ts" + ] +} + +//// [/home/src/workspaces/project/aMain.ts] +export const x = 10; + +//// [/home/src/workspaces/project/aFileWithImports.ts] +import type { ImportInterface0 } from "pkg0"; +export { x } from "./aRandomFileForImport"; +export { x as x2 } from "./aRandomFileForImport2"; +export const y = 10; + + +//// [/home/src/workspaces/project/aRandomFileForImport.ts] +export const x = 10; + +//// [/home/src/workspaces/project/aRandomFileForImport2.ts] +export const x = 10; + +//// [/home/src/workspaces/project/node_modules/pkg0/index.d.ts] +export interface ImportInterface0 {} + +//// [/home/src/workspaces/project/tsconfig.b.json] +{ + "compilerOptions": { + "composite": true, + "traceResolution": true + }, + "files": [ + "bMain.ts", + "bFileWithImports.ts", + "bRandomFileForImport.ts", + "bRandomFileForImport2.ts" + ], + "references": [ + { + "path": "./tsconfig.a.json" + } + ] +} + +//// [/home/src/workspaces/project/bMain.ts] +export const x = 10; + +//// [/home/src/workspaces/project/bFileWithImports.ts] +export { y } from "./aFileWithImports"; +export { x } from "./bRandomFileForImport"; +import type { ImportInterface0 } from "pkg0"; + + +//// [/home/src/workspaces/project/bRandomFileForImport.ts] +export const x = 10; + +//// [/home/src/workspaces/project/bRandomFileForImport2.ts] +export const x = 10; + +//// [/home/src/workspaces/project/tsconfig.json] +{ + "compilerOptions": { + "composite": true, + "traceResolution": true, + "module": "amd" + }, + "files": [ + "cMain.ts", + "cFileWithImports.ts", + "cRandomFileForImport.ts", + "cRandomFileForImport2.ts" + ], + "references": [ + { + "path": "./tsconfig.a.json" + }, + { + "path": "./tsconfig.b.json" + } + ] +} + +//// [/home/src/workspaces/project/cMain.ts] +export const x = 10; + +//// [/home/src/workspaces/project/cFileWithImports.ts] +import { y } from "./bFileWithImports"; +import type { ImportInterface0 } from "pkg0"; + + +//// [/home/src/workspaces/project/cRandomFileForImport.ts] +export const x = 10; + +//// [/home/src/workspaces/project/cRandomFileForImport2.ts] +export const x = 10; + +//// [/home/src/workspaces/project/pkg0.d.ts] +export interface ImportInterface0 {} + +//// [/home/src/tslibs/TS/Lib/lib.d.ts] +/// +interface Boolean {} +interface Function {} +interface CallableFunction {} +interface NewableFunction {} +interface IArguments {} +interface Number { toExponential: any; } +interface Object {} +interface RegExp {} +interface String { charAt: any; } +interface Array { length: number; [n: number]: T; } +interface ReadonlyArray {} +declare const console: { log(msg: any): void; }; + +//// [/home/src/workspaces/project/aMain.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/aMain.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/aRandomFileForImport.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/aRandomFileForImport.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/aRandomFileForImport2.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/aRandomFileForImport2.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/aFileWithImports.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.y = exports.x2 = exports.x = void 0; +var aRandomFileForImport_1 = require("./aRandomFileForImport"); +Object.defineProperty(exports, "x", { enumerable: true, get: function () { return aRandomFileForImport_1.x; } }); +var aRandomFileForImport2_1 = require("./aRandomFileForImport2"); +Object.defineProperty(exports, "x2", { enumerable: true, get: function () { return aRandomFileForImport2_1.x; } }); +exports.y = 10; + + +//// [/home/src/workspaces/project/aFileWithImports.d.ts] +export { x } from "./aRandomFileForImport"; +export { x as x2 } from "./aRandomFileForImport2"; +export declare const y = 10; + + +//// [/home/src/workspaces/project/tsconfig.a.tsbuildinfo] +{"fileNames":["../../tslibs/ts/lib/lib.d.ts","./amain.ts","./node_modules/pkg0/index.d.ts","./arandomfileforimport.ts","./arandomfileforimport2.ts","./afilewithimports.ts"],"fileIdsList":[[3,4,5]],"fileInfos":[{"version":"3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n"},{"version":"769951468-export interface ImportInterface0 {}","impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n"},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n"},{"version":"25172849050-import type { ImportInterface0 } from \"pkg0\";\nexport { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport const y = 10;\n","signature":"-19407286966-export { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport declare const y = 10;\n"}],"root":[2,[4,6]],"options":{"composite":true},"referencedMap":[[6,1]],"latestChangedDtsFile":"./aFileWithImports.d.ts","version":"FakeTSVersion"} + +//// [/home/src/workspaces/project/tsconfig.a.tsbuildinfo.readable.baseline.txt] +{ + "fileNames": [ + "../../tslibs/ts/lib/lib.d.ts", + "./amain.ts", + "./node_modules/pkg0/index.d.ts", + "./arandomfileforimport.ts", + "./arandomfileforimport2.ts", + "./afilewithimports.ts" + ], + "fileIdsList": [ + [ + "./node_modules/pkg0/index.d.ts", + "./arandomfileforimport.ts", + "./arandomfileforimport2.ts" + ] + ], + "fileInfos": { + "../../tslibs/ts/lib/lib.d.ts": { + "original": { + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true + }, + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "signature": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true + }, + "./amain.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./node_modules/pkg0/index.d.ts": { + "original": { + "version": "769951468-export interface ImportInterface0 {}", + "impliedFormat": 1 + }, + "version": "769951468-export interface ImportInterface0 {}", + "signature": "769951468-export interface ImportInterface0 {}", + "impliedFormat": "commonjs" + }, + "./arandomfileforimport.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./arandomfileforimport2.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./afilewithimports.ts": { + "original": { + "version": "25172849050-import type { ImportInterface0 } from \"pkg0\";\nexport { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport const y = 10;\n", + "signature": "-19407286966-export { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport declare const y = 10;\n" + }, + "version": "25172849050-import type { ImportInterface0 } from \"pkg0\";\nexport { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport const y = 10;\n", + "signature": "-19407286966-export { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport declare const y = 10;\n" + } + }, + "root": [ + [ + 2, + "./amain.ts" + ], + [ + [ + 4, + 6 + ], + [ + "./arandomfileforimport.ts", + "./arandomfileforimport2.ts", + "./afilewithimports.ts" + ] + ] + ], + "options": { + "composite": true + }, + "referencedMap": { + "./afilewithimports.ts": [ + "./node_modules/pkg0/index.d.ts", + "./arandomfileforimport.ts", + "./arandomfileforimport2.ts" + ] + }, + "latestChangedDtsFile": "./aFileWithImports.d.ts", + "version": "FakeTSVersion", + "size": 1587 +} + +//// [/home/src/workspaces/project/bMain.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/bMain.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/bRandomFileForImport.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/bRandomFileForImport.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/bFileWithImports.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = exports.y = void 0; +var aFileWithImports_1 = require("./aFileWithImports"); +Object.defineProperty(exports, "y", { enumerable: true, get: function () { return aFileWithImports_1.y; } }); +var bRandomFileForImport_1 = require("./bRandomFileForImport"); +Object.defineProperty(exports, "x", { enumerable: true, get: function () { return bRandomFileForImport_1.x; } }); + + +//// [/home/src/workspaces/project/bFileWithImports.d.ts] +export { y } from "./aFileWithImports"; +export { x } from "./bRandomFileForImport"; + + +//// [/home/src/workspaces/project/bRandomFileForImport2.js] +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.x = void 0; +exports.x = 10; + + +//// [/home/src/workspaces/project/bRandomFileForImport2.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/tsconfig.b.tsbuildinfo] +{"fileNames":["../../tslibs/ts/lib/lib.d.ts","./bmain.ts","./arandomfileforimport.d.ts","./arandomfileforimport2.d.ts","./afilewithimports.d.ts","./brandomfileforimport.ts","./node_modules/pkg0/index.d.ts","./bfilewithimports.ts","./brandomfileforimport2.ts"],"fileIdsList":[[3,4],[5,6,7]],"fileInfos":[{"version":"3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n"},"-6821242887-export declare const x = 10;\n","-6821242887-export declare const x = 10;\n","-19407286966-export { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport declare const y = 10;\n",{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n"},{"version":"769951468-export interface ImportInterface0 {}","impliedFormat":1},{"version":"-16966571634-export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\nimport type { ImportInterface0 } from \"pkg0\";\n","signature":"-7362913554-export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\n"},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n"}],"root":[2,6,8,9],"options":{"composite":true},"referencedMap":[[5,1],[8,2]],"latestChangedDtsFile":"./bRandomFileForImport2.d.ts","version":"FakeTSVersion"} + +//// [/home/src/workspaces/project/tsconfig.b.tsbuildinfo.readable.baseline.txt] +{ + "fileNames": [ + "../../tslibs/ts/lib/lib.d.ts", + "./bmain.ts", + "./arandomfileforimport.d.ts", + "./arandomfileforimport2.d.ts", + "./afilewithimports.d.ts", + "./brandomfileforimport.ts", + "./node_modules/pkg0/index.d.ts", + "./bfilewithimports.ts", + "./brandomfileforimport2.ts" + ], + "fileIdsList": [ + [ + "./arandomfileforimport.d.ts", + "./arandomfileforimport2.d.ts" + ], + [ + "./afilewithimports.d.ts", + "./brandomfileforimport.ts", + "./node_modules/pkg0/index.d.ts" + ] + ], + "fileInfos": { + "../../tslibs/ts/lib/lib.d.ts": { + "original": { + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true + }, + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "signature": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true + }, + "./bmain.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./arandomfileforimport.d.ts": { + "version": "-6821242887-export declare const x = 10;\n", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./arandomfileforimport2.d.ts": { + "version": "-6821242887-export declare const x = 10;\n", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./afilewithimports.d.ts": { + "version": "-19407286966-export { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport declare const y = 10;\n", + "signature": "-19407286966-export { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport declare const y = 10;\n" + }, + "./brandomfileforimport.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./node_modules/pkg0/index.d.ts": { + "original": { + "version": "769951468-export interface ImportInterface0 {}", + "impliedFormat": 1 + }, + "version": "769951468-export interface ImportInterface0 {}", + "signature": "769951468-export interface ImportInterface0 {}", + "impliedFormat": "commonjs" + }, + "./bfilewithimports.ts": { + "original": { + "version": "-16966571634-export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\nimport type { ImportInterface0 } from \"pkg0\";\n", + "signature": "-7362913554-export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\n" + }, + "version": "-16966571634-export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\nimport type { ImportInterface0 } from \"pkg0\";\n", + "signature": "-7362913554-export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\n" + }, + "./brandomfileforimport2.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + } + }, + "root": [ + [ + 2, + "./bmain.ts" + ], + [ + 6, + "./brandomfileforimport.ts" + ], + [ + 8, + "./bfilewithimports.ts" + ], + [ + 9, + "./brandomfileforimport2.ts" + ] + ], + "options": { + "composite": true + }, + "referencedMap": { + "./afilewithimports.d.ts": [ + "./arandomfileforimport.d.ts", + "./arandomfileforimport2.d.ts" + ], + "./bfilewithimports.ts": [ + "./afilewithimports.d.ts", + "./brandomfileforimport.ts", + "./node_modules/pkg0/index.d.ts" + ] + }, + "latestChangedDtsFile": "./bRandomFileForImport2.d.ts", + "version": "FakeTSVersion", + "size": 1854 +} + +//// [/home/src/workspaces/project/cMain.js] +define(["require", "exports"], function (require, exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { value: true }); + exports.x = void 0; + exports.x = 10; +}); + + +//// [/home/src/workspaces/project/cMain.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/cFileWithImports.js] +define(["require", "exports"], function (require, exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { value: true }); +}); + + +//// [/home/src/workspaces/project/cFileWithImports.d.ts] +export {}; + + +//// [/home/src/workspaces/project/cRandomFileForImport.js] +define(["require", "exports"], function (require, exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { value: true }); + exports.x = void 0; + exports.x = 10; +}); + + +//// [/home/src/workspaces/project/cRandomFileForImport.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/cRandomFileForImport2.js] +define(["require", "exports"], function (require, exports) { + "use strict"; + Object.defineProperty(exports, "__esModule", { value: true }); + exports.x = void 0; + exports.x = 10; +}); + + +//// [/home/src/workspaces/project/cRandomFileForImport2.d.ts] +export declare const x = 10; + + +//// [/home/src/workspaces/project/tsconfig.tsbuildinfo] +{"fileNames":["../../tslibs/ts/lib/lib.d.ts","./cmain.ts","./arandomfileforimport.d.ts","./arandomfileforimport2.d.ts","./afilewithimports.d.ts","./brandomfileforimport.d.ts","./bfilewithimports.d.ts","./pkg0.d.ts","./cfilewithimports.ts","./crandomfileforimport.ts","./crandomfileforimport2.ts"],"fileIdsList":[[3,4],[5,6],[7,8]],"fileInfos":[{"version":"3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n"},"-6821242887-export declare const x = 10;\n","-6821242887-export declare const x = 10;\n","-19407286966-export { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport declare const y = 10;\n","-6821242887-export declare const x = 10;\n","-7362913554-export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\n","769951468-export interface ImportInterface0 {}",{"version":"-1053334089-import { y } from \"./bFileWithImports\";\nimport type { ImportInterface0 } from \"pkg0\";\n","signature":"-3531856636-export {};\n"},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n"},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n"}],"root":[2,[9,11]],"options":{"composite":true,"module":2},"referencedMap":[[5,1],[7,2],[9,3]],"latestChangedDtsFile":"./cRandomFileForImport2.d.ts","version":"FakeTSVersion"} + +//// [/home/src/workspaces/project/tsconfig.tsbuildinfo.readable.baseline.txt] +{ + "fileNames": [ + "../../tslibs/ts/lib/lib.d.ts", + "./cmain.ts", + "./arandomfileforimport.d.ts", + "./arandomfileforimport2.d.ts", + "./afilewithimports.d.ts", + "./brandomfileforimport.d.ts", + "./bfilewithimports.d.ts", + "./pkg0.d.ts", + "./cfilewithimports.ts", + "./crandomfileforimport.ts", + "./crandomfileforimport2.ts" + ], + "fileIdsList": [ + [ + "./arandomfileforimport.d.ts", + "./arandomfileforimport2.d.ts" + ], + [ + "./afilewithimports.d.ts", + "./brandomfileforimport.d.ts" + ], + [ + "./bfilewithimports.d.ts", + "./pkg0.d.ts" + ] + ], + "fileInfos": { + "../../tslibs/ts/lib/lib.d.ts": { + "original": { + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true + }, + "version": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "signature": "3858781397-/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };", + "affectsGlobalScope": true + }, + "./cmain.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./arandomfileforimport.d.ts": { + "version": "-6821242887-export declare const x = 10;\n", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./arandomfileforimport2.d.ts": { + "version": "-6821242887-export declare const x = 10;\n", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./afilewithimports.d.ts": { + "version": "-19407286966-export { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport declare const y = 10;\n", + "signature": "-19407286966-export { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport declare const y = 10;\n" + }, + "./brandomfileforimport.d.ts": { + "version": "-6821242887-export declare const x = 10;\n", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./bfilewithimports.d.ts": { + "version": "-7362913554-export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\n", + "signature": "-7362913554-export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\n" + }, + "./pkg0.d.ts": { + "version": "769951468-export interface ImportInterface0 {}", + "signature": "769951468-export interface ImportInterface0 {}" + }, + "./cfilewithimports.ts": { + "original": { + "version": "-1053334089-import { y } from \"./bFileWithImports\";\nimport type { ImportInterface0 } from \"pkg0\";\n", + "signature": "-3531856636-export {};\n" + }, + "version": "-1053334089-import { y } from \"./bFileWithImports\";\nimport type { ImportInterface0 } from \"pkg0\";\n", + "signature": "-3531856636-export {};\n" + }, + "./crandomfileforimport.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "./crandomfileforimport2.ts": { + "original": { + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + }, + "version": "-10726455937-export const x = 10;", + "signature": "-6821242887-export declare const x = 10;\n" + } + }, + "root": [ + [ + 2, + "./cmain.ts" + ], + [ + [ + 9, + 11 + ], + [ + "./cfilewithimports.ts", + "./crandomfileforimport.ts", + "./crandomfileforimport2.ts" + ] + ] + ], + "options": { + "composite": true, + "module": 2 + }, + "referencedMap": { + "./afilewithimports.d.ts": [ + "./arandomfileforimport.d.ts", + "./arandomfileforimport2.d.ts" + ], + "./bfilewithimports.d.ts": [ + "./afilewithimports.d.ts", + "./brandomfileforimport.d.ts" + ], + "./cfilewithimports.ts": [ + "./bfilewithimports.d.ts", + "./pkg0.d.ts" + ] + }, + "latestChangedDtsFile": "./cRandomFileForImport2.d.ts", + "version": "FakeTSVersion", + "size": 1907 +} + + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/home/src/workspaces/project/bMain.ts" + }, + "seq": 1, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/project/bMain.ts ProjectRootPath: undefined:: Result: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /home/src/workspaces/project/tsconfig.json, currentDirectory: /home/src/workspaces/project +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/tsconfig.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /home/src/workspaces/project/tsconfig.json : { + "rootNames": [ + "/home/src/workspaces/project/cMain.ts", + "/home/src/workspaces/project/cFileWithImports.ts", + "/home/src/workspaces/project/cRandomFileForImport.ts", + "/home/src/workspaces/project/cRandomFileForImport2.ts" + ], + "options": { + "composite": true, + "traceResolution": true, + "module": 2, + "configFilePath": "/home/src/workspaces/project/tsconfig.json" + }, + "projectReferences": [ + { + "path": "/home/src/workspaces/project/tsconfig.a.json", + "originalPath": "./tsconfig.a.json" + }, + { + "path": "/home/src/workspaces/project/tsconfig.b.json", + "originalPath": "./tsconfig.b.json" + } + ] +} +Info seq [hh:mm:ss:mss] Config: /home/src/workspaces/project/tsconfig.a.json : { + "rootNames": [ + "/home/src/workspaces/project/aMain.ts", + "/home/src/workspaces/project/aFileWithImports.ts", + "/home/src/workspaces/project/aRandomFileForImport.ts", + "/home/src/workspaces/project/aRandomFileForImport2.ts" + ], + "options": { + "composite": true, + "traceResolution": true, + "configFilePath": "/home/src/workspaces/project/tsconfig.a.json" + } +} +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/tsconfig.a.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /home/src/workspaces/project/tsconfig.b.json : { + "rootNames": [ + "/home/src/workspaces/project/bMain.ts", + "/home/src/workspaces/project/bFileWithImports.ts", + "/home/src/workspaces/project/bRandomFileForImport.ts", + "/home/src/workspaces/project/bRandomFileForImport2.ts" + ], + "options": { + "composite": true, + "traceResolution": true, + "configFilePath": "/home/src/workspaces/project/tsconfig.b.json" + }, + "projectReferences": [ + { + "path": "/home/src/workspaces/project/tsconfig.a.json", + "originalPath": "./tsconfig.a.json" + } + ] +} +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/tsconfig.b.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /home/src/workspaces/project/tsconfig.b.json, currentDirectory: /home/src/workspaces/project +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/home/src/workspaces/project/tsconfig.b.json", + "reason": "Creating project referenced in solution /home/src/workspaces/project/tsconfig.json to find possible configured project for /home/src/workspaces/project/bMain.ts to open" + } + } +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/bFileWithImports.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/bRandomFileForImport.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/bRandomFileForImport2.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.b.json +Info seq [hh:mm:ss:mss] ======== Resolving module './aFileWithImports' from '/home/src/workspaces/project/bFileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module as file / folder, candidate module location '/home/src/workspaces/project/aFileWithImports', target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/aFileWithImports.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] ======== Module name './aFileWithImports' was successfully resolved to '/home/src/workspaces/project/aFileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] ======== Resolving module './bRandomFileForImport' from '/home/src/workspaces/project/bFileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module as file / folder, candidate module location '/home/src/workspaces/project/bRandomFileForImport', target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/bRandomFileForImport.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] ======== Module name './bRandomFileForImport' was successfully resolved to '/home/src/workspaces/project/bRandomFileForImport.ts'. ======== +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/bFileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/home/src/workspaces/project/node_modules/pkg0/index.d.ts', result '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.b.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.b.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/aFileWithImports.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/aFileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Using compiler options of project reference redirect '/home/src/workspaces/project/tsconfig.a.json'. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] ======== Resolving module './aRandomFileForImport' from '/home/src/workspaces/project/aFileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Using compiler options of project reference redirect '/home/src/workspaces/project/tsconfig.a.json'. +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module as file / folder, candidate module location '/home/src/workspaces/project/aRandomFileForImport', target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/aRandomFileForImport.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] ======== Module name './aRandomFileForImport' was successfully resolved to '/home/src/workspaces/project/aRandomFileForImport.ts'. ======== +Info seq [hh:mm:ss:mss] ======== Resolving module './aRandomFileForImport2' from '/home/src/workspaces/project/aFileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Using compiler options of project reference redirect '/home/src/workspaces/project/tsconfig.a.json'. +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module as file / folder, candidate module location '/home/src/workspaces/project/aRandomFileForImport2', target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/aRandomFileForImport2.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] ======== Module name './aRandomFileForImport2' was successfully resolved to '/home/src/workspaces/project/aRandomFileForImport2.ts'. ======== +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/aRandomFileForImport.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/aRandomFileForImport2.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/pkg0/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.b.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.b.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.b.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.b.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.b.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.b.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.b.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.b.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.b.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.b.json' (Configured) +Info seq [hh:mm:ss:mss] Files (9) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/bMain.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/node_modules/pkg0/index.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/aRandomFileForImport.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/aRandomFileForImport2.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/aFileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nexport { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport const y = 10;\n" + /home/src/workspaces/project/bRandomFileForImport.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/bFileWithImports.ts Text-1 "export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\nimport type { ImportInterface0 } from \"pkg0\";\n" + /home/src/workspaces/project/bRandomFileForImport2.ts Text-1 "export const x = 10;" + + + ../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + bMain.ts + Part of 'files' list in tsconfig.json + node_modules/pkg0/index.d.ts + Imported via "pkg0" from file 'aFileWithImports.ts' + Imported via "pkg0" from file 'bFileWithImports.ts' + aRandomFileForImport.ts + Imported via "./aRandomFileForImport" from file 'aFileWithImports.ts' + aRandomFileForImport2.ts + Imported via "./aRandomFileForImport2" from file 'aFileWithImports.ts' + aFileWithImports.ts + Imported via "./aFileWithImports" from file 'bFileWithImports.ts' + bRandomFileForImport.ts + Imported via "./bRandomFileForImport" from file 'bFileWithImports.ts' + Part of 'files' list in tsconfig.json + bFileWithImports.ts + Part of 'files' list in tsconfig.json + bRandomFileForImport2.ts + Part of 'files' list in tsconfig.json + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/home/src/workspaces/project/tsconfig.b.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "73c540e802376e55b9fbc269476ae9d94f06444273cd1059a823c9dc01856649", + "fileStats": { + "js": 0, + "jsSize": 0, + "jsx": 0, + "jsxSize": 0, + "ts": 7, + "tsSize": 392, + "tsx": 0, + "tsxSize": 0, + "dts": 2, + "dtsSize": 449, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "composite": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false, + "include": false, + "exclude": false + }, + "extends": false, + "files": true, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "other", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/home/src/workspaces/project/bMain.ts", + "configFile": "/home/src/workspaces/project/tsconfig.b.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/project/tsconfig.json ProjectRootPath: undefined:: Result: undefined +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (0) InitialLoadPending + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.b.json' (Configured) +Info seq [hh:mm:ss:mss] Files (9) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/bMain.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.b.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 1, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/home/src/workspaces/node_modules/@types: *new* + {"pollingInterval":500} +/home/src/workspaces/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/@types: *new* + {"pollingInterval":500} +/home/src/workspaces/project/node_modules/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/pkg0/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/package.json: *new* + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: *new* + {} +/home/src/workspaces/project/aFileWithImports.ts: *new* + {} +/home/src/workspaces/project/aRandomFileForImport.ts: *new* + {} +/home/src/workspaces/project/aRandomFileForImport2.ts: *new* + {} +/home/src/workspaces/project/bFileWithImports.ts: *new* + {} +/home/src/workspaces/project/bRandomFileForImport.ts: *new* + {} +/home/src/workspaces/project/bRandomFileForImport2.ts: *new* + {} +/home/src/workspaces/project/tsconfig.a.json: *new* + {} +/home/src/workspaces/project/tsconfig.b.json: *new* + {} +/home/src/workspaces/project/tsconfig.json: *new* + {} + +FsWatchesRecursive:: +/home/src/workspaces/project/node_modules: *new* + {} + +Projects:: +/home/src/workspaces/project/tsconfig.b.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/home/src/workspaces/project/tsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 0 + dirty: true + initialLoadPending: true + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/aFileWithImports.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/aRandomFileForImport.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/aRandomFileForImport2.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/bFileWithImports.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/bMain.ts (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json *default* +/home/src/workspaces/project/bRandomFileForImport.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/bRandomFileForImport2.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/node_modules/pkg0/index.d.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json + +modify bRandomFileForImport by adding import +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /home/src/workspaces/project/bRandomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/bRandomFileForImport.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.b.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/bRandomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/bRandomFileForImport.ts 500 undefined WatchType: Closed Script info +Before running Timeout callback:: count: 2 +1: /home/src/workspaces/project/tsconfig.b.json +2: *ensureProjectForOpenFiles* +//// [/home/src/workspaces/project/bRandomFileForImport.ts] +export type { ImportInterface0 } from "pkg0"; +export const x = 10; + + +Timeout callback:: count: 2 +1: /home/src/workspaces/project/tsconfig.b.json *new* +2: *ensureProjectForOpenFiles* *new* + +Projects:: +/home/src/workspaces/project/tsconfig.b.json (Configured) *changed* + projectStateVersion: 2 *changed* + projectProgramVersion: 1 + dirty: true *changed* + autoImportProviderHost: false +/home/src/workspaces/project/tsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 0 + dirty: true + initialLoadPending: true + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/aFileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/aRandomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/aRandomFileForImport2.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/bFileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/bMain.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json *default* +/home/src/workspaces/project/bRandomFileForImport.ts *changed* + version: Text-1 + pendingReloadFromDisk: true *changed* + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/bRandomFileForImport2.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/node_modules/pkg0/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/tsconfig.b.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.b.json +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module './aFileWithImports' from '/home/src/workspaces/project/bFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/aFileWithImports.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module './bRandomFileForImport' from '/home/src/workspaces/project/bFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/bRandomFileForImport.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/bFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/aFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module './aRandomFileForImport' from '/home/src/workspaces/project/aFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/aRandomFileForImport.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module './aRandomFileForImport2' from '/home/src/workspaces/project/aFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/aRandomFileForImport2.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/bRandomFileForImport.ts'. ======== +Info seq [hh:mm:ss:mss] Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.b.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.b.json' (Configured) +Info seq [hh:mm:ss:mss] Files (9) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/bMain.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/node_modules/pkg0/index.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/aRandomFileForImport.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/aRandomFileForImport2.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/aFileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nexport { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport const y = 10;\n" + /home/src/workspaces/project/bRandomFileForImport.ts Text-2 "export type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/bFileWithImports.ts Text-1 "export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\nimport type { ImportInterface0 } from \"pkg0\";\n" + /home/src/workspaces/project/bRandomFileForImport2.ts Text-1 "export const x = 10;" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (0) InitialLoadPending + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.b.json' (Configured) +Info seq [hh:mm:ss:mss] Files (9) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/bMain.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.b.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (0) InitialLoadPending + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.b.json' (Configured) +Info seq [hh:mm:ss:mss] Files (9) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/bMain.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.b.json +Info seq [hh:mm:ss:mss] got projects updated in background /home/src/workspaces/project/bMain.ts +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/home/src/workspaces/project/bMain.ts" + ] + } + } +After running Timeout callback:: count: 0 + +Projects:: +/home/src/workspaces/project/tsconfig.b.json (Configured) *changed* + projectStateVersion: 2 + projectProgramVersion: 2 *changed* + dirty: false *changed* + autoImportProviderHost: false +/home/src/workspaces/project/tsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 0 + dirty: true + initialLoadPending: true + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/aFileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/aRandomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/aRandomFileForImport2.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/bFileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/bMain.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json *default* +/home/src/workspaces/project/bRandomFileForImport.ts *changed* + version: Text-2 *changed* + pendingReloadFromDisk: false *changed* + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/bRandomFileForImport2.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/node_modules/pkg0/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json + +Before request + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/home/src/workspaces/project/cMain.ts" + }, + "seq": 2, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/project/cMain.ts ProjectRootPath: undefined:: Result: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/home/src/workspaces/project/tsconfig.json", + "reason": "Creating possible configured project for /home/src/workspaces/project/bMain.ts to open" + } + } +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/cFileWithImports.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/cRandomFileForImport.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/cRandomFileForImport2.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module './bFileWithImports' from '/home/src/workspaces/project/cFileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Classic'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/bFileWithImports.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] ======== Module name './bFileWithImports' was successfully resolved to '/home/src/workspaces/project/bFileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/cFileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Classic'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/pkg0.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/pkg0.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/pkg0.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/pkg0.d.ts'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] ======== Resolving module './aFileWithImports' from '/home/src/workspaces/project/bFileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Using compiler options of project reference redirect '/home/src/workspaces/project/tsconfig.b.json'. +Info seq [hh:mm:ss:mss] Resolution for module './aFileWithImports' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name './aFileWithImports' was successfully resolved to '/home/src/workspaces/project/aFileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] ======== Resolving module './bRandomFileForImport' from '/home/src/workspaces/project/bFileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Using compiler options of project reference redirect '/home/src/workspaces/project/tsconfig.b.json'. +Info seq [hh:mm:ss:mss] Resolution for module './bRandomFileForImport' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name './bRandomFileForImport' was successfully resolved to '/home/src/workspaces/project/bRandomFileForImport.ts'. ======== +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/bFileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Using compiler options of project reference redirect '/home/src/workspaces/project/tsconfig.b.json'. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/aFileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Using compiler options of project reference redirect '/home/src/workspaces/project/tsconfig.a.json'. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] ======== Resolving module './aRandomFileForImport' from '/home/src/workspaces/project/aFileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Using compiler options of project reference redirect '/home/src/workspaces/project/tsconfig.a.json'. +Info seq [hh:mm:ss:mss] Resolution for module './aRandomFileForImport' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name './aRandomFileForImport' was successfully resolved to '/home/src/workspaces/project/aRandomFileForImport.ts'. ======== +Info seq [hh:mm:ss:mss] ======== Resolving module './aRandomFileForImport2' from '/home/src/workspaces/project/aFileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Using compiler options of project reference redirect '/home/src/workspaces/project/tsconfig.a.json'. +Info seq [hh:mm:ss:mss] Resolution for module './aRandomFileForImport2' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name './aRandomFileForImport2' was successfully resolved to '/home/src/workspaces/project/aRandomFileForImport2.ts'. ======== +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/bRandomFileForImport.ts'. ======== +Info seq [hh:mm:ss:mss] Using compiler options of project reference redirect '/home/src/workspaces/project/tsconfig.b.json'. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/pkg0.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (12) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/cMain.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/node_modules/pkg0/index.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/aRandomFileForImport.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/aRandomFileForImport2.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/aFileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nexport { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport const y = 10;\n" + /home/src/workspaces/project/bRandomFileForImport.ts Text-2 "export type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/bFileWithImports.ts Text-1 "export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\nimport type { ImportInterface0 } from \"pkg0\";\n" + /home/src/workspaces/project/pkg0.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/cFileWithImports.ts Text-1 "import { y } from \"./bFileWithImports\";\nimport type { ImportInterface0 } from \"pkg0\";\n" + /home/src/workspaces/project/cRandomFileForImport.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/cRandomFileForImport2.ts Text-1 "export const x = 10;" + + + ../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + cMain.ts + Part of 'files' list in tsconfig.json + node_modules/pkg0/index.d.ts + Imported via "pkg0" from file 'aFileWithImports.ts' + Imported via "pkg0" from file 'bRandomFileForImport.ts' + Imported via "pkg0" from file 'bFileWithImports.ts' + aRandomFileForImport.ts + Imported via "./aRandomFileForImport" from file 'aFileWithImports.ts' + aRandomFileForImport2.ts + Imported via "./aRandomFileForImport2" from file 'aFileWithImports.ts' + aFileWithImports.ts + Imported via "./aFileWithImports" from file 'bFileWithImports.ts' + bRandomFileForImport.ts + Imported via "./bRandomFileForImport" from file 'bFileWithImports.ts' + bFileWithImports.ts + Imported via "./bFileWithImports" from file 'cFileWithImports.ts' + pkg0.d.ts + Imported via "pkg0" from file 'cFileWithImports.ts' + cFileWithImports.ts + Part of 'files' list in tsconfig.json + cRandomFileForImport.ts + Part of 'files' list in tsconfig.json + cRandomFileForImport2.ts + Part of 'files' list in tsconfig.json + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/home/src/workspaces/project/tsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "c508fd683797f5f4c77b8519182a36985021d6361b6a0aa9c8b69f7e25d6e876", + "fileStats": { + "js": 0, + "jsSize": 0, + "jsx": 0, + "jsxSize": 0, + "ts": 9, + "tsSize": 544, + "tsx": 0, + "tsxSize": 0, + "dts": 3, + "dtsSize": 485, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "composite": true, + "traceResolution": true, + "module": "amd" + }, + "typeAcquisition": { + "enable": false, + "include": false, + "exclude": false + }, + "extends": false, + "files": true, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "tsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/home/src/workspaces/project/cMain.ts", + "configFile": "/home/src/workspaces/project/tsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/project/tsconfig.json ProjectRootPath: undefined:: Result: undefined +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (12) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.b.json' (Configured) +Info seq [hh:mm:ss:mss] Files (9) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/bMain.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.b.json +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/cMain.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 2, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/home/src/workspaces/node_modules/@types: + {"pollingInterval":500} +/home/src/workspaces/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/@types: + {"pollingInterval":500} +/home/src/workspaces/project/node_modules/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/pkg0/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/home/src/workspaces/project: *new* + {} +/home/src/workspaces/project/aFileWithImports.ts: + {} +/home/src/workspaces/project/aRandomFileForImport.ts: + {} +/home/src/workspaces/project/aRandomFileForImport2.ts: + {} +/home/src/workspaces/project/bFileWithImports.ts: + {} +/home/src/workspaces/project/bRandomFileForImport.ts: + {} +/home/src/workspaces/project/bRandomFileForImport2.ts: + {} +/home/src/workspaces/project/cFileWithImports.ts: *new* + {} +/home/src/workspaces/project/cRandomFileForImport.ts: *new* + {} +/home/src/workspaces/project/cRandomFileForImport2.ts: *new* + {} +/home/src/workspaces/project/pkg0.d.ts: *new* + {} +/home/src/workspaces/project/tsconfig.a.json: + {} +/home/src/workspaces/project/tsconfig.b.json: + {} +/home/src/workspaces/project/tsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/workspaces/project/node_modules: + {} + +Projects:: +/home/src/workspaces/project/tsconfig.b.json (Configured) + projectStateVersion: 2 + projectProgramVersion: 2 + autoImportProviderHost: false +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 1 + projectProgramVersion: 1 *changed* + dirty: false *changed* + initialLoadPending: false *changed* + autoImportProviderHost: false *changed* + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts *changed* + version: Text-1 + containingProjects: 2 *changed* + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.json *new* +/home/src/workspaces/project/aFileWithImports.ts *changed* + version: Text-1 + containingProjects: 2 *changed* + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.json *new* +/home/src/workspaces/project/aRandomFileForImport.ts *changed* + version: Text-1 + containingProjects: 2 *changed* + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.json *new* +/home/src/workspaces/project/aRandomFileForImport2.ts *changed* + version: Text-1 + containingProjects: 2 *changed* + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.json *new* +/home/src/workspaces/project/bFileWithImports.ts *changed* + version: Text-1 + containingProjects: 2 *changed* + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.json *new* +/home/src/workspaces/project/bMain.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json *default* +/home/src/workspaces/project/bRandomFileForImport.ts *changed* + version: Text-2 + containingProjects: 2 *changed* + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.json *new* +/home/src/workspaces/project/bRandomFileForImport2.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/cFileWithImports.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/cMain.ts (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/cRandomFileForImport.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/cRandomFileForImport2.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg0/index.d.ts *changed* + version: Text-1 + containingProjects: 2 *changed* + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.json *new* +/home/src/workspaces/project/pkg0.d.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +Info seq [hh:mm:ss:mss] modify cRandomFileForImport by adding import +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /home/src/workspaces/project/cRandomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/cRandomFileForImport.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/cRandomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/cRandomFileForImport.ts 500 undefined WatchType: Closed Script info +Before running Timeout callback:: count: 2 +3: /home/src/workspaces/project/tsconfig.json +4: *ensureProjectForOpenFiles* +//// [/home/src/workspaces/project/cRandomFileForImport.ts] +export type { ImportInterface0 } from "pkg0"; +export const x = 10; + + +Timeout callback:: count: 2 +3: /home/src/workspaces/project/tsconfig.json *new* +4: *ensureProjectForOpenFiles* *new* + +Projects:: +/home/src/workspaces/project/tsconfig.b.json (Configured) + projectStateVersion: 2 + projectProgramVersion: 2 + autoImportProviderHost: false +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 2 *changed* + projectProgramVersion: 1 + dirty: true *changed* + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 2 + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/aFileWithImports.ts + version: Text-1 + containingProjects: 2 + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/aRandomFileForImport.ts + version: Text-1 + containingProjects: 2 + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/aRandomFileForImport2.ts + version: Text-1 + containingProjects: 2 + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/bFileWithImports.ts + version: Text-1 + containingProjects: 2 + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/bMain.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json *default* +/home/src/workspaces/project/bRandomFileForImport.ts + version: Text-2 + containingProjects: 2 + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/bRandomFileForImport2.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/cFileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/cMain.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/cRandomFileForImport.ts *changed* + version: Text-1 + pendingReloadFromDisk: true *changed* + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/cRandomFileForImport2.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg0/index.d.ts + version: Text-1 + containingProjects: 2 + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/pkg0.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module './bFileWithImports' from '/home/src/workspaces/project/cFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/bFileWithImports.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/cFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/pkg0.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module './aFileWithImports' from '/home/src/workspaces/project/bFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/aFileWithImports.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module './bRandomFileForImport' from '/home/src/workspaces/project/bFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/bRandomFileForImport.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/bFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/aFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module './aRandomFileForImport' from '/home/src/workspaces/project/aFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/aRandomFileForImport.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module './aRandomFileForImport2' from '/home/src/workspaces/project/aFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/aRandomFileForImport2.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/bRandomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/cRandomFileForImport.ts'. ======== +Info seq [hh:mm:ss:mss] Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/pkg0.d.ts'. ======== +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (12) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/cMain.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/node_modules/pkg0/index.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/aRandomFileForImport.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/aRandomFileForImport2.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/aFileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nexport { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport const y = 10;\n" + /home/src/workspaces/project/bRandomFileForImport.ts Text-2 "export type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/bFileWithImports.ts Text-1 "export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\nimport type { ImportInterface0 } from \"pkg0\";\n" + /home/src/workspaces/project/pkg0.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/cFileWithImports.ts Text-1 "import { y } from \"./bFileWithImports\";\nimport type { ImportInterface0 } from \"pkg0\";\n" + /home/src/workspaces/project/cRandomFileForImport.ts Text-2 "export type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/cRandomFileForImport2.ts Text-1 "export const x = 10;" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (12) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.b.json' (Configured) +Info seq [hh:mm:ss:mss] Files (9) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/bMain.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.b.json +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/cMain.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (12) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.b.json' (Configured) +Info seq [hh:mm:ss:mss] Files (9) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/bMain.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.b.json +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/cMain.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /home/src/workspaces/project/bMain.ts,/home/src/workspaces/project/cMain.ts +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/home/src/workspaces/project/bMain.ts", + "/home/src/workspaces/project/cMain.ts" + ] + } + } +After running Timeout callback:: count: 0 + +Projects:: +/home/src/workspaces/project/tsconfig.b.json (Configured) + projectStateVersion: 2 + projectProgramVersion: 2 + autoImportProviderHost: false +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 2 + projectProgramVersion: 2 *changed* + dirty: false *changed* + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 2 + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/aFileWithImports.ts + version: Text-1 + containingProjects: 2 + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/aRandomFileForImport.ts + version: Text-1 + containingProjects: 2 + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/aRandomFileForImport2.ts + version: Text-1 + containingProjects: 2 + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/bFileWithImports.ts + version: Text-1 + containingProjects: 2 + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/bMain.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json *default* +/home/src/workspaces/project/bRandomFileForImport.ts + version: Text-2 + containingProjects: 2 + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/bRandomFileForImport2.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/cFileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/cMain.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/cRandomFileForImport.ts *changed* + version: Text-2 *changed* + pendingReloadFromDisk: false *changed* + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/cRandomFileForImport2.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg0/index.d.ts + version: Text-1 + containingProjects: 2 + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/pkg0.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +Before request + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/home/src/workspaces/project/aMain.ts" + }, + "seq": 3, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/project/aMain.ts ProjectRootPath: undefined:: Result: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /home/src/workspaces/project/tsconfig.a.json, currentDirectory: /home/src/workspaces/project +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/home/src/workspaces/project/tsconfig.a.json", + "reason": "Creating project referenced in solution /home/src/workspaces/project/tsconfig.json to find possible configured project for /home/src/workspaces/project/aMain.ts to open" + } + } +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.a.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/aFileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] ======== Resolving module './aRandomFileForImport' from '/home/src/workspaces/project/aFileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Resolution for module './aRandomFileForImport' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name './aRandomFileForImport' was successfully resolved to '/home/src/workspaces/project/aRandomFileForImport.ts'. ======== +Info seq [hh:mm:ss:mss] ======== Resolving module './aRandomFileForImport2' from '/home/src/workspaces/project/aFileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Resolution for module './aRandomFileForImport2' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name './aRandomFileForImport2' was successfully resolved to '/home/src/workspaces/project/aRandomFileForImport2.ts'. ======== +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.a.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.a.json' (Configured) +Info seq [hh:mm:ss:mss] Files (6) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/aMain.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/node_modules/pkg0/index.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/aRandomFileForImport.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/aRandomFileForImport2.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/aFileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nexport { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport const y = 10;\n" + + + ../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + aMain.ts + Part of 'files' list in tsconfig.json + node_modules/pkg0/index.d.ts + Imported via "pkg0" from file 'aFileWithImports.ts' + aRandomFileForImport.ts + Imported via "./aRandomFileForImport" from file 'aFileWithImports.ts' + Part of 'files' list in tsconfig.json + aRandomFileForImport2.ts + Imported via "./aRandomFileForImport2" from file 'aFileWithImports.ts' + Part of 'files' list in tsconfig.json + aFileWithImports.ts + Part of 'files' list in tsconfig.json + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/home/src/workspaces/project/tsconfig.a.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "5c3604817af33290066ae1a9079dd39814f1ebd45b5625f71913cd67682ee3c2", + "fileStats": { + "js": 0, + "jsSize": 0, + "jsx": 0, + "jsxSize": 0, + "ts": 4, + "tsSize": 222, + "tsx": 0, + "tsxSize": 0, + "dts": 2, + "dtsSize": 449, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "composite": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false, + "include": false, + "exclude": false + }, + "extends": false, + "files": true, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "other", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/home/src/workspaces/project/aMain.ts", + "configFile": "/home/src/workspaces/project/tsconfig.a.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/project/tsconfig.json ProjectRootPath: undefined:: Result: undefined +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (12) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.b.json' (Configured) +Info seq [hh:mm:ss:mss] Files (9) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.a.json' (Configured) +Info seq [hh:mm:ss:mss] Files (6) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/bMain.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.b.json +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/cMain.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/aMain.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.a.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 3, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +Projects:: +/home/src/workspaces/project/tsconfig.a.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/home/src/workspaces/project/tsconfig.b.json (Configured) + projectStateVersion: 2 + projectProgramVersion: 2 + autoImportProviderHost: false +/home/src/workspaces/project/tsconfig.json (Configured) + projectStateVersion: 2 + projectProgramVersion: 2 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts *changed* + version: Text-1 + containingProjects: 3 *changed* + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.a.json *new* +/home/src/workspaces/project/aFileWithImports.ts *changed* + version: Text-1 + containingProjects: 3 *changed* + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.a.json *new* +/home/src/workspaces/project/aMain.ts (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.a.json *default* +/home/src/workspaces/project/aRandomFileForImport.ts *changed* + version: Text-1 + containingProjects: 3 *changed* + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.a.json *new* +/home/src/workspaces/project/aRandomFileForImport2.ts *changed* + version: Text-1 + containingProjects: 3 *changed* + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.a.json *new* +/home/src/workspaces/project/bFileWithImports.ts + version: Text-1 + containingProjects: 2 + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/bMain.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json *default* +/home/src/workspaces/project/bRandomFileForImport.ts + version: Text-2 + containingProjects: 2 + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/bRandomFileForImport2.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/cFileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/cMain.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/cRandomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/cRandomFileForImport2.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg0/index.d.ts *changed* + version: Text-1 + containingProjects: 3 *changed* + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.a.json *new* +/home/src/workspaces/project/pkg0.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +Info seq [hh:mm:ss:mss] modify aRandomFileForImport by adding import +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /home/src/workspaces/project/aRandomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/aRandomFileForImport.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.b.json +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.a.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/aRandomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/aRandomFileForImport.ts 500 undefined WatchType: Closed Script info +Before running Timeout callback:: count: 4 +5: /home/src/workspaces/project/tsconfig.b.json +6: /home/src/workspaces/project/tsconfig.json +7: /home/src/workspaces/project/tsconfig.a.json +8: *ensureProjectForOpenFiles* +//// [/home/src/workspaces/project/aRandomFileForImport.ts] +export type { ImportInterface0 } from "pkg0"; +export const x = 10; + + +Timeout callback:: count: 4 +5: /home/src/workspaces/project/tsconfig.b.json *new* +6: /home/src/workspaces/project/tsconfig.json *new* +7: /home/src/workspaces/project/tsconfig.a.json *new* +8: *ensureProjectForOpenFiles* *new* + +Projects:: +/home/src/workspaces/project/tsconfig.a.json (Configured) *changed* + projectStateVersion: 2 *changed* + projectProgramVersion: 1 + dirty: true *changed* + autoImportProviderHost: false +/home/src/workspaces/project/tsconfig.b.json (Configured) *changed* + projectStateVersion: 3 *changed* + projectProgramVersion: 2 + dirty: true *changed* + autoImportProviderHost: false +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 3 *changed* + projectProgramVersion: 2 + dirty: true *changed* + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 3 + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.a.json +/home/src/workspaces/project/aFileWithImports.ts + version: Text-1 + containingProjects: 3 + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.a.json +/home/src/workspaces/project/aMain.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.a.json *default* +/home/src/workspaces/project/aRandomFileForImport.ts *changed* + version: Text-1 + pendingReloadFromDisk: true *changed* + containingProjects: 3 + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.a.json +/home/src/workspaces/project/aRandomFileForImport2.ts + version: Text-1 + containingProjects: 3 + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.a.json +/home/src/workspaces/project/bFileWithImports.ts + version: Text-1 + containingProjects: 2 + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/bMain.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json *default* +/home/src/workspaces/project/bRandomFileForImport.ts + version: Text-2 + containingProjects: 2 + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/bRandomFileForImport2.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/cFileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/cMain.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/cRandomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/cRandomFileForImport2.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg0/index.d.ts + version: Text-1 + containingProjects: 3 + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.a.json +/home/src/workspaces/project/pkg0.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/tsconfig.b.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.b.json +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module './aFileWithImports' from '/home/src/workspaces/project/bFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/aFileWithImports.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module './bRandomFileForImport' from '/home/src/workspaces/project/bFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/bRandomFileForImport.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/bFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/aFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module './aRandomFileForImport' from '/home/src/workspaces/project/aFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/aRandomFileForImport.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module './aRandomFileForImport2' from '/home/src/workspaces/project/aFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/aRandomFileForImport2.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/aRandomFileForImport.ts'. ======== +Info seq [hh:mm:ss:mss] Using compiler options of project reference redirect '/home/src/workspaces/project/tsconfig.a.json'. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/bRandomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.b.json projectStateVersion: 3 projectProgramVersion: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.b.json' (Configured) +Info seq [hh:mm:ss:mss] Files (9) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/bMain.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/node_modules/pkg0/index.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/aRandomFileForImport.ts Text-2 "export type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/aRandomFileForImport2.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/aFileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nexport { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport const y = 10;\n" + /home/src/workspaces/project/bRandomFileForImport.ts Text-2 "export type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/bFileWithImports.ts Text-1 "export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\nimport type { ImportInterface0 } from \"pkg0\";\n" + /home/src/workspaces/project/bRandomFileForImport2.ts Text-1 "export const x = 10;" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module './bFileWithImports' from '/home/src/workspaces/project/cFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/bFileWithImports.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/cFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/pkg0.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module './aFileWithImports' from '/home/src/workspaces/project/bFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/aFileWithImports.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module './bRandomFileForImport' from '/home/src/workspaces/project/bFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/bRandomFileForImport.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/bFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/aFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module './aRandomFileForImport' from '/home/src/workspaces/project/aFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/aRandomFileForImport.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module './aRandomFileForImport2' from '/home/src/workspaces/project/aFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/aRandomFileForImport2.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/aRandomFileForImport.ts'. ======== +Info seq [hh:mm:ss:mss] Using compiler options of project reference redirect '/home/src/workspaces/project/tsconfig.a.json'. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/bRandomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/cRandomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/pkg0.d.ts'. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 3 projectProgramVersion: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (12) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/cMain.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/node_modules/pkg0/index.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/aRandomFileForImport.ts Text-2 "export type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/aRandomFileForImport2.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/aFileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nexport { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport const y = 10;\n" + /home/src/workspaces/project/bRandomFileForImport.ts Text-2 "export type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/bFileWithImports.ts Text-1 "export { y } from \"./aFileWithImports\";\nexport { x } from \"./bRandomFileForImport\";\nimport type { ImportInterface0 } from \"pkg0\";\n" + /home/src/workspaces/project/pkg0.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/cFileWithImports.ts Text-1 "import { y } from \"./bFileWithImports\";\nimport type { ImportInterface0 } from \"pkg0\";\n" + /home/src/workspaces/project/cRandomFileForImport.ts Text-2 "export type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/cRandomFileForImport2.ts Text-1 "export const x = 10;" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/tsconfig.a.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.a.json +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/aFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module './aRandomFileForImport' from '/home/src/workspaces/project/aFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/aRandomFileForImport.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module './aRandomFileForImport2' from '/home/src/workspaces/project/aFileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/aRandomFileForImport2.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/aRandomFileForImport.ts'. ======== +Info seq [hh:mm:ss:mss] Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.a.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.a.json' (Configured) +Info seq [hh:mm:ss:mss] Files (6) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/aMain.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/node_modules/pkg0/index.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/aRandomFileForImport.ts Text-2 "export type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/aRandomFileForImport2.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/aFileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nexport { x } from \"./aRandomFileForImport\";\nexport { x as x2 } from \"./aRandomFileForImport2\";\nexport const y = 10;\n" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (12) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.b.json' (Configured) +Info seq [hh:mm:ss:mss] Files (9) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.a.json' (Configured) +Info seq [hh:mm:ss:mss] Files (6) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/bMain.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.b.json +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/cMain.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/aMain.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.a.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (12) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.b.json' (Configured) +Info seq [hh:mm:ss:mss] Files (9) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.a.json' (Configured) +Info seq [hh:mm:ss:mss] Files (6) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/bMain.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.b.json +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/cMain.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/aMain.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.a.json +Info seq [hh:mm:ss:mss] got projects updated in background /home/src/workspaces/project/bMain.ts,/home/src/workspaces/project/cMain.ts,/home/src/workspaces/project/aMain.ts +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/home/src/workspaces/project/bMain.ts", + "/home/src/workspaces/project/cMain.ts", + "/home/src/workspaces/project/aMain.ts" + ] + } + } +After running Timeout callback:: count: 0 + +Projects:: +/home/src/workspaces/project/tsconfig.a.json (Configured) *changed* + projectStateVersion: 2 + projectProgramVersion: 2 *changed* + dirty: false *changed* + autoImportProviderHost: false +/home/src/workspaces/project/tsconfig.b.json (Configured) *changed* + projectStateVersion: 3 + projectProgramVersion: 3 *changed* + dirty: false *changed* + autoImportProviderHost: false +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 3 + projectProgramVersion: 3 *changed* + dirty: false *changed* + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 3 + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.a.json +/home/src/workspaces/project/aFileWithImports.ts + version: Text-1 + containingProjects: 3 + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.a.json +/home/src/workspaces/project/aMain.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.a.json *default* +/home/src/workspaces/project/aRandomFileForImport.ts *changed* + version: Text-2 *changed* + pendingReloadFromDisk: false *changed* + containingProjects: 3 + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.a.json +/home/src/workspaces/project/aRandomFileForImport2.ts + version: Text-1 + containingProjects: 3 + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.a.json +/home/src/workspaces/project/bFileWithImports.ts + version: Text-1 + containingProjects: 2 + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/bMain.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json *default* +/home/src/workspaces/project/bRandomFileForImport.ts + version: Text-2 + containingProjects: 2 + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/bRandomFileForImport2.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.b.json +/home/src/workspaces/project/cFileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/cMain.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/cRandomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/cRandomFileForImport2.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg0/index.d.ts + version: Text-1 + containingProjects: 3 + /home/src/workspaces/project/tsconfig.b.json + /home/src/workspaces/project/tsconfig.json + /home/src/workspaces/project/tsconfig.a.json +/home/src/workspaces/project/pkg0.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json diff --git a/tests/baselines/reference/tsserver/resolutionCache/non-relative-module-name-from-files-in-different-folders.js b/tests/baselines/reference/tsserver/resolutionCache/non-relative-module-name-from-files-in-different-folders.js index 3261fb3c2583f..e6e86aae84659 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/non-relative-module-name-from-files-in-different-folders.js +++ b/tests/baselines/reference/tsserver/resolutionCache/non-relative-module-name-from-files-in-different-folders.js @@ -96,6 +96,8 @@ Info seq [hh:mm:ss:mss] File '/user/username/projects/myproject/product/node_mo Info seq [hh:mm:ss:mss] File '/user/username/projects/myproject/product/node_modules/module1/index.ts' exists - use it as a name resolution result. Info seq [hh:mm:ss:mss] Resolving real path for '/user/username/projects/myproject/product/node_modules/module1/index.ts', result '/user/username/projects/myproject/product/node_modules/module1/index.ts'. Info seq [hh:mm:ss:mss] ======== Module name 'module1' was successfully resolved to '/user/username/projects/myproject/product/node_modules/module1/index.ts'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] ======== Resolving module 'module2' from '/user/username/projects/myproject/product/src/file1.ts'. ======== Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. Info seq [hh:mm:ss:mss] Loading module 'module2' from 'node_modules' folder, target file types: TypeScript, Declaration. @@ -112,6 +114,8 @@ Info seq [hh:mm:ss:mss] File '/user/username/projects/myproject/node_modules/mo Info seq [hh:mm:ss:mss] File '/user/username/projects/myproject/node_modules/module2/index.ts' exists - use it as a name resolution result. Info seq [hh:mm:ss:mss] Resolving real path for '/user/username/projects/myproject/node_modules/module2/index.ts', result '/user/username/projects/myproject/node_modules/module2/index.ts'. Info seq [hh:mm:ss:mss] ======== Module name 'module2' was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] File '/user/username/projects/myproject/product/node_modules/module1/package.json' does not exist according to earlier cached lookups. Info seq [hh:mm:ss:mss] File '/user/username/projects/myproject/product/node_modules/package.json' does not exist. Info seq [hh:mm:ss:mss] File '/user/username/projects/myproject/product/package.json' does not exist. @@ -174,10 +178,6 @@ Info seq [hh:mm:ss:mss] Directory '/user/username/projects/myproject/product/te Info seq [hh:mm:ss:mss] Resolution for module 'module2' was found in cache from location '/user/username/projects/myproject/product/test'. Info seq [hh:mm:ss:mss] ======== Module name 'module2' was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. ======== Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/node_modules/module1/package.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/node_modules/package.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/package.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution diff --git a/tests/baselines/reference/tsserver/resolutionCache/non-relative-module-name-from-files-in-same-folder.js b/tests/baselines/reference/tsserver/resolutionCache/non-relative-module-name-from-files-in-same-folder.js index ac00dbb3519ae..267e369baa5da 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/non-relative-module-name-from-files-in-same-folder.js +++ b/tests/baselines/reference/tsserver/resolutionCache/non-relative-module-name-from-files-in-same-folder.js @@ -85,6 +85,8 @@ Info seq [hh:mm:ss:mss] File '/user/username/projects/myproject/src/node_module Info seq [hh:mm:ss:mss] File '/user/username/projects/myproject/src/node_modules/module1/index.ts' exists - use it as a name resolution result. Info seq [hh:mm:ss:mss] Resolving real path for '/user/username/projects/myproject/src/node_modules/module1/index.ts', result '/user/username/projects/myproject/src/node_modules/module1/index.ts'. Info seq [hh:mm:ss:mss] ======== Module name 'module1' was successfully resolved to '/user/username/projects/myproject/src/node_modules/module1/index.ts'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] ======== Resolving module 'module2' from '/user/username/projects/myproject/src/file1.ts'. ======== Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. Info seq [hh:mm:ss:mss] Loading module 'module2' from 'node_modules' folder, target file types: TypeScript, Declaration. @@ -100,6 +102,8 @@ Info seq [hh:mm:ss:mss] File '/user/username/projects/myproject/node_modules/mo Info seq [hh:mm:ss:mss] File '/user/username/projects/myproject/node_modules/module2/index.ts' exists - use it as a name resolution result. Info seq [hh:mm:ss:mss] Resolving real path for '/user/username/projects/myproject/node_modules/module2/index.ts', result '/user/username/projects/myproject/node_modules/module2/index.ts'. Info seq [hh:mm:ss:mss] ======== Module name 'module2' was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] File '/user/username/projects/myproject/src/node_modules/module1/package.json' does not exist according to earlier cached lookups. Info seq [hh:mm:ss:mss] File '/user/username/projects/myproject/src/node_modules/package.json' does not exist. Info seq [hh:mm:ss:mss] File '/user/username/projects/myproject/src/package.json' does not exist. @@ -126,10 +130,6 @@ Info seq [hh:mm:ss:mss] ======== Resolving module 'module2' from '/user/usernam Info seq [hh:mm:ss:mss] Resolution for module 'module2' was found in cache from location '/user/username/projects/myproject/src'. Info seq [hh:mm:ss:mss] ======== Module name 'module2' was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. ======== Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/module1/package.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/package.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/package.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution diff --git a/tests/baselines/reference/tsserver/resolutionCache/non-relative-module-name-from-inferred-project.js b/tests/baselines/reference/tsserver/resolutionCache/non-relative-module-name-from-inferred-project.js index 0f1c12543dafc..d0f980d2c53d0 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/non-relative-module-name-from-inferred-project.js +++ b/tests/baselines/reference/tsserver/resolutionCache/non-relative-module-name-from-inferred-project.js @@ -102,6 +102,10 @@ Info seq [hh:mm:ss:mss] File '/user/username/projects/myproject/product/node_mo Info seq [hh:mm:ss:mss] File '/user/username/projects/myproject/product/node_modules/module1/index.ts' exists - use it as a name resolution result. Info seq [hh:mm:ss:mss] Resolving real path for '/user/username/projects/myproject/product/node_modules/module1/index.ts', result '/user/username/projects/myproject/product/node_modules/module1/index.ts'. Info seq [hh:mm:ss:mss] ======== Module name 'module1' was successfully resolved to '/user/username/projects/myproject/product/node_modules/module1/index.ts'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] ======== Resolving module 'module2' from '/user/username/projects/myproject/product/src/file1.ts'. ======== Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. Info seq [hh:mm:ss:mss] Loading module 'module2' from 'node_modules' folder, target file types: TypeScript, Declaration. @@ -118,6 +122,8 @@ Info seq [hh:mm:ss:mss] File '/user/username/projects/myproject/node_modules/mo Info seq [hh:mm:ss:mss] File '/user/username/projects/myproject/node_modules/module2/index.ts' exists - use it as a name resolution result. Info seq [hh:mm:ss:mss] Resolving real path for '/user/username/projects/myproject/node_modules/module2/index.ts', result '/user/username/projects/myproject/node_modules/module2/index.ts'. Info seq [hh:mm:ss:mss] ======== Module name 'module2' was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/src/feature/file2.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] ======== Resolving module 'module1' from '/user/username/projects/myproject/product/src/feature/file2.ts'. ======== Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. @@ -126,6 +132,8 @@ Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for pre Info seq [hh:mm:ss:mss] Directory '/user/username/projects/myproject/product/src/feature/node_modules' does not exist, skipping all lookups in it. Info seq [hh:mm:ss:mss] Resolution for module 'module1' was found in cache from location '/user/username/projects/myproject/product/src'. Info seq [hh:mm:ss:mss] ======== Module name 'module1' was successfully resolved to '/user/username/projects/myproject/product/node_modules/module1/index.ts'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/src/feature 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/src/feature 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] ======== Resolving module 'module2' from '/user/username/projects/myproject/product/src/feature/file2.ts'. ======== Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. Info seq [hh:mm:ss:mss] Loading module 'module2' from 'node_modules' folder, target file types: TypeScript, Declaration. @@ -160,6 +168,8 @@ Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for pre Info seq [hh:mm:ss:mss] Directory '/user/username/projects/myproject/product/test/node_modules' does not exist, skipping all lookups in it. Info seq [hh:mm:ss:mss] Resolution for module 'module1' was found in cache from location '/user/username/projects/myproject/product'. Info seq [hh:mm:ss:mss] ======== Module name 'module1' was successfully resolved to '/user/username/projects/myproject/product/node_modules/module1/index.ts'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/test/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/test/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] ======== Resolving module 'module2' from '/user/username/projects/myproject/product/test/file4.ts'. ======== Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. Info seq [hh:mm:ss:mss] Loading module 'module2' from 'node_modules' folder, target file types: TypeScript, Declaration. @@ -175,6 +185,8 @@ Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for pre Info seq [hh:mm:ss:mss] Directory '/user/username/projects/myproject/product/test/src/node_modules' does not exist, skipping all lookups in it. Info seq [hh:mm:ss:mss] Resolution for module 'module1' was found in cache from location '/user/username/projects/myproject/product/test'. Info seq [hh:mm:ss:mss] ======== Module name 'module1' was successfully resolved to '/user/username/projects/myproject/product/node_modules/module1/index.ts'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/test/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/test/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] ======== Resolving module 'module2' from '/user/username/projects/myproject/product/test/src/file3.ts'. ======== Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. Info seq [hh:mm:ss:mss] Loading module 'module2' from 'node_modules' folder, target file types: TypeScript, Declaration. @@ -183,18 +195,6 @@ Info seq [hh:mm:ss:mss] Directory '/user/username/projects/myproject/product/te Info seq [hh:mm:ss:mss] Resolution for module 'module2' was found in cache from location '/user/username/projects/myproject/product/test'. Info seq [hh:mm:ss:mss] ======== Module name 'module2' was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. ======== Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/src/feature 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/src/feature 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/test/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/test/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/test/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/test/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/node_modules/module1/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/node_modules/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution diff --git a/tests/baselines/reference/tsserver/resolutionCache/not-sharing-across-references.js b/tests/baselines/reference/tsserver/resolutionCache/not-sharing-across-references.js index 48d9a6f7a90c8..de6df18ed0246 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/not-sharing-across-references.js +++ b/tests/baselines/reference/tsserver/resolutionCache/not-sharing-across-references.js @@ -134,6 +134,10 @@ Info seq [hh:mm:ss:mss] File '/users/username/projects/node_modules/moduleX/ind Info seq [hh:mm:ss:mss] File '/users/username/projects/node_modules/moduleX/index.d.ts' exists - use it as a name resolution result. Info seq [hh:mm:ss:mss] Resolving real path for '/users/username/projects/node_modules/moduleX/index.d.ts', result '/users/username/projects/node_modules/moduleX/index.d.ts'. Info seq [hh:mm:ss:mss] ======== Module name 'moduleX' was successfully resolved to '/users/username/projects/node_modules/moduleX/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/app/node_modules 1 undefined Project: /users/username/projects/app/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/app/node_modules 1 undefined Project: /users/username/projects/app/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/node_modules 1 undefined Project: /users/username/projects/app/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/node_modules 1 undefined Project: /users/username/projects/app/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] File '/users/username/projects/node_modules/moduleX/package.json' does not exist according to earlier cached lookups. Info seq [hh:mm:ss:mss] File '/users/username/projects/node_modules/package.json' does not exist. Info seq [hh:mm:ss:mss] File '/users/username/projects/package.json' does not exist. @@ -163,13 +167,9 @@ Info seq [hh:mm:ss:mss] File '/users/username/projects/node_modules/moduleX/ind Info seq [hh:mm:ss:mss] File '/users/username/projects/node_modules/moduleX/index.d.ts' exists - use it as a name resolution result. Info seq [hh:mm:ss:mss] Resolving real path for '/users/username/projects/node_modules/moduleX/index.d.ts', result '/users/username/projects/node_modules/moduleX/index.d.ts'. Info seq [hh:mm:ss:mss] ======== Module name 'moduleX' was successfully resolved to '/users/username/projects/node_modules/moduleX/index.d.ts'. ======== -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/app/node_modules 1 undefined Project: /users/username/projects/app/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/app/node_modules 1 undefined Project: /users/username/projects/app/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/node_modules 1 undefined Project: /users/username/projects/app/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/node_modules 1 undefined Project: /users/username/projects/app/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/common/node_modules 1 undefined Project: /users/username/projects/app/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/common/node_modules 1 undefined Project: /users/username/projects/app/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/username/projects/node_modules/moduleX/package.json 2000 undefined Project: /users/username/projects/app/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/username/projects/node_modules/package.json 2000 undefined Project: /users/username/projects/app/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/username/projects/package.json 2000 undefined Project: /users/username/projects/app/tsconfig.json WatchType: File location affecting resolution diff --git a/tests/baselines/reference/tsserver/resolutionCache/npm-install-@types-works.js b/tests/baselines/reference/tsserver/resolutionCache/npm-install-@types-works.js index d4c8bac95ea29..6927dfff7eabd 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/npm-install-@types-works.js +++ b/tests/baselines/reference/tsserver/resolutionCache/npm-install-@types-works.js @@ -39,11 +39,11 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /a/b/projects/temp/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /a/b/projects/temp/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/temp/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/temp/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/temp/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/temp/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/resolutionCache/project-with-imports.js b/tests/baselines/reference/tsserver/resolutionCache/project-with-imports.js new file mode 100644 index 0000000000000..89fd2d0538ff3 --- /dev/null +++ b/tests/baselines/reference/tsserver/resolutionCache/project-with-imports.js @@ -0,0 +1,2744 @@ +Info seq [hh:mm:ss:mss] currentDirectory:: /home/src/Vscode/Projects/bin useCaseSensitiveFileNames:: false +Info seq [hh:mm:ss:mss] libs Location:: /home/src/tslibs/TS/Lib +Info seq [hh:mm:ss:mss] globalTypingsCacheLocation:: /home/src/Library/Caches/typescript +Info seq [hh:mm:ss:mss] Provided types map file "/home/src/tslibs/TS/Lib/typesMap.json" doesn't exist +Before request +//// [/home/src/workspaces/project/tsconfig.json] +{ + "compilerOptions": { + "traceResolution": true + }, + "include": [ + "*.ts" + ], + "exclude": [ + "*.d.ts" + ] +} + +//// [/home/src/workspaces/project/main.ts] +export const x = 10; + +//// [/home/src/workspaces/project/fileWithImports.ts] +import type { ImportInterface0 } from "pkg0" assert { "resolution-mode": "import" }; +import type { RequireInterface1 } from "pkg1" assert { "resolution-mode": "require" }; + + +//// [/home/src/workspaces/project/randomFileForImport.ts] +export const x = 10; + +//// [/home/src/workspaces/project/node_modules/pkg0/package.json] +{ + "name": "pkg0", + "version": "0.0.1", + "exports": { + "import": "./import.js", + "require": "./require.js" + } +} + +//// [/home/src/workspaces/project/node_modules/pkg0/import.d.ts] +export interface ImportInterface0 {} + +//// [/home/src/workspaces/project/node_modules/pkg0/require.d.ts] +export interface RequireInterface0 {} + +//// [/home/src/workspaces/project/node_modules/pkg1/package.json] +{ + "name": "pkg1", + "version": "0.0.1", + "exports": { + "import": "./import.js", + "require": "./require.js" + } +} + +//// [/home/src/workspaces/project/node_modules/pkg1/import.d.ts] +export interface ImportInterface1 {} + +//// [/home/src/workspaces/project/fileWithTypeRefs.ts] +/// +/// +interface LocalInterface extends ImportInterface2, RequireInterface3 {} +export {} + + +//// [/home/src/workspaces/project/randomFileForTypeRef.ts] +export const x = 10; + +//// [/home/src/workspaces/project/node_modules/pkg2/package.json] +{ + "name": "pkg2", + "version": "0.0.1", + "exports": { + "import": "./import.js", + "require": "./require.js" + } +} + +//// [/home/src/workspaces/project/node_modules/pkg2/import.d.ts] +export {}; +declare global { + interface ImportInterface2 {} +} + + +//// [/home/src/workspaces/project/node_modules/pkg2/require.d.ts] +export {}; +declare global { + interface RequireInterface2 {} +} + + +//// [/home/src/workspaces/project/node_modules/pkg3/package.json] +{ + "name": "pkg3", + "version": "0.0.1", + "exports": { + "import": "./import.js", + "require": "./require.js" + } +} + +//// [/home/src/workspaces/project/node_modules/pkg3/import.d.ts] +export {}; +declare global { + interface ImportInterface3 {} +} + + +//// [/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts] +export const x = 10; + +//// [/home/src/tslibs/TS/Lib/lib.d.ts] +/// +interface Boolean {} +interface Function {} +interface CallableFunction {} +interface NewableFunction {} +interface IArguments {} +interface Number { toExponential: any; } +interface Object {} +interface RegExp {} +interface String { charAt: any; } +interface Array { length: number; [n: number]: T; } +interface ReadonlyArray {} +declare const console: { log(msg: any): void; }; + + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/home/src/workspaces/project/main.ts" + }, + "seq": 1, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/project/main.ts ProjectRootPath: undefined:: Result: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /home/src/workspaces/project/tsconfig.json, currentDirectory: /home/src/workspaces/project +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/tsconfig.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /home/src/workspaces/project/tsconfig.json : { + "rootNames": [ + "/home/src/workspaces/project/fileWithImports.ts", + "/home/src/workspaces/project/fileWithTypeRefs.ts", + "/home/src/workspaces/project/main.ts", + "/home/src/workspaces/project/randomFileForImport.ts", + "/home/src/workspaces/project/randomFileForTypeRef.ts" + ], + "options": { + "traceResolution": true, + "configFilePath": "/home/src/workspaces/project/tsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/home/src/workspaces/project/tsconfig.json", + "reason": "Creating possible configured project for /home/src/workspaces/project/main.ts to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Config: /home/src/workspaces/project/tsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Config: /home/src/workspaces/project/tsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/fileWithImports.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/fileWithTypeRefs.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/randomFileForImport.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/randomFileForTypeRef.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/fileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist. +Info seq [hh:mm:ss:mss] Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Found 'package.json' at '/home/src/workspaces/project/node_modules/pkg0/package.json'. +Info seq [hh:mm:ss:mss] Entering conditional exports. +Info seq [hh:mm:ss:mss] Matched 'exports' condition 'import'. +Info seq [hh:mm:ss:mss] Using 'exports' subpath '.' with target './import.js'. +Info seq [hh:mm:ss:mss] File name '/home/src/workspaces/project/node_modules/pkg0/import.js' has a '.js' extension - stripping it. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/import.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/import.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/import.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] 'package.json' does not have a 'peerDependencies' field. +Info seq [hh:mm:ss:mss] Resolved under condition 'import'. +Info seq [hh:mm:ss:mss] Exiting conditional exports. +Info seq [hh:mm:ss:mss] Resolving real path for '/home/src/workspaces/project/node_modules/pkg0/import.d.ts', result '/home/src/workspaces/project/node_modules/pkg0/import.d.ts'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/pkg0/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg1' from '/home/src/workspaces/project/fileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Found 'package.json' at '/home/src/workspaces/project/node_modules/pkg1/package.json'. +Info seq [hh:mm:ss:mss] Entering conditional exports. +Info seq [hh:mm:ss:mss] Saw non-matching condition 'import'. +Info seq [hh:mm:ss:mss] Matched 'exports' condition 'require'. +Info seq [hh:mm:ss:mss] Using 'exports' subpath '.' with target './require.js'. +Info seq [hh:mm:ss:mss] File name '/home/src/workspaces/project/node_modules/pkg1/require.js' has a '.js' extension - stripping it. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg1/require.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg1/require.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg1/require.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Failed to resolve under condition 'require'. +Info seq [hh:mm:ss:mss] Exiting conditional exports. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/@types/pkg1.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Loading module 'pkg1' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg1/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Entering conditional exports. +Info seq [hh:mm:ss:mss] Saw non-matching condition 'import'. +Info seq [hh:mm:ss:mss] Matched 'exports' condition 'require'. +Info seq [hh:mm:ss:mss] Using 'exports' subpath '.' with target './require.js'. +Info seq [hh:mm:ss:mss] File name '/home/src/workspaces/project/node_modules/pkg1/require.js' has a '.js' extension - stripping it. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg1/require.js' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg1/require.jsx' does not exist. +Info seq [hh:mm:ss:mss] Failed to resolve under condition 'require'. +Info seq [hh:mm:ss:mss] Exiting conditional exports. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution of non-relative name failed; trying with '--moduleResolution bundler' to see if project may need configuration update. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg1/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Entering conditional exports. +Info seq [hh:mm:ss:mss] Matched 'exports' condition 'import'. +Info seq [hh:mm:ss:mss] Using 'exports' subpath '.' with target './import.js'. +Info seq [hh:mm:ss:mss] File name '/home/src/workspaces/project/node_modules/pkg1/import.js' has a '.js' extension - stripping it. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg1/import.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg1/import.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg1/import.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] 'package.json' does not have a 'peerDependencies' field. +Info seq [hh:mm:ss:mss] Resolved under condition 'import'. +Info seq [hh:mm:ss:mss] Exiting conditional exports. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg1' was not resolved. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/pkg1/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] ======== Resolving type reference directive 'pkg2', containing file '/home/src/workspaces/project/fileWithTypeRefs.ts', root directory '/home/src/workspaces/project/node_modules/@types,/home/src/workspaces/node_modules/@types,/home/src/node_modules/@types,/home/node_modules/@types,/node_modules/@types'. ======== +Info seq [hh:mm:ss:mss] Resolving with primary search path '/home/src/workspaces/project/node_modules/@types, /home/src/workspaces/node_modules/@types, /home/src/node_modules/@types, /home/node_modules/@types, /node_modules/@types'. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Looking up in 'node_modules' folder, initial location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: Declaration. +Info seq [hh:mm:ss:mss] Found 'package.json' at '/home/src/workspaces/project/node_modules/pkg2/package.json'. +Info seq [hh:mm:ss:mss] Entering conditional exports. +Info seq [hh:mm:ss:mss] Matched 'exports' condition 'import'. +Info seq [hh:mm:ss:mss] Using 'exports' subpath '.' with target './import.js'. +Info seq [hh:mm:ss:mss] File name '/home/src/workspaces/project/node_modules/pkg2/import.js' has a '.js' extension - stripping it. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg2/import.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] 'package.json' does not have a 'peerDependencies' field. +Info seq [hh:mm:ss:mss] Resolved under condition 'import'. +Info seq [hh:mm:ss:mss] Exiting conditional exports. +Info seq [hh:mm:ss:mss] Resolving real path for '/home/src/workspaces/project/node_modules/pkg2/import.d.ts', result '/home/src/workspaces/project/node_modules/pkg2/import.d.ts'. +Info seq [hh:mm:ss:mss] ======== Type reference directive 'pkg2' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1', primary: false. ======== +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/pkg2/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] ======== Resolving type reference directive 'pkg3', containing file '/home/src/workspaces/project/fileWithTypeRefs.ts', root directory '/home/src/workspaces/project/node_modules/@types,/home/src/workspaces/node_modules/@types,/home/src/node_modules/@types,/home/node_modules/@types,/node_modules/@types'. ======== +Info seq [hh:mm:ss:mss] Resolving with primary search path '/home/src/workspaces/project/node_modules/@types, /home/src/workspaces/node_modules/@types, /home/src/node_modules/@types, /home/node_modules/@types, /node_modules/@types'. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Looking up in 'node_modules' folder, initial location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: Declaration. +Info seq [hh:mm:ss:mss] Found 'package.json' at '/home/src/workspaces/project/node_modules/pkg3/package.json'. +Info seq [hh:mm:ss:mss] Entering conditional exports. +Info seq [hh:mm:ss:mss] Saw non-matching condition 'import'. +Info seq [hh:mm:ss:mss] Matched 'exports' condition 'require'. +Info seq [hh:mm:ss:mss] Using 'exports' subpath '.' with target './require.js'. +Info seq [hh:mm:ss:mss] File name '/home/src/workspaces/project/node_modules/pkg3/require.js' has a '.js' extension - stripping it. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg3/require.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Failed to resolve under condition 'require'. +Info seq [hh:mm:ss:mss] Exiting conditional exports. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/@types/pkg3.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] ======== Type reference directive 'pkg3' was not resolved. ======== +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/pkg3/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving type reference directive 'pkg4', containing file '/home/src/workspaces/project/__inferred type names__.ts', root directory '/home/src/workspaces/project/node_modules/@types,/home/src/workspaces/node_modules/@types,/home/src/node_modules/@types,/home/node_modules/@types,/node_modules/@types'. ======== +Info seq [hh:mm:ss:mss] Resolving with primary search path '/home/src/workspaces/project/node_modules/@types, /home/src/workspaces/node_modules/@types, /home/src/node_modules/@types, /home/node_modules/@types, /node_modules/@types'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/@types/pkg4/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts', result '/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts'. +Info seq [hh:mm:ss:mss] ======== Type reference directive 'pkg4' was successfully resolved to '/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts', primary: true. ======== +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/@types/pkg4/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/@types/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/pkg4/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (9) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/node_modules/pkg0/import.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\" assert { \"resolution-mode\": \"import\" };\nimport type { RequireInterface1 } from \"pkg1\" assert { \"resolution-mode\": \"require\" };\n" + /home/src/workspaces/project/node_modules/pkg2/import.d.ts Text-1 "export {};\ndeclare global {\n interface ImportInterface2 {}\n}\n" + /home/src/workspaces/project/fileWithTypeRefs.ts Text-1 "/// \n/// \ninterface LocalInterface extends ImportInterface2, RequireInterface3 {}\nexport {}\n" + /home/src/workspaces/project/main.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/randomFileForImport.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/randomFileForTypeRef.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts Text-1 "export const x = 10;" + + + ../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + node_modules/pkg0/import.d.ts + Imported via "pkg0" from file 'fileWithImports.ts' with packageId 'pkg0/import.d.ts@0.0.1' + fileWithImports.ts + Matched by include pattern '*.ts' in 'tsconfig.json' + node_modules/pkg2/import.d.ts + Type library referenced via 'pkg2' from file 'fileWithTypeRefs.ts' with packageId 'pkg2/import.d.ts@0.0.1' + fileWithTypeRefs.ts + Matched by include pattern '*.ts' in 'tsconfig.json' + main.ts + Matched by include pattern '*.ts' in 'tsconfig.json' + randomFileForImport.ts + Matched by include pattern '*.ts' in 'tsconfig.json' + randomFileForTypeRef.ts + Matched by include pattern '*.ts' in 'tsconfig.json' + node_modules/@types/pkg4/index.d.ts + Entry point for implicit type library 'pkg4' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/home/src/workspaces/project/tsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "c508fd683797f5f4c77b8519182a36985021d6361b6a0aa9c8b69f7e25d6e876", + "fileStats": { + "js": 0, + "jsSize": 0, + "jsx": 0, + "jsxSize": 0, + "ts": 5, + "tsSize": 425, + "tsx": 0, + "tsxSize": 0, + "dts": 4, + "dtsSize": 533, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "traceResolution": true + }, + "typeAcquisition": { + "enable": false, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": true, + "exclude": true, + "compileOnSave": false, + "configFileName": "tsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/home/src/workspaces/project/main.ts", + "configFile": "/home/src/workspaces/project/tsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (9) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 1, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/home/src/workspaces/node_modules: *new* + {"pollingInterval":500} +/home/src/workspaces/node_modules/@types: *new* + {"pollingInterval":500} +/home/src/workspaces/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/@types/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/@types/pkg4/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/package.json: *new* + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: *new* + {} +/home/src/workspaces: *new* + {} +/home/src/workspaces/project: *new* + {} +/home/src/workspaces/project/fileWithImports.ts: *new* + {} +/home/src/workspaces/project/fileWithTypeRefs.ts: *new* + {} +/home/src/workspaces/project/node_modules/pkg0/package.json: *new* + {} +/home/src/workspaces/project/node_modules/pkg1/package.json: *new* + {} +/home/src/workspaces/project/node_modules/pkg2/package.json: *new* + {} +/home/src/workspaces/project/node_modules/pkg3/package.json: *new* + {} +/home/src/workspaces/project/randomFileForImport.ts: *new* + {} +/home/src/workspaces/project/randomFileForTypeRef.ts: *new* + {} +/home/src/workspaces/project/tsconfig.json: *new* + {} + +FsWatchesRecursive:: +/home/src/workspaces/project/node_modules: *new* + {} +/home/src/workspaces/project/node_modules/@types: *new* + {} + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithImports.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithTypeRefs.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/main.ts (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg0/import.d.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg2/import.d.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForImport.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForTypeRef.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +modify randomFileForImport by adding import +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /home/src/workspaces/project/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/randomFileForImport.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/randomFileForImport.ts 500 undefined WatchType: Closed Script info +Before running Timeout callback:: count: 2 +1: /home/src/workspaces/project/tsconfig.json +2: *ensureProjectForOpenFiles* +//// [/home/src/workspaces/project/randomFileForImport.ts] +import type { ImportInterface0 } from "pkg0" assert { "resolution-mode": "import" }; +export const x = 10; + + +Timeout callback:: count: 2 +1: /home/src/workspaces/project/tsconfig.json *new* +2: *ensureProjectForOpenFiles* *new* + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 2 *changed* + projectProgramVersion: 1 + dirty: true *changed* + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithTypeRefs.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/main.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg0/import.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg2/import.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForImport.ts *changed* + version: Text-1 + pendingReloadFromDisk: true *changed* + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForTypeRef.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/@types/pkg4/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of type reference directive 'pkg2' from '/home/src/workspaces/project/fileWithTypeRefs.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Info seq [hh:mm:ss:mss] Reusing resolution of type reference directive 'pkg3' from '/home/src/workspaces/project/fileWithTypeRefs.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts'. ======== +Info seq [hh:mm:ss:mss] Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. ======== +Info seq [hh:mm:ss:mss] Reusing resolution of type reference directive 'pkg4' from '/home/src/workspaces/project/__inferred type names__.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/@types/pkg4/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (9) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/node_modules/pkg0/import.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\" assert { \"resolution-mode\": \"import\" };\nimport type { RequireInterface1 } from \"pkg1\" assert { \"resolution-mode\": \"require\" };\n" + /home/src/workspaces/project/node_modules/pkg2/import.d.ts Text-1 "export {};\ndeclare global {\n interface ImportInterface2 {}\n}\n" + /home/src/workspaces/project/fileWithTypeRefs.ts Text-1 "/// \n/// \ninterface LocalInterface extends ImportInterface2, RequireInterface3 {}\nexport {}\n" + /home/src/workspaces/project/main.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/randomFileForImport.ts Text-2 "import type { ImportInterface0 } from \"pkg0\" assert { \"resolution-mode\": \"import\" };\nexport const x = 10;" + /home/src/workspaces/project/randomFileForTypeRef.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts Text-1 "export const x = 10;" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (9) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (9) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /home/src/workspaces/project/main.ts +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/home/src/workspaces/project/main.ts" + ] + } + } +After running Timeout callback:: count: 0 + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 2 + projectProgramVersion: 2 *changed* + dirty: false *changed* + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithTypeRefs.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/main.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg0/import.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg2/import.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForImport.ts *changed* + version: Text-2 *changed* + pendingReloadFromDisk: false *changed* + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForTypeRef.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +modify randomFileForTypeRef by adding typeRef +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /home/src/workspaces/project/randomFileForTypeRef.ts 1:: WatchInfo: /home/src/workspaces/project/randomFileForTypeRef.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/randomFileForTypeRef.ts 1:: WatchInfo: /home/src/workspaces/project/randomFileForTypeRef.ts 500 undefined WatchType: Closed Script info +Before running Timeout callback:: count: 2 +3: /home/src/workspaces/project/tsconfig.json +4: *ensureProjectForOpenFiles* +//// [/home/src/workspaces/project/randomFileForTypeRef.ts] +/// +export const x = 10; + + +Timeout callback:: count: 2 +3: /home/src/workspaces/project/tsconfig.json *new* +4: *ensureProjectForOpenFiles* *new* + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 3 *changed* + projectProgramVersion: 2 + dirty: true *changed* + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithTypeRefs.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/main.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg0/import.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg2/import.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForTypeRef.ts *changed* + version: Text-1 + pendingReloadFromDisk: true *changed* + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/@types/pkg4/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of type reference directive 'pkg2' from '/home/src/workspaces/project/fileWithTypeRefs.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Info seq [hh:mm:ss:mss] Reusing resolution of type reference directive 'pkg3' from '/home/src/workspaces/project/fileWithTypeRefs.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. +Info seq [hh:mm:ss:mss] ======== Resolving type reference directive 'pkg2', containing file '/home/src/workspaces/project/randomFileForTypeRef.ts'. ======== +Info seq [hh:mm:ss:mss] Resolution for type reference directive 'pkg2' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Type reference directive 'pkg2' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1', primary: false. ======== +Info seq [hh:mm:ss:mss] Reusing resolution of type reference directive 'pkg4' from '/home/src/workspaces/project/__inferred type names__.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/@types/pkg4/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 3 projectProgramVersion: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (9) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/node_modules/pkg0/import.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\" assert { \"resolution-mode\": \"import\" };\nimport type { RequireInterface1 } from \"pkg1\" assert { \"resolution-mode\": \"require\" };\n" + /home/src/workspaces/project/node_modules/pkg2/import.d.ts Text-1 "export {};\ndeclare global {\n interface ImportInterface2 {}\n}\n" + /home/src/workspaces/project/fileWithTypeRefs.ts Text-1 "/// \n/// \ninterface LocalInterface extends ImportInterface2, RequireInterface3 {}\nexport {}\n" + /home/src/workspaces/project/main.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/randomFileForImport.ts Text-2 "import type { ImportInterface0 } from \"pkg0\" assert { \"resolution-mode\": \"import\" };\nexport const x = 10;" + /home/src/workspaces/project/randomFileForTypeRef.ts Text-2 "/// \nexport const x = 10;" + /home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts Text-1 "export const x = 10;" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (9) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (9) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /home/src/workspaces/project/main.ts +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/home/src/workspaces/project/main.ts" + ] + } + } +After running Timeout callback:: count: 0 + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 3 + projectProgramVersion: 3 *changed* + dirty: false *changed* + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithTypeRefs.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/main.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg0/import.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg2/import.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForTypeRef.ts *changed* + version: Text-2 *changed* + pendingReloadFromDisk: false *changed* + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +write file not resolved by import +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg1/require.d.ts :: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg1/require.d.ts :: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg1/require.d.ts :: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg1/require.d.ts :: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Before running Timeout callback:: count: 1 +5: /home/src/workspaces/project/tsconfig.jsonFailedLookupInvalidation +//// [/home/src/workspaces/project/node_modules/pkg1/require.d.ts] +export interface RequireInterface1 {} + + +Timeout callback:: count: 1 +5: /home/src/workspaces/project/tsconfig.jsonFailedLookupInvalidation *new* + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/tsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +After running Timeout callback:: count: 2 + +Timeout callback:: count: 2 +6: /home/src/workspaces/project/tsconfig.json *new* +7: *ensureProjectForOpenFiles* *new* + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 4 *changed* + projectProgramVersion: 3 + dirty: true *changed* + autoImportProviderHost: false + +Before running Timeout callback:: count: 2 +6: /home/src/workspaces/project/tsconfig.json +7: *ensureProjectForOpenFiles* + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/@types/pkg4/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg1' from '/home/src/workspaces/project/fileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Found 'package.json' at '/home/src/workspaces/project/node_modules/pkg1/package.json'. +Info seq [hh:mm:ss:mss] Entering conditional exports. +Info seq [hh:mm:ss:mss] Saw non-matching condition 'import'. +Info seq [hh:mm:ss:mss] Matched 'exports' condition 'require'. +Info seq [hh:mm:ss:mss] Using 'exports' subpath '.' with target './require.js'. +Info seq [hh:mm:ss:mss] File name '/home/src/workspaces/project/node_modules/pkg1/require.js' has a '.js' extension - stripping it. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg1/require.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg1/require.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg1/require.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] 'package.json' does not have a 'peerDependencies' field. +Info seq [hh:mm:ss:mss] Resolved under condition 'require'. +Info seq [hh:mm:ss:mss] Exiting conditional exports. +Info seq [hh:mm:ss:mss] Resolving real path for '/home/src/workspaces/project/node_modules/pkg1/require.d.ts', result '/home/src/workspaces/project/node_modules/pkg1/require.d.ts'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg1' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/require.d.ts' with Package ID 'pkg1/require.d.ts@0.0.1'. ======== +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg1/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of type reference directive 'pkg2' from '/home/src/workspaces/project/fileWithTypeRefs.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Info seq [hh:mm:ss:mss] Reusing resolution of type reference directive 'pkg3' from '/home/src/workspaces/project/fileWithTypeRefs.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. +Info seq [hh:mm:ss:mss] Reusing resolution of type reference directive 'pkg2' from '/home/src/workspaces/project/randomFileForTypeRef.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Info seq [hh:mm:ss:mss] Reusing resolution of type reference directive 'pkg4' from '/home/src/workspaces/project/__inferred type names__.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/@types/pkg4/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 4 projectProgramVersion: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (10) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/node_modules/pkg0/import.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/node_modules/pkg1/require.d.ts Text-1 "export interface RequireInterface1 {}" + /home/src/workspaces/project/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\" assert { \"resolution-mode\": \"import\" };\nimport type { RequireInterface1 } from \"pkg1\" assert { \"resolution-mode\": \"require\" };\n" + /home/src/workspaces/project/node_modules/pkg2/import.d.ts Text-1 "export {};\ndeclare global {\n interface ImportInterface2 {}\n}\n" + /home/src/workspaces/project/fileWithTypeRefs.ts Text-1 "/// \n/// \ninterface LocalInterface extends ImportInterface2, RequireInterface3 {}\nexport {}\n" + /home/src/workspaces/project/main.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/randomFileForImport.ts Text-2 "import type { ImportInterface0 } from \"pkg0\" assert { \"resolution-mode\": \"import\" };\nexport const x = 10;" + /home/src/workspaces/project/randomFileForTypeRef.ts Text-2 "/// \nexport const x = 10;" + /home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts Text-1 "export const x = 10;" + + + ../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + node_modules/pkg0/import.d.ts + Imported via "pkg0" from file 'fileWithImports.ts' with packageId 'pkg0/import.d.ts@0.0.1' + Imported via "pkg0" from file 'randomFileForImport.ts' with packageId 'pkg0/import.d.ts@0.0.1' + node_modules/pkg1/require.d.ts + Imported via "pkg1" from file 'fileWithImports.ts' with packageId 'pkg1/require.d.ts@0.0.1' + fileWithImports.ts + Matched by include pattern '*.ts' in 'tsconfig.json' + node_modules/pkg2/import.d.ts + Type library referenced via 'pkg2' from file 'fileWithTypeRefs.ts' with packageId 'pkg2/import.d.ts@0.0.1' + Type library referenced via 'pkg2' from file 'randomFileForTypeRef.ts' with packageId 'pkg2/import.d.ts@0.0.1' + fileWithTypeRefs.ts + Matched by include pattern '*.ts' in 'tsconfig.json' + main.ts + Matched by include pattern '*.ts' in 'tsconfig.json' + randomFileForImport.ts + Matched by include pattern '*.ts' in 'tsconfig.json' + randomFileForTypeRef.ts + Matched by include pattern '*.ts' in 'tsconfig.json' + node_modules/@types/pkg4/index.d.ts + Entry point for implicit type library 'pkg4' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (10) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (10) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /home/src/workspaces/project/main.ts +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/home/src/workspaces/project/main.ts" + ] + } + } +After running Timeout callback:: count: 0 + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 4 + projectProgramVersion: 4 *changed* + dirty: false *changed* + autoImportProviderHost: undefined *changed* + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithTypeRefs.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/main.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg0/import.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg1/require.d.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg2/import.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForTypeRef.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +write file not resolved by typeRef +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg3/require.d.ts :: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg3/require.d.ts :: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg3/require.d.ts :: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg3/require.d.ts :: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Before running Timeout callback:: count: 1 +8: /home/src/workspaces/project/tsconfig.jsonFailedLookupInvalidation +//// [/home/src/workspaces/project/node_modules/pkg3/require.d.ts] +export {}; +declare global { + interface RequireInterface3 {} +} + + + +Timeout callback:: count: 1 +8: /home/src/workspaces/project/tsconfig.jsonFailedLookupInvalidation *new* + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/tsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +After running Timeout callback:: count: 2 + +Timeout callback:: count: 2 +9: /home/src/workspaces/project/tsconfig.json *new* +10: *ensureProjectForOpenFiles* *new* + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 5 *changed* + projectProgramVersion: 4 + dirty: true *changed* + +Before running Timeout callback:: count: 2 +9: /home/src/workspaces/project/tsconfig.json +10: *ensureProjectForOpenFiles* + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg1/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/@types/pkg4/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/require.d.ts' with Package ID 'pkg1/require.d.ts@0.0.1'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg1/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of type reference directive 'pkg2' from '/home/src/workspaces/project/fileWithTypeRefs.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Info seq [hh:mm:ss:mss] ======== Resolving type reference directive 'pkg3', containing file '/home/src/workspaces/project/fileWithTypeRefs.ts', root directory '/home/src/workspaces/project/node_modules/@types,/home/src/workspaces/node_modules/@types,/home/src/node_modules/@types,/home/node_modules/@types,/node_modules/@types'. ======== +Info seq [hh:mm:ss:mss] Resolving with primary search path '/home/src/workspaces/project/node_modules/@types, /home/src/workspaces/node_modules/@types, /home/src/node_modules/@types, /home/node_modules/@types, /node_modules/@types'. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Looking up in 'node_modules' folder, initial location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: Declaration. +Info seq [hh:mm:ss:mss] Found 'package.json' at '/home/src/workspaces/project/node_modules/pkg3/package.json'. +Info seq [hh:mm:ss:mss] Entering conditional exports. +Info seq [hh:mm:ss:mss] Saw non-matching condition 'import'. +Info seq [hh:mm:ss:mss] Matched 'exports' condition 'require'. +Info seq [hh:mm:ss:mss] Using 'exports' subpath '.' with target './require.js'. +Info seq [hh:mm:ss:mss] File name '/home/src/workspaces/project/node_modules/pkg3/require.js' has a '.js' extension - stripping it. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg3/require.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] 'package.json' does not have a 'peerDependencies' field. +Info seq [hh:mm:ss:mss] Resolved under condition 'require'. +Info seq [hh:mm:ss:mss] Exiting conditional exports. +Info seq [hh:mm:ss:mss] Resolving real path for '/home/src/workspaces/project/node_modules/pkg3/require.d.ts', result '/home/src/workspaces/project/node_modules/pkg3/require.d.ts'. +Info seq [hh:mm:ss:mss] ======== Type reference directive 'pkg3' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg3/require.d.ts' with Package ID 'pkg3/require.d.ts@0.0.1', primary: false. ======== +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg3/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. +Info seq [hh:mm:ss:mss] Reusing resolution of type reference directive 'pkg2' from '/home/src/workspaces/project/randomFileForTypeRef.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Info seq [hh:mm:ss:mss] Reusing resolution of type reference directive 'pkg4' from '/home/src/workspaces/project/__inferred type names__.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/@types/pkg4/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 5 projectProgramVersion: 4 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (11) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/node_modules/pkg0/import.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/node_modules/pkg1/require.d.ts Text-1 "export interface RequireInterface1 {}" + /home/src/workspaces/project/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\" assert { \"resolution-mode\": \"import\" };\nimport type { RequireInterface1 } from \"pkg1\" assert { \"resolution-mode\": \"require\" };\n" + /home/src/workspaces/project/node_modules/pkg2/import.d.ts Text-1 "export {};\ndeclare global {\n interface ImportInterface2 {}\n}\n" + /home/src/workspaces/project/node_modules/pkg3/require.d.ts Text-1 "export {};\ndeclare global {\n interface RequireInterface3 {}\n}\n" + /home/src/workspaces/project/fileWithTypeRefs.ts Text-1 "/// \n/// \ninterface LocalInterface extends ImportInterface2, RequireInterface3 {}\nexport {}\n" + /home/src/workspaces/project/main.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/randomFileForImport.ts Text-2 "import type { ImportInterface0 } from \"pkg0\" assert { \"resolution-mode\": \"import\" };\nexport const x = 10;" + /home/src/workspaces/project/randomFileForTypeRef.ts Text-2 "/// \nexport const x = 10;" + /home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts Text-1 "export const x = 10;" + + + ../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + node_modules/pkg0/import.d.ts + Imported via "pkg0" from file 'fileWithImports.ts' with packageId 'pkg0/import.d.ts@0.0.1' + Imported via "pkg0" from file 'randomFileForImport.ts' with packageId 'pkg0/import.d.ts@0.0.1' + node_modules/pkg1/require.d.ts + Imported via "pkg1" from file 'fileWithImports.ts' with packageId 'pkg1/require.d.ts@0.0.1' + fileWithImports.ts + Matched by include pattern '*.ts' in 'tsconfig.json' + node_modules/pkg2/import.d.ts + Type library referenced via 'pkg2' from file 'fileWithTypeRefs.ts' with packageId 'pkg2/import.d.ts@0.0.1' + Type library referenced via 'pkg2' from file 'randomFileForTypeRef.ts' with packageId 'pkg2/import.d.ts@0.0.1' + node_modules/pkg3/require.d.ts + Type library referenced via 'pkg3' from file 'fileWithTypeRefs.ts' with packageId 'pkg3/require.d.ts@0.0.1' + fileWithTypeRefs.ts + Matched by include pattern '*.ts' in 'tsconfig.json' + main.ts + Matched by include pattern '*.ts' in 'tsconfig.json' + randomFileForImport.ts + Matched by include pattern '*.ts' in 'tsconfig.json' + randomFileForTypeRef.ts + Matched by include pattern '*.ts' in 'tsconfig.json' + node_modules/@types/pkg4/index.d.ts + Entry point for implicit type library 'pkg4' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (11) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (11) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /home/src/workspaces/project/main.ts +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/home/src/workspaces/project/main.ts" + ] + } + } +After running Timeout callback:: count: 0 + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 5 + projectProgramVersion: 5 *changed* + dirty: false *changed* + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithTypeRefs.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/main.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg0/import.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg1/require.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg2/import.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg3/require.d.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForTypeRef.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +modify package.json and that should re-resolve +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg1/package.json 1:: WatchInfo: /home/src/workspaces/project/node_modules/pkg1/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg1/package.json 1:: WatchInfo: /home/src/workspaces/project/node_modules/pkg1/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution +Before running Timeout callback:: count: 1 +11: /home/src/workspaces/project/tsconfig.jsonFailedLookupInvalidation +//// [/home/src/workspaces/project/node_modules/pkg1/package.json] +{ + "name": "pkg1", + "version": "0.0.1", + "exports": { + "import": "./import.js", + "require": "./require1.js" + } +} + + +Timeout callback:: count: 1 +11: /home/src/workspaces/project/tsconfig.jsonFailedLookupInvalidation *new* + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/tsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +After running Timeout callback:: count: 2 + +Timeout callback:: count: 2 +12: /home/src/workspaces/project/tsconfig.json *new* +13: *ensureProjectForOpenFiles* *new* + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 6 *changed* + projectProgramVersion: 5 + dirty: true *changed* + +Before running Timeout callback:: count: 2 +12: /home/src/workspaces/project/tsconfig.json +13: *ensureProjectForOpenFiles* + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Found 'package.json' at '/home/src/workspaces/project/node_modules/pkg1/package.json'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg3/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/@types/pkg4/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg1' from '/home/src/workspaces/project/fileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg1/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Entering conditional exports. +Info seq [hh:mm:ss:mss] Saw non-matching condition 'import'. +Info seq [hh:mm:ss:mss] Matched 'exports' condition 'require'. +Info seq [hh:mm:ss:mss] Using 'exports' subpath '.' with target './require1.js'. +Info seq [hh:mm:ss:mss] File name '/home/src/workspaces/project/node_modules/pkg1/require1.js' has a '.js' extension - stripping it. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg1/require1.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg1/require1.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg1/require1.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Failed to resolve under condition 'require'. +Info seq [hh:mm:ss:mss] Exiting conditional exports. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/@types/pkg1.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Loading module 'pkg1' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg1/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Entering conditional exports. +Info seq [hh:mm:ss:mss] Saw non-matching condition 'import'. +Info seq [hh:mm:ss:mss] Matched 'exports' condition 'require'. +Info seq [hh:mm:ss:mss] Using 'exports' subpath '.' with target './require1.js'. +Info seq [hh:mm:ss:mss] File name '/home/src/workspaces/project/node_modules/pkg1/require1.js' has a '.js' extension - stripping it. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg1/require1.js' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg1/require1.jsx' does not exist. +Info seq [hh:mm:ss:mss] Failed to resolve under condition 'require'. +Info seq [hh:mm:ss:mss] Exiting conditional exports. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution of non-relative name failed; trying with '--moduleResolution bundler' to see if project may need configuration update. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg1/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Entering conditional exports. +Info seq [hh:mm:ss:mss] Matched 'exports' condition 'import'. +Info seq [hh:mm:ss:mss] Using 'exports' subpath '.' with target './import.js'. +Info seq [hh:mm:ss:mss] File name '/home/src/workspaces/project/node_modules/pkg1/import.js' has a '.js' extension - stripping it. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg1/import.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg1/import.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg1/import.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] 'package.json' does not have a 'peerDependencies' field. +Info seq [hh:mm:ss:mss] Resolved under condition 'import'. +Info seq [hh:mm:ss:mss] Exiting conditional exports. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg1' was not resolved. ======== +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of type reference directive 'pkg2' from '/home/src/workspaces/project/fileWithTypeRefs.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Info seq [hh:mm:ss:mss] Reusing resolution of type reference directive 'pkg3' from '/home/src/workspaces/project/fileWithTypeRefs.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg3/require.d.ts' with Package ID 'pkg3/require.d.ts@0.0.1'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg3/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. +Info seq [hh:mm:ss:mss] Reusing resolution of type reference directive 'pkg2' from '/home/src/workspaces/project/randomFileForTypeRef.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Info seq [hh:mm:ss:mss] Reusing resolution of type reference directive 'pkg4' from '/home/src/workspaces/project/__inferred type names__.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/@types/pkg4/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 6 projectProgramVersion: 5 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (10) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/node_modules/pkg0/import.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\" assert { \"resolution-mode\": \"import\" };\nimport type { RequireInterface1 } from \"pkg1\" assert { \"resolution-mode\": \"require\" };\n" + /home/src/workspaces/project/node_modules/pkg2/import.d.ts Text-1 "export {};\ndeclare global {\n interface ImportInterface2 {}\n}\n" + /home/src/workspaces/project/node_modules/pkg3/require.d.ts Text-1 "export {};\ndeclare global {\n interface RequireInterface3 {}\n}\n" + /home/src/workspaces/project/fileWithTypeRefs.ts Text-1 "/// \n/// \ninterface LocalInterface extends ImportInterface2, RequireInterface3 {}\nexport {}\n" + /home/src/workspaces/project/main.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/randomFileForImport.ts Text-2 "import type { ImportInterface0 } from \"pkg0\" assert { \"resolution-mode\": \"import\" };\nexport const x = 10;" + /home/src/workspaces/project/randomFileForTypeRef.ts Text-2 "/// \nexport const x = 10;" + /home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts Text-1 "export const x = 10;" + + + ../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + node_modules/pkg0/import.d.ts + Imported via "pkg0" from file 'fileWithImports.ts' with packageId 'pkg0/import.d.ts@0.0.1' + Imported via "pkg0" from file 'randomFileForImport.ts' with packageId 'pkg0/import.d.ts@0.0.1' + fileWithImports.ts + Matched by include pattern '*.ts' in 'tsconfig.json' + node_modules/pkg2/import.d.ts + Type library referenced via 'pkg2' from file 'fileWithTypeRefs.ts' with packageId 'pkg2/import.d.ts@0.0.1' + Type library referenced via 'pkg2' from file 'randomFileForTypeRef.ts' with packageId 'pkg2/import.d.ts@0.0.1' + node_modules/pkg3/require.d.ts + Type library referenced via 'pkg3' from file 'fileWithTypeRefs.ts' with packageId 'pkg3/require.d.ts@0.0.1' + fileWithTypeRefs.ts + Matched by include pattern '*.ts' in 'tsconfig.json' + main.ts + Matched by include pattern '*.ts' in 'tsconfig.json' + randomFileForImport.ts + Matched by include pattern '*.ts' in 'tsconfig.json' + randomFileForTypeRef.ts + Matched by include pattern '*.ts' in 'tsconfig.json' + node_modules/@types/pkg4/index.d.ts + Entry point for implicit type library 'pkg4' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (10) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (10) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /home/src/workspaces/project/main.ts +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/home/src/workspaces/project/main.ts" + ] + } + } +After running Timeout callback:: count: 0 + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 6 + projectProgramVersion: 6 *changed* + dirty: false *changed* + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithTypeRefs.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/main.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg0/import.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg1/require.d.ts *changed* + version: Text-1 + containingProjects: 0 *changed* + /home/src/workspaces/project/tsconfig.json *deleted* +/home/src/workspaces/project/node_modules/pkg2/import.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg3/require.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForTypeRef.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +write file not resolved by import +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg1/require1.d.ts :: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg1/require1.d.ts :: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg1/require1.d.ts :: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg1/require1.d.ts :: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Before running Timeout callback:: count: 1 +14: /home/src/workspaces/project/tsconfig.jsonFailedLookupInvalidation +//// [/home/src/workspaces/project/node_modules/pkg1/require1.d.ts] +export interface RequireInterface1 {} + + +Timeout callback:: count: 1 +14: /home/src/workspaces/project/tsconfig.jsonFailedLookupInvalidation *new* + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/tsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +After running Timeout callback:: count: 2 + +Timeout callback:: count: 2 +15: /home/src/workspaces/project/tsconfig.json *new* +16: *ensureProjectForOpenFiles* *new* + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 7 *changed* + projectProgramVersion: 6 + dirty: true *changed* + +Before running Timeout callback:: count: 2 +15: /home/src/workspaces/project/tsconfig.json +16: *ensureProjectForOpenFiles* + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg3/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/@types/pkg4/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg1' from '/home/src/workspaces/project/fileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Found 'package.json' at '/home/src/workspaces/project/node_modules/pkg1/package.json'. +Info seq [hh:mm:ss:mss] Entering conditional exports. +Info seq [hh:mm:ss:mss] Saw non-matching condition 'import'. +Info seq [hh:mm:ss:mss] Matched 'exports' condition 'require'. +Info seq [hh:mm:ss:mss] Using 'exports' subpath '.' with target './require1.js'. +Info seq [hh:mm:ss:mss] File name '/home/src/workspaces/project/node_modules/pkg1/require1.js' has a '.js' extension - stripping it. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg1/require1.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg1/require1.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg1/require1.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] 'package.json' does not have a 'peerDependencies' field. +Info seq [hh:mm:ss:mss] Resolved under condition 'require'. +Info seq [hh:mm:ss:mss] Exiting conditional exports. +Info seq [hh:mm:ss:mss] Resolving real path for '/home/src/workspaces/project/node_modules/pkg1/require1.d.ts', result '/home/src/workspaces/project/node_modules/pkg1/require1.d.ts'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg1' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/require1.d.ts' with Package ID 'pkg1/require1.d.ts@0.0.1'. ======== +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg1/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of type reference directive 'pkg2' from '/home/src/workspaces/project/fileWithTypeRefs.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Info seq [hh:mm:ss:mss] Reusing resolution of type reference directive 'pkg3' from '/home/src/workspaces/project/fileWithTypeRefs.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg3/require.d.ts' with Package ID 'pkg3/require.d.ts@0.0.1'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg3/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. +Info seq [hh:mm:ss:mss] Reusing resolution of type reference directive 'pkg2' from '/home/src/workspaces/project/randomFileForTypeRef.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Info seq [hh:mm:ss:mss] Reusing resolution of type reference directive 'pkg4' from '/home/src/workspaces/project/__inferred type names__.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/@types/pkg4/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 7 projectProgramVersion: 6 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (11) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/node_modules/pkg0/import.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/node_modules/pkg1/require1.d.ts Text-1 "export interface RequireInterface1 {}" + /home/src/workspaces/project/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\" assert { \"resolution-mode\": \"import\" };\nimport type { RequireInterface1 } from \"pkg1\" assert { \"resolution-mode\": \"require\" };\n" + /home/src/workspaces/project/node_modules/pkg2/import.d.ts Text-1 "export {};\ndeclare global {\n interface ImportInterface2 {}\n}\n" + /home/src/workspaces/project/node_modules/pkg3/require.d.ts Text-1 "export {};\ndeclare global {\n interface RequireInterface3 {}\n}\n" + /home/src/workspaces/project/fileWithTypeRefs.ts Text-1 "/// \n/// \ninterface LocalInterface extends ImportInterface2, RequireInterface3 {}\nexport {}\n" + /home/src/workspaces/project/main.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/randomFileForImport.ts Text-2 "import type { ImportInterface0 } from \"pkg0\" assert { \"resolution-mode\": \"import\" };\nexport const x = 10;" + /home/src/workspaces/project/randomFileForTypeRef.ts Text-2 "/// \nexport const x = 10;" + /home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts Text-1 "export const x = 10;" + + + ../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + node_modules/pkg0/import.d.ts + Imported via "pkg0" from file 'fileWithImports.ts' with packageId 'pkg0/import.d.ts@0.0.1' + Imported via "pkg0" from file 'randomFileForImport.ts' with packageId 'pkg0/import.d.ts@0.0.1' + node_modules/pkg1/require1.d.ts + Imported via "pkg1" from file 'fileWithImports.ts' with packageId 'pkg1/require1.d.ts@0.0.1' + fileWithImports.ts + Matched by include pattern '*.ts' in 'tsconfig.json' + node_modules/pkg2/import.d.ts + Type library referenced via 'pkg2' from file 'fileWithTypeRefs.ts' with packageId 'pkg2/import.d.ts@0.0.1' + Type library referenced via 'pkg2' from file 'randomFileForTypeRef.ts' with packageId 'pkg2/import.d.ts@0.0.1' + node_modules/pkg3/require.d.ts + Type library referenced via 'pkg3' from file 'fileWithTypeRefs.ts' with packageId 'pkg3/require.d.ts@0.0.1' + fileWithTypeRefs.ts + Matched by include pattern '*.ts' in 'tsconfig.json' + main.ts + Matched by include pattern '*.ts' in 'tsconfig.json' + randomFileForImport.ts + Matched by include pattern '*.ts' in 'tsconfig.json' + randomFileForTypeRef.ts + Matched by include pattern '*.ts' in 'tsconfig.json' + node_modules/@types/pkg4/index.d.ts + Entry point for implicit type library 'pkg4' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (11) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (11) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /home/src/workspaces/project/main.ts +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/home/src/workspaces/project/main.ts" + ] + } + } +After running Timeout callback:: count: 0 + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 7 + projectProgramVersion: 7 *changed* + dirty: false *changed* + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithTypeRefs.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/main.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg0/import.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg1/require.d.ts + version: Text-1 + containingProjects: 0 +/home/src/workspaces/project/node_modules/pkg1/require1.d.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg2/import.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg3/require.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForTypeRef.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +delete file with imports +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /home/src/workspaces/project/fileWithImports.ts 2:: WatchInfo: /home/src/workspaces/project/fileWithImports.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/fileWithImports.ts 2:: WatchInfo: /home/src/workspaces/project/fileWithImports.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/workspaces/project/fileWithImports.ts :: WatchInfo: /home/src/workspaces/project 0 undefined Config: /home/src/workspaces/project/tsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.json, Cancelled earlier one +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/fileWithImports.ts :: WatchInfo: /home/src/workspaces/project 0 undefined Config: /home/src/workspaces/project/tsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/workspaces/project/fileWithImports.ts :: WatchInfo: /home/src/workspaces/project 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/fileWithImports.ts :: WatchInfo: /home/src/workspaces/project 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Before running Timeout callback:: count: 3 +19: /home/src/workspaces/project/tsconfig.json +20: *ensureProjectForOpenFiles* +21: /home/src/workspaces/project/tsconfig.jsonFailedLookupInvalidation +//// [/home/src/workspaces/project/fileWithImports.ts] deleted + +Timeout callback:: count: 3 +19: /home/src/workspaces/project/tsconfig.json *new* +20: *ensureProjectForOpenFiles* *new* +21: /home/src/workspaces/project/tsconfig.jsonFailedLookupInvalidation *new* + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 8 *changed* + projectProgramVersion: 7 + dirty: true *changed* + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithImports.ts *changed* + version: Text-1 + pendingReloadFromDisk: true *changed* + deferredDelete: true *changed* + containingProjects: 0 *changed* + /home/src/workspaces/project/tsconfig.json *deleted* +/home/src/workspaces/project/fileWithTypeRefs.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/main.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg0/import.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg1/require.d.ts + version: Text-1 + containingProjects: 0 +/home/src/workspaces/project/node_modules/pkg1/require1.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg2/import.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg3/require.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForTypeRef.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Reusing resolution of type reference directive 'pkg2' from '/home/src/workspaces/project/fileWithTypeRefs.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Info seq [hh:mm:ss:mss] Reusing resolution of type reference directive 'pkg3' from '/home/src/workspaces/project/fileWithTypeRefs.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg3/require.d.ts' with Package ID 'pkg3/require.d.ts@0.0.1'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg3/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of type reference directive 'pkg2' from '/home/src/workspaces/project/randomFileForTypeRef.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Info seq [hh:mm:ss:mss] Reusing resolution of type reference directive 'pkg4' from '/home/src/workspaces/project/__inferred type names__.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/@types/pkg4/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/pkg1/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 8 projectProgramVersion: 7 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (9) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/node_modules/pkg2/import.d.ts Text-1 "export {};\ndeclare global {\n interface ImportInterface2 {}\n}\n" + /home/src/workspaces/project/node_modules/pkg3/require.d.ts Text-1 "export {};\ndeclare global {\n interface RequireInterface3 {}\n}\n" + /home/src/workspaces/project/fileWithTypeRefs.ts Text-1 "/// \n/// \ninterface LocalInterface extends ImportInterface2, RequireInterface3 {}\nexport {}\n" + /home/src/workspaces/project/main.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/node_modules/pkg0/import.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/randomFileForImport.ts Text-2 "import type { ImportInterface0 } from \"pkg0\" assert { \"resolution-mode\": \"import\" };\nexport const x = 10;" + /home/src/workspaces/project/randomFileForTypeRef.ts Text-2 "/// \nexport const x = 10;" + /home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts Text-1 "export const x = 10;" + + + ../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + node_modules/pkg2/import.d.ts + Type library referenced via 'pkg2' from file 'fileWithTypeRefs.ts' with packageId 'pkg2/import.d.ts@0.0.1' + Type library referenced via 'pkg2' from file 'randomFileForTypeRef.ts' with packageId 'pkg2/import.d.ts@0.0.1' + node_modules/pkg3/require.d.ts + Type library referenced via 'pkg3' from file 'fileWithTypeRefs.ts' with packageId 'pkg3/require.d.ts@0.0.1' + fileWithTypeRefs.ts + Matched by include pattern '*.ts' in 'tsconfig.json' + main.ts + Matched by include pattern '*.ts' in 'tsconfig.json' + node_modules/pkg0/import.d.ts + Imported via "pkg0" from file 'randomFileForImport.ts' with packageId 'pkg0/import.d.ts@0.0.1' + randomFileForImport.ts + Matched by include pattern '*.ts' in 'tsconfig.json' + randomFileForTypeRef.ts + Matched by include pattern '*.ts' in 'tsconfig.json' + node_modules/@types/pkg4/index.d.ts + Entry point for implicit type library 'pkg4' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (9) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (9) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /home/src/workspaces/project/main.ts +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/home/src/workspaces/project/main.ts" + ] + } + } +After running Timeout callback:: count: 0 + +PolledWatches:: +/home/src/workspaces/node_modules: + {"pollingInterval":500} +/home/src/workspaces/node_modules/@types: + {"pollingInterval":500} +/home/src/workspaces/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/@types/pkg4/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/home/src/workspaces: + {} +/home/src/workspaces/project: + {} +/home/src/workspaces/project/fileWithImports.ts: + {} +/home/src/workspaces/project/fileWithTypeRefs.ts: + {} +/home/src/workspaces/project/node_modules/pkg0/package.json: + {} +/home/src/workspaces/project/node_modules/pkg2/package.json: + {} +/home/src/workspaces/project/node_modules/pkg3/package.json: + {} +/home/src/workspaces/project/randomFileForImport.ts: + {} +/home/src/workspaces/project/randomFileForTypeRef.ts: + {} +/home/src/workspaces/project/tsconfig.json: + {} + +FsWatches *deleted*:: +/home/src/workspaces/project/node_modules/pkg1/package.json: + {} + +FsWatchesRecursive:: +/home/src/workspaces/project/node_modules: + {} +/home/src/workspaces/project/node_modules/@types: + {} + +Timeout callback:: count: 0 +21: /home/src/workspaces/project/tsconfig.jsonFailedLookupInvalidation *deleted* + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 8 + projectProgramVersion: 8 *changed* + dirty: false *changed* + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithImports.ts + version: Text-1 + pendingReloadFromDisk: true + deferredDelete: true + containingProjects: 0 +/home/src/workspaces/project/fileWithTypeRefs.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/main.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg0/import.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg1/require.d.ts + version: Text-1 + containingProjects: 0 +/home/src/workspaces/project/node_modules/pkg1/require1.d.ts *changed* + version: Text-1 + containingProjects: 0 *changed* + /home/src/workspaces/project/tsconfig.json *deleted* +/home/src/workspaces/project/node_modules/pkg2/import.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg3/require.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForTypeRef.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +delete file with typeRefs +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /home/src/workspaces/project/fileWithTypeRefs.ts 2:: WatchInfo: /home/src/workspaces/project/fileWithTypeRefs.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/fileWithTypeRefs.ts 2:: WatchInfo: /home/src/workspaces/project/fileWithTypeRefs.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/workspaces/project/fileWithTypeRefs.ts :: WatchInfo: /home/src/workspaces/project 0 undefined Config: /home/src/workspaces/project/tsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.json, Cancelled earlier one +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/fileWithTypeRefs.ts :: WatchInfo: /home/src/workspaces/project 0 undefined Config: /home/src/workspaces/project/tsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/workspaces/project/fileWithTypeRefs.ts :: WatchInfo: /home/src/workspaces/project 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/fileWithTypeRefs.ts :: WatchInfo: /home/src/workspaces/project 0 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Before running Timeout callback:: count: 3 +24: /home/src/workspaces/project/tsconfig.json +25: *ensureProjectForOpenFiles* +26: /home/src/workspaces/project/tsconfig.jsonFailedLookupInvalidation +//// [/home/src/workspaces/project/fileWithTypeRefs.ts] deleted + +Timeout callback:: count: 3 +24: /home/src/workspaces/project/tsconfig.json *new* +25: *ensureProjectForOpenFiles* *new* +26: /home/src/workspaces/project/tsconfig.jsonFailedLookupInvalidation *new* + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 9 *changed* + projectProgramVersion: 8 + dirty: true *changed* + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithImports.ts + version: Text-1 + pendingReloadFromDisk: true + deferredDelete: true + containingProjects: 0 +/home/src/workspaces/project/fileWithTypeRefs.ts *changed* + version: Text-1 + pendingReloadFromDisk: true *changed* + deferredDelete: true *changed* + containingProjects: 0 *changed* + /home/src/workspaces/project/tsconfig.json *deleted* +/home/src/workspaces/project/main.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg0/import.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg1/require.d.ts + version: Text-1 + containingProjects: 0 +/home/src/workspaces/project/node_modules/pkg1/require1.d.ts + version: Text-1 + containingProjects: 0 +/home/src/workspaces/project/node_modules/pkg2/import.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg3/require.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForTypeRef.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/import.d.ts' with Package ID 'pkg0/import.d.ts@0.0.1'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of type reference directive 'pkg2' from '/home/src/workspaces/project/randomFileForTypeRef.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of type reference directive 'pkg4' from '/home/src/workspaces/project/__inferred type names__.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/@types/pkg4/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/workspaces/project/node_modules/pkg3/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 9 projectProgramVersion: 8 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (7) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/main.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/node_modules/pkg0/import.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/randomFileForImport.ts Text-2 "import type { ImportInterface0 } from \"pkg0\" assert { \"resolution-mode\": \"import\" };\nexport const x = 10;" + /home/src/workspaces/project/node_modules/pkg2/import.d.ts Text-1 "export {};\ndeclare global {\n interface ImportInterface2 {}\n}\n" + /home/src/workspaces/project/randomFileForTypeRef.ts Text-2 "/// \nexport const x = 10;" + /home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts Text-1 "export const x = 10;" + + + ../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + main.ts + Matched by include pattern '*.ts' in 'tsconfig.json' + node_modules/pkg0/import.d.ts + Imported via "pkg0" from file 'randomFileForImport.ts' with packageId 'pkg0/import.d.ts@0.0.1' + randomFileForImport.ts + Matched by include pattern '*.ts' in 'tsconfig.json' + node_modules/pkg2/import.d.ts + Type library referenced via 'pkg2' from file 'randomFileForTypeRef.ts' with packageId 'pkg2/import.d.ts@0.0.1' + randomFileForTypeRef.ts + Matched by include pattern '*.ts' in 'tsconfig.json' + node_modules/@types/pkg4/index.d.ts + Entry point for implicit type library 'pkg4' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (7) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (7) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /home/src/workspaces/project/main.ts +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/home/src/workspaces/project/main.ts" + ] + } + } +After running Timeout callback:: count: 0 + +PolledWatches:: +/home/src/workspaces/node_modules: + {"pollingInterval":500} +/home/src/workspaces/node_modules/@types: + {"pollingInterval":500} +/home/src/workspaces/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/@types/pkg4/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/home/src/workspaces: + {} +/home/src/workspaces/project: + {} +/home/src/workspaces/project/fileWithImports.ts: + {} +/home/src/workspaces/project/fileWithTypeRefs.ts: + {} +/home/src/workspaces/project/node_modules/pkg0/package.json: + {} +/home/src/workspaces/project/node_modules/pkg2/package.json: + {} +/home/src/workspaces/project/randomFileForImport.ts: + {} +/home/src/workspaces/project/randomFileForTypeRef.ts: + {} +/home/src/workspaces/project/tsconfig.json: + {} + +FsWatches *deleted*:: +/home/src/workspaces/project/node_modules/pkg3/package.json: + {} + +FsWatchesRecursive:: +/home/src/workspaces/project/node_modules: + {} +/home/src/workspaces/project/node_modules/@types: + {} + +Timeout callback:: count: 0 +26: /home/src/workspaces/project/tsconfig.jsonFailedLookupInvalidation *deleted* + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 9 + projectProgramVersion: 9 *changed* + dirty: false *changed* + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithImports.ts + version: Text-1 + pendingReloadFromDisk: true + deferredDelete: true + containingProjects: 0 +/home/src/workspaces/project/fileWithTypeRefs.ts + version: Text-1 + pendingReloadFromDisk: true + deferredDelete: true + containingProjects: 0 +/home/src/workspaces/project/main.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg0/import.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg1/require.d.ts + version: Text-1 + containingProjects: 0 +/home/src/workspaces/project/node_modules/pkg1/require1.d.ts + version: Text-1 + containingProjects: 0 +/home/src/workspaces/project/node_modules/pkg2/import.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg3/require.d.ts *changed* + version: Text-1 + containingProjects: 0 *changed* + /home/src/workspaces/project/tsconfig.json *deleted* +/home/src/workspaces/project/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForTypeRef.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +delete resolved import file +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg0/import.d.ts :: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg0/import.d.ts :: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg0/import.d.ts :: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg0/import.d.ts :: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Before running Timeout callback:: count: 3 +27: /home/src/workspaces/project/tsconfig.jsonFailedLookupInvalidation +28: /home/src/workspaces/project/tsconfig.json +29: *ensureProjectForOpenFiles* +//// [/home/src/workspaces/project/node_modules/pkg0/import.d.ts] deleted + +Timeout callback:: count: 3 +27: /home/src/workspaces/project/tsconfig.jsonFailedLookupInvalidation *new* +28: /home/src/workspaces/project/tsconfig.json *new* +29: *ensureProjectForOpenFiles* *new* + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 10 *changed* + projectProgramVersion: 9 + dirty: true *changed* + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithImports.ts + version: Text-1 + pendingReloadFromDisk: true + deferredDelete: true + containingProjects: 0 +/home/src/workspaces/project/fileWithTypeRefs.ts + version: Text-1 + pendingReloadFromDisk: true + deferredDelete: true + containingProjects: 0 +/home/src/workspaces/project/main.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg0/import.d.ts *changed* + version: Text-1 + pendingReloadFromDisk: true *changed* + deferredDelete: true *changed* + containingProjects: 0 *changed* + /home/src/workspaces/project/tsconfig.json *deleted* +/home/src/workspaces/project/node_modules/pkg1/require.d.ts + version: Text-1 + containingProjects: 0 +/home/src/workspaces/project/node_modules/pkg1/require1.d.ts + version: Text-1 + containingProjects: 0 +/home/src/workspaces/project/node_modules/pkg2/import.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg3/require.d.ts + version: Text-1 + containingProjects: 0 +/home/src/workspaces/project/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForTypeRef.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/tsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Found 'package.json' at '/home/src/workspaces/project/node_modules/pkg0/package.json'. +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Entering conditional exports. +Info seq [hh:mm:ss:mss] Matched 'exports' condition 'import'. +Info seq [hh:mm:ss:mss] Using 'exports' subpath '.' with target './import.js'. +Info seq [hh:mm:ss:mss] File name '/home/src/workspaces/project/node_modules/pkg0/import.js' has a '.js' extension - stripping it. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/import.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/import.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/import.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Failed to resolve under condition 'import'. +Info seq [hh:mm:ss:mss] Saw non-matching condition 'require'. +Info seq [hh:mm:ss:mss] Exiting conditional exports. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/@types/pkg0.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Loading module 'pkg0' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Entering conditional exports. +Info seq [hh:mm:ss:mss] Matched 'exports' condition 'import'. +Info seq [hh:mm:ss:mss] Using 'exports' subpath '.' with target './import.js'. +Info seq [hh:mm:ss:mss] File name '/home/src/workspaces/project/node_modules/pkg0/import.js' has a '.js' extension - stripping it. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/import.js' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/import.jsx' does not exist. +Info seq [hh:mm:ss:mss] Failed to resolve under condition 'import'. +Info seq [hh:mm:ss:mss] Saw non-matching condition 'require'. +Info seq [hh:mm:ss:mss] Exiting conditional exports. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution of non-relative name failed; trying with '--moduleResolution bundler' to see if project may need configuration update. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Entering conditional exports. +Info seq [hh:mm:ss:mss] Matched 'exports' condition 'import'. +Info seq [hh:mm:ss:mss] Using 'exports' subpath '.' with target './import.js'. +Info seq [hh:mm:ss:mss] File name '/home/src/workspaces/project/node_modules/pkg0/import.js' has a '.js' extension - stripping it. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/import.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/import.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/import.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Failed to resolve under condition 'import'. +Info seq [hh:mm:ss:mss] Saw non-matching condition 'require'. +Info seq [hh:mm:ss:mss] Exiting conditional exports. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/@types/pkg0.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was not resolved. ======== +Info seq [hh:mm:ss:mss] Reusing resolution of type reference directive 'pkg2' from '/home/src/workspaces/project/randomFileForTypeRef.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg2/import.d.ts' with Package ID 'pkg2/import.d.ts@0.0.1'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of type reference directive 'pkg4' from '/home/src/workspaces/project/__inferred type names__.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/@types/pkg4/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 10 projectProgramVersion: 9 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (6) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/main.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/randomFileForImport.ts Text-2 "import type { ImportInterface0 } from \"pkg0\" assert { \"resolution-mode\": \"import\" };\nexport const x = 10;" + /home/src/workspaces/project/node_modules/pkg2/import.d.ts Text-1 "export {};\ndeclare global {\n interface ImportInterface2 {}\n}\n" + /home/src/workspaces/project/randomFileForTypeRef.ts Text-2 "/// \nexport const x = 10;" + /home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts Text-1 "export const x = 10;" + + + ../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + main.ts + Matched by include pattern '*.ts' in 'tsconfig.json' + randomFileForImport.ts + Matched by include pattern '*.ts' in 'tsconfig.json' + node_modules/pkg2/import.d.ts + Type library referenced via 'pkg2' from file 'randomFileForTypeRef.ts' with packageId 'pkg2/import.d.ts@0.0.1' + randomFileForTypeRef.ts + Matched by include pattern '*.ts' in 'tsconfig.json' + node_modules/@types/pkg4/index.d.ts + Entry point for implicit type library 'pkg4' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (6) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (6) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /home/src/workspaces/project/main.ts +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/home/src/workspaces/project/main.ts" + ] + } + } +After running Timeout callback:: count: 0 + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 10 + projectProgramVersion: 10 *changed* + dirty: false *changed* + +delete resolved typeRef file +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg2/import.d.ts :: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg2/import.d.ts :: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg2/import.d.ts :: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg2/import.d.ts :: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Before running Timeout callback:: count: 3 +30: /home/src/workspaces/project/tsconfig.jsonFailedLookupInvalidation +31: /home/src/workspaces/project/tsconfig.json +32: *ensureProjectForOpenFiles* +//// [/home/src/workspaces/project/node_modules/pkg2/import.d.ts] deleted + +Timeout callback:: count: 3 +30: /home/src/workspaces/project/tsconfig.jsonFailedLookupInvalidation *new* +31: /home/src/workspaces/project/tsconfig.json *new* +32: *ensureProjectForOpenFiles* *new* + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 11 *changed* + projectProgramVersion: 10 + dirty: true *changed* + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithImports.ts + version: Text-1 + pendingReloadFromDisk: true + deferredDelete: true + containingProjects: 0 +/home/src/workspaces/project/fileWithTypeRefs.ts + version: Text-1 + pendingReloadFromDisk: true + deferredDelete: true + containingProjects: 0 +/home/src/workspaces/project/main.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg0/import.d.ts + version: Text-1 + pendingReloadFromDisk: true + deferredDelete: true + containingProjects: 0 +/home/src/workspaces/project/node_modules/pkg1/require.d.ts + version: Text-1 + containingProjects: 0 +/home/src/workspaces/project/node_modules/pkg1/require1.d.ts + version: Text-1 + containingProjects: 0 +/home/src/workspaces/project/node_modules/pkg2/import.d.ts *changed* + version: Text-1 + pendingReloadFromDisk: true *changed* + deferredDelete: true *changed* + containingProjects: 0 *changed* + /home/src/workspaces/project/tsconfig.json *deleted* +/home/src/workspaces/project/node_modules/pkg3/require.d.ts + version: Text-1 + containingProjects: 0 +/home/src/workspaces/project/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForTypeRef.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/tsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Found 'package.json' at '/home/src/workspaces/project/node_modules/pkg2/package.json'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] ======== Resolving type reference directive 'pkg2', containing file '/home/src/workspaces/project/randomFileForTypeRef.ts', root directory '/home/src/workspaces/project/node_modules/@types,/home/src/workspaces/node_modules/@types,/home/src/node_modules/@types,/home/node_modules/@types,/node_modules/@types'. ======== +Info seq [hh:mm:ss:mss] Resolving with primary search path '/home/src/workspaces/project/node_modules/@types, /home/src/workspaces/node_modules/@types, /home/src/node_modules/@types, /home/node_modules/@types, /node_modules/@types'. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Looking up in 'node_modules' folder, initial location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: Declaration. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg2/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Entering conditional exports. +Info seq [hh:mm:ss:mss] Matched 'exports' condition 'import'. +Info seq [hh:mm:ss:mss] Using 'exports' subpath '.' with target './import.js'. +Info seq [hh:mm:ss:mss] File name '/home/src/workspaces/project/node_modules/pkg2/import.js' has a '.js' extension - stripping it. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg2/import.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Failed to resolve under condition 'import'. +Info seq [hh:mm:ss:mss] Saw non-matching condition 'require'. +Info seq [hh:mm:ss:mss] Exiting conditional exports. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/@types/pkg2.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] ======== Type reference directive 'pkg2' was not resolved. ======== +Info seq [hh:mm:ss:mss] Reusing resolution of type reference directive 'pkg4' from '/home/src/workspaces/project/__inferred type names__.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/@types/pkg4/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 11 projectProgramVersion: 10 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/main.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/randomFileForImport.ts Text-2 "import type { ImportInterface0 } from \"pkg0\" assert { \"resolution-mode\": \"import\" };\nexport const x = 10;" + /home/src/workspaces/project/randomFileForTypeRef.ts Text-2 "/// \nexport const x = 10;" + /home/src/workspaces/project/node_modules/@types/pkg4/index.d.ts Text-1 "export const x = 10;" + + + ../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + main.ts + Matched by include pattern '*.ts' in 'tsconfig.json' + randomFileForImport.ts + Matched by include pattern '*.ts' in 'tsconfig.json' + randomFileForTypeRef.ts + Matched by include pattern '*.ts' in 'tsconfig.json' + node_modules/@types/pkg4/index.d.ts + Entry point for implicit type library 'pkg4' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /home/src/workspaces/project/main.ts +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/home/src/workspaces/project/main.ts" + ] + } + } +After running Timeout callback:: count: 0 + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 11 + projectProgramVersion: 11 *changed* + dirty: false *changed* diff --git a/tests/baselines/reference/tsserver/resolutionCache/project-with-multiple-places-imports.js b/tests/baselines/reference/tsserver/resolutionCache/project-with-multiple-places-imports.js new file mode 100644 index 0000000000000..587aeaeaa7241 --- /dev/null +++ b/tests/baselines/reference/tsserver/resolutionCache/project-with-multiple-places-imports.js @@ -0,0 +1,5783 @@ +Info seq [hh:mm:ss:mss] currentDirectory:: /home/src/Vscode/Projects/bin useCaseSensitiveFileNames:: false +Info seq [hh:mm:ss:mss] libs Location:: /home/src/tslibs/TS/Lib +Info seq [hh:mm:ss:mss] globalTypingsCacheLocation:: /home/src/Library/Caches/typescript +Info seq [hh:mm:ss:mss] Provided types map file "/home/src/tslibs/TS/Lib/typesMap.json" doesn't exist +Before request +//// [/home/src/workspaces/project/tsconfig.json] +{ + "compilerOptions": { + "traceResolution": true + }, + "files": [ + "main.ts", + "fileWithImports.ts", + "randomFileForImport.ts", + "a/fileWithImports.ts", + "b/ba/fileWithImports.ts", + "b/randomFileForImport.ts", + "c/ca/fileWithImports.ts", + "c/ca/caa/randomFileForImport.ts", + "c/ca/caa/caaa/fileWithImports.ts", + "c/cb/fileWithImports.ts", + "d/da/daa/daaa/x/y/z/randomFileForImport.ts", + "d/da/daa/daaa/fileWithImports.ts", + "d/da/daa/fileWithImports.ts", + "d/da/fileWithImports.ts", + "e/ea/fileWithImports.ts", + "e/ea/eaa/fileWithImports.ts", + "e/ea/eaa/eaaa/fileWithImports.ts", + "e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts", + "f/fa/faa/x/y/z/randomFileForImport.ts", + "f/fa/faa/faaa/fileWithImports.ts" + ] +} + +//// [/home/src/workspaces/project/main.ts] +export const x = 10; + +//// [/home/src/workspaces/project/fileWithImports.ts] +import type { ImportInterface0 } from "pkg0"; +import type { ImportInterface1 } from "pkg1"; + + +//// [/home/src/workspaces/project/randomFileForImport.ts] +export const x = 10; + +//// [/home/src/workspaces/project/a/fileWithImports.ts] +import type { ImportInterface0 } from "pkg0"; +import type { ImportInterface1 } from "pkg1"; + + +//// [/home/src/workspaces/project/b/ba/fileWithImports.ts] +import type { ImportInterface0 } from "pkg0"; +import type { ImportInterface1 } from "pkg1"; + + +//// [/home/src/workspaces/project/b/randomFileForImport.ts] +export const x = 10; + +//// [/home/src/workspaces/project/c/ca/fileWithImports.ts] +import type { ImportInterface0 } from "pkg0"; +import type { ImportInterface1 } from "pkg1"; + + +//// [/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts] +export const x = 10; + +//// [/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts] +import type { ImportInterface0 } from "pkg0"; +import type { ImportInterface1 } from "pkg1"; + + +//// [/home/src/workspaces/project/c/cb/fileWithImports.ts] +import type { ImportInterface0 } from "pkg0"; +import type { ImportInterface1 } from "pkg1"; + + +//// [/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts] +export const x = 10; + +//// [/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts] +import type { ImportInterface0 } from "pkg0"; +import type { ImportInterface1 } from "pkg1"; + + +//// [/home/src/workspaces/project/d/da/daa/fileWithImports.ts] +import type { ImportInterface0 } from "pkg0"; +import type { ImportInterface1 } from "pkg1"; + + +//// [/home/src/workspaces/project/d/da/fileWithImports.ts] +import type { ImportInterface0 } from "pkg0"; +import type { ImportInterface1 } from "pkg1"; + + +//// [/home/src/workspaces/project/e/ea/fileWithImports.ts] +import type { ImportInterface0 } from "pkg0"; +import type { ImportInterface1 } from "pkg1"; + + +//// [/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts] +import type { ImportInterface0 } from "pkg0"; +import type { ImportInterface1 } from "pkg1"; + + +//// [/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts] +import type { ImportInterface0 } from "pkg0"; +import type { ImportInterface1 } from "pkg1"; + + +//// [/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts] +export const x = 10; + +//// [/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts] +import type { ImportInterface0 } from "pkg0"; +import type { ImportInterface1 } from "pkg1"; + + +//// [/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts] +export const x = 10; + +//// [/home/src/workspaces/project/node_modules/pkg0/index.d.ts] +export interface ImportInterface0 {} + +//// [/home/src/tslibs/TS/Lib/lib.d.ts] +/// +interface Boolean {} +interface Function {} +interface CallableFunction {} +interface NewableFunction {} +interface IArguments {} +interface Number { toExponential: any; } +interface Object {} +interface RegExp {} +interface String { charAt: any; } +interface Array { length: number; [n: number]: T; } +interface ReadonlyArray {} +declare const console: { log(msg: any): void; }; + + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/home/src/workspaces/project/main.ts" + }, + "seq": 1, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/project/main.ts ProjectRootPath: undefined:: Result: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /home/src/workspaces/project/tsconfig.json, currentDirectory: /home/src/workspaces/project +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/tsconfig.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /home/src/workspaces/project/tsconfig.json : { + "rootNames": [ + "/home/src/workspaces/project/main.ts", + "/home/src/workspaces/project/fileWithImports.ts", + "/home/src/workspaces/project/randomFileForImport.ts", + "/home/src/workspaces/project/a/fileWithImports.ts", + "/home/src/workspaces/project/b/ba/fileWithImports.ts", + "/home/src/workspaces/project/b/randomFileForImport.ts", + "/home/src/workspaces/project/c/ca/fileWithImports.ts", + "/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts", + "/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts", + "/home/src/workspaces/project/c/cb/fileWithImports.ts", + "/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts", + "/home/src/workspaces/project/d/da/daa/fileWithImports.ts", + "/home/src/workspaces/project/d/da/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts" + ], + "options": { + "traceResolution": true, + "configFilePath": "/home/src/workspaces/project/tsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/home/src/workspaces/project/tsconfig.json", + "reason": "Creating possible configured project for /home/src/workspaces/project/main.ts to open" + } + } +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/fileWithImports.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/randomFileForImport.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/a/fileWithImports.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/b/ba/fileWithImports.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/b/randomFileForImport.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/c/ca/fileWithImports.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/c/ca/caa/randomFileForImport.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/c/cb/fileWithImports.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/d/da/daa/fileWithImports.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/d/da/fileWithImports.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/e/ea/fileWithImports.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/e/ea/eaa/fileWithImports.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/fileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/home/src/workspaces/project/node_modules/pkg0/index.d.ts', result '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg1' from '/home/src/workspaces/project/fileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg1.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg1.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg1.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'pkg1' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg1.js' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg1.jsx' does not exist. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg1' was not resolved. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/a/fileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/a/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/a 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/a 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg1' from '/home/src/workspaces/project/a/fileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/a/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg1' was not resolved. ======== +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/b/ba/fileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/b/ba/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/b/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/b 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/b 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg1' from '/home/src/workspaces/project/b/ba/fileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/b/ba/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/b/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg1' was not resolved. ======== +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/c/ca/fileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/c/ca/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/c/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/c 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/c 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg1' from '/home/src/workspaces/project/c/ca/fileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/c/ca/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/c/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg1' was not resolved. ======== +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/c/ca/caa/caaa/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/c/ca/caa/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project/c/ca'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg1' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/c/ca/caa/caaa/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/c/ca/caa/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project/c/ca'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg1' was not resolved. ======== +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/c/cb/fileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/c/cb/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project/c'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg1' from '/home/src/workspaces/project/c/cb/fileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/c/cb/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project/c'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg1' was not resolved. ======== +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/d/da/daa/daaa/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/d/da/daa/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/d/da/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/d/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/d 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/d 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg1' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/d/da/daa/daaa/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/d/da/daa/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/d/da/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/d/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg1' was not resolved. ======== +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project/d/da/daa'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg1' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project/d/da/daa'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg1' was not resolved. ======== +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/d/da/fileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project/d/da'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg1' from '/home/src/workspaces/project/d/da/fileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project/d/da'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg1' was not resolved. ======== +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/e/ea/fileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/e/ea/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/e/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/e 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/e 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg1' from '/home/src/workspaces/project/e/ea/fileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/e/ea/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/e/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg1' was not resolved. ======== +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/e/ea/eaa/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project/e/ea'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/e/ea/eaa/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project/e/ea'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg1' was not resolved. ======== +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/e/ea/eaa/eaaa/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project/e/ea/eaa'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/e/ea/eaa/eaaa/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project/e/ea/eaa'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg1' was not resolved. ======== +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/f/fa/faa/faaa/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/f/fa/faa/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/f/fa/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/f/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/f 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/f 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg1' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/f/fa/faa/faaa/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/f/fa/faa/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/f/fa/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/f/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg1' was not resolved. ======== +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/pkg0/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/main.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/node_modules/pkg0/index.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/randomFileForImport.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/a/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/b/ba/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/b/randomFileForImport.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/c/ca/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/c/ca/caa/randomFileForImport.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/c/cb/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/d/da/daa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/d/da/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/eaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + + + ../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + main.ts + Part of 'files' list in tsconfig.json + node_modules/pkg0/index.d.ts + Imported via "pkg0" from file 'fileWithImports.ts' + Imported via "pkg0" from file 'a/fileWithImports.ts' + Imported via "pkg0" from file 'b/ba/fileWithImports.ts' + Imported via "pkg0" from file 'c/ca/fileWithImports.ts' + Imported via "pkg0" from file 'c/ca/caa/caaa/fileWithImports.ts' + Imported via "pkg0" from file 'c/cb/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/daa/daaa/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/daa/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/eaaa/fileWithImports.ts' + Imported via "pkg0" from file 'f/fa/faa/faaa/fileWithImports.ts' + fileWithImports.ts + Part of 'files' list in tsconfig.json + randomFileForImport.ts + Part of 'files' list in tsconfig.json + a/fileWithImports.ts + Part of 'files' list in tsconfig.json + b/ba/fileWithImports.ts + Part of 'files' list in tsconfig.json + b/randomFileForImport.ts + Part of 'files' list in tsconfig.json + c/ca/fileWithImports.ts + Part of 'files' list in tsconfig.json + c/ca/caa/randomFileForImport.ts + Part of 'files' list in tsconfig.json + c/ca/caa/caaa/fileWithImports.ts + Part of 'files' list in tsconfig.json + c/cb/fileWithImports.ts + Part of 'files' list in tsconfig.json + d/da/daa/daaa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json + d/da/daa/daaa/fileWithImports.ts + Part of 'files' list in tsconfig.json + d/da/daa/fileWithImports.ts + Part of 'files' list in tsconfig.json + d/da/fileWithImports.ts + Part of 'files' list in tsconfig.json + e/ea/fileWithImports.ts + Part of 'files' list in tsconfig.json + e/ea/eaa/fileWithImports.ts + Part of 'files' list in tsconfig.json + e/ea/eaa/eaaa/fileWithImports.ts + Part of 'files' list in tsconfig.json + e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json + f/fa/faa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json + f/fa/faa/faaa/fileWithImports.ts + Part of 'files' list in tsconfig.json + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/home/src/workspaces/project/tsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "c508fd683797f5f4c77b8519182a36985021d6361b6a0aa9c8b69f7e25d6e876", + "fileStats": { + "js": 0, + "jsSize": 0, + "jsx": 0, + "jsxSize": 0, + "ts": 20, + "tsSize": 1336, + "tsx": 0, + "tsxSize": 0, + "dts": 2, + "dtsSize": 449, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "traceResolution": true + }, + "typeAcquisition": { + "enable": false, + "include": false, + "exclude": false + }, + "extends": false, + "files": true, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "tsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/home/src/workspaces/project/main.ts", + "configFile": "/home/src/workspaces/project/tsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 1, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/home/src/workspaces/node_modules: *new* + {"pollingInterval":500} +/home/src/workspaces/node_modules/@types: *new* + {"pollingInterval":500} +/home/src/workspaces/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/@types: *new* + {"pollingInterval":500} +/home/src/workspaces/project/node_modules/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/pkg0/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/package.json: *new* + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: *new* + {} +/home/src/workspaces/project/a/fileWithImports.ts: *new* + {} +/home/src/workspaces/project/b/ba/fileWithImports.ts: *new* + {} +/home/src/workspaces/project/b/randomFileForImport.ts: *new* + {} +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts: *new* + {} +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts: *new* + {} +/home/src/workspaces/project/c/ca/fileWithImports.ts: *new* + {} +/home/src/workspaces/project/c/cb/fileWithImports.ts: *new* + {} +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts: *new* + {} +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts: *new* + {} +/home/src/workspaces/project/d/da/daa/fileWithImports.ts: *new* + {} +/home/src/workspaces/project/d/da/fileWithImports.ts: *new* + {} +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts: *new* + {} +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts: *new* + {} +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts: *new* + {} +/home/src/workspaces/project/e/ea/fileWithImports.ts: *new* + {} +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts: *new* + {} +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts: *new* + {} +/home/src/workspaces/project/fileWithImports.ts: *new* + {} +/home/src/workspaces/project/randomFileForImport.ts: *new* + {} +/home/src/workspaces/project/tsconfig.json: *new* + {} + +FsWatchesRecursive:: +/home/src/workspaces/project/a: *new* + {} +/home/src/workspaces/project/b: *new* + {} +/home/src/workspaces/project/c: *new* + {} +/home/src/workspaces/project/d: *new* + {} +/home/src/workspaces/project/e: *new* + {} +/home/src/workspaces/project/f: *new* + {} +/home/src/workspaces/project/node_modules: *new* + {} + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/a/fileWithImports.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/ba/fileWithImports.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/randomFileForImport.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/fileWithImports.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/cb/fileWithImports.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/fileWithImports.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/fileWithImports.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/fileWithImports.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithImports.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/main.ts (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/node_modules/pkg0/index.d.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForImport.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +modify randomFileForImport by adding import +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /home/src/workspaces/project/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/randomFileForImport.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/randomFileForImport.ts 500 undefined WatchType: Closed Script info +Before running Timeout callback:: count: 2 +1: /home/src/workspaces/project/tsconfig.json +2: *ensureProjectForOpenFiles* +//// [/home/src/workspaces/project/randomFileForImport.ts] +import type { ImportInterface0 } from "pkg0"; +export const x = 10; + + +Timeout callback:: count: 2 +1: /home/src/workspaces/project/tsconfig.json *new* +2: *ensureProjectForOpenFiles* *new* + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 2 *changed* + projectProgramVersion: 1 + dirty: true *changed* + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/a/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/ba/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/randomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/cb/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/main.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/node_modules/pkg0/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForImport.ts *changed* + version: Text-1 + pendingReloadFromDisk: true *changed* + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts'. ======== +Info seq [hh:mm:ss:mss] Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/main.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/node_modules/pkg0/index.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/randomFileForImport.ts Text-2 "import type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/a/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/b/ba/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/b/randomFileForImport.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/c/ca/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/c/ca/caa/randomFileForImport.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/c/cb/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/d/da/daa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/d/da/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/eaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /home/src/workspaces/project/main.ts +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/home/src/workspaces/project/main.ts" + ] + } + } +After running Timeout callback:: count: 0 + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 2 + projectProgramVersion: 2 *changed* + dirty: false *changed* + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/a/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/ba/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/randomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/cb/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/main.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/node_modules/pkg0/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForImport.ts *changed* + version: Text-2 *changed* + pendingReloadFromDisk: false *changed* + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +modify b/randomFileForImport by adding import +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /home/src/workspaces/project/b/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/b/randomFileForImport.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/b/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/b/randomFileForImport.ts 500 undefined WatchType: Closed Script info +Before running Timeout callback:: count: 2 +3: /home/src/workspaces/project/tsconfig.json +4: *ensureProjectForOpenFiles* +//// [/home/src/workspaces/project/b/randomFileForImport.ts] +import type { ImportInterface0 } from "pkg0"; +export const x = 10; + + +Timeout callback:: count: 2 +3: /home/src/workspaces/project/tsconfig.json *new* +4: *ensureProjectForOpenFiles* *new* + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 3 *changed* + projectProgramVersion: 2 + dirty: true *changed* + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/a/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/ba/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/randomFileForImport.ts *changed* + version: Text-1 + pendingReloadFromDisk: true *changed* + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/cb/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/main.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/node_modules/pkg0/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/b/randomFileForImport.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project/b'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 3 projectProgramVersion: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/main.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/node_modules/pkg0/index.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/randomFileForImport.ts Text-2 "import type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/a/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/b/ba/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/b/randomFileForImport.ts Text-2 "import type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/c/ca/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/c/ca/caa/randomFileForImport.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/c/cb/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/d/da/daa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/d/da/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/eaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /home/src/workspaces/project/main.ts +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/home/src/workspaces/project/main.ts" + ] + } + } +After running Timeout callback:: count: 0 + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 3 + projectProgramVersion: 3 *changed* + dirty: false *changed* + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/a/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/ba/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/randomFileForImport.ts *changed* + version: Text-2 *changed* + pendingReloadFromDisk: false *changed* + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/cb/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/main.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/node_modules/pkg0/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +modify c/ca/caa/randomFileForImport by adding import +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /home/src/workspaces/project/c/ca/caa/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/c/ca/caa/randomFileForImport.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/c/ca/caa/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/c/ca/caa/randomFileForImport.ts 500 undefined WatchType: Closed Script info +Before running Timeout callback:: count: 2 +5: /home/src/workspaces/project/tsconfig.json +6: *ensureProjectForOpenFiles* +//// [/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts] +import type { ImportInterface0 } from "pkg0"; +export const x = 10; + + +Timeout callback:: count: 2 +5: /home/src/workspaces/project/tsconfig.json *new* +6: *ensureProjectForOpenFiles* *new* + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 4 *changed* + projectProgramVersion: 3 + dirty: true *changed* + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/a/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/ba/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts *changed* + version: Text-1 + pendingReloadFromDisk: true *changed* + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/cb/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/main.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/node_modules/pkg0/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project/c/ca/caa'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 4 projectProgramVersion: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/main.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/node_modules/pkg0/index.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/randomFileForImport.ts Text-2 "import type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/a/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/b/ba/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/b/randomFileForImport.ts Text-2 "import type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/c/ca/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/c/ca/caa/randomFileForImport.ts Text-2 "import type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/c/cb/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/d/da/daa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/d/da/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/eaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /home/src/workspaces/project/main.ts +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/home/src/workspaces/project/main.ts" + ] + } + } +After running Timeout callback:: count: 0 + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 4 + projectProgramVersion: 4 *changed* + dirty: false *changed* + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/a/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/ba/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts *changed* + version: Text-2 *changed* + pendingReloadFromDisk: false *changed* + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/cb/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/main.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/node_modules/pkg0/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +modify d/da/daa/daaa/x/y/z/randomFileForImport by adding import +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts 500 undefined WatchType: Closed Script info +Before running Timeout callback:: count: 2 +7: /home/src/workspaces/project/tsconfig.json +8: *ensureProjectForOpenFiles* +//// [/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts] +import type { ImportInterface0 } from "pkg0"; +export const x = 10; + + +Timeout callback:: count: 2 +7: /home/src/workspaces/project/tsconfig.json *new* +8: *ensureProjectForOpenFiles* *new* + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 5 *changed* + projectProgramVersion: 4 + dirty: true *changed* + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/a/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/ba/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/cb/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts *changed* + version: Text-1 + pendingReloadFromDisk: true *changed* + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/main.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/node_modules/pkg0/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/d/da/daa/daaa/x/y/z/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/d/da/daa/daaa/x/y/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/d/da/daa/daaa/x/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project/d/da/daa/daaa'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 5 projectProgramVersion: 4 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/main.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/node_modules/pkg0/index.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/randomFileForImport.ts Text-2 "import type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/a/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/b/ba/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/b/randomFileForImport.ts Text-2 "import type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/c/ca/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/c/ca/caa/randomFileForImport.ts Text-2 "import type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/c/cb/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts Text-2 "import type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/d/da/daa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/d/da/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/eaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /home/src/workspaces/project/main.ts +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/home/src/workspaces/project/main.ts" + ] + } + } +After running Timeout callback:: count: 0 + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 5 + projectProgramVersion: 5 *changed* + dirty: false *changed* + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/a/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/ba/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/cb/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts *changed* + version: Text-2 *changed* + pendingReloadFromDisk: false *changed* + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/main.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/node_modules/pkg0/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +modify e/ea/eaa/eaaa/x/y/z/randomFileForImport by adding import +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts 500 undefined WatchType: Closed Script info +Before running Timeout callback:: count: 2 +9: /home/src/workspaces/project/tsconfig.json +10: *ensureProjectForOpenFiles* +//// [/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts] +import type { ImportInterface0 } from "pkg0"; +export const x = 10; + + +Timeout callback:: count: 2 +9: /home/src/workspaces/project/tsconfig.json *new* +10: *ensureProjectForOpenFiles* *new* + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 6 *changed* + projectProgramVersion: 5 + dirty: true *changed* + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/a/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/ba/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/cb/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts *changed* + version: Text-1 + pendingReloadFromDisk: true *changed* + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/main.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/node_modules/pkg0/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/e/ea/eaa/eaaa/x/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project/e/ea/eaa/eaaa'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 6 projectProgramVersion: 5 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/main.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/node_modules/pkg0/index.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/randomFileForImport.ts Text-2 "import type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/a/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/b/ba/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/b/randomFileForImport.ts Text-2 "import type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/c/ca/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/c/ca/caa/randomFileForImport.ts Text-2 "import type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/c/cb/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts Text-2 "import type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/d/da/daa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/d/da/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/eaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts Text-2 "import type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /home/src/workspaces/project/main.ts +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/home/src/workspaces/project/main.ts" + ] + } + } +After running Timeout callback:: count: 0 + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 6 + projectProgramVersion: 6 *changed* + dirty: false *changed* + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/a/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/ba/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/cb/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts *changed* + version: Text-2 *changed* + pendingReloadFromDisk: false *changed* + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/main.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/node_modules/pkg0/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +modify randomFileForImport by adding unresolved import +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /home/src/workspaces/project/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/randomFileForImport.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/randomFileForImport.ts 500 undefined WatchType: Closed Script info +Before running Timeout callback:: count: 2 +11: /home/src/workspaces/project/tsconfig.json +12: *ensureProjectForOpenFiles* +//// [/home/src/workspaces/project/randomFileForImport.ts] +import type { ImportInterface1 } from "pkg1"; +import type { ImportInterface0 } from "pkg0"; +export const x = 10; + + +Timeout callback:: count: 2 +11: /home/src/workspaces/project/tsconfig.json *new* +12: *ensureProjectForOpenFiles* *new* + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 7 *changed* + projectProgramVersion: 6 + dirty: true *changed* + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/a/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/ba/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/cb/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/main.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/node_modules/pkg0/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForImport.ts *changed* + version: Text-2 + pendingReloadFromDisk: true *changed* + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg1' from '/home/src/workspaces/project/randomFileForImport.ts'. ======== +Info seq [hh:mm:ss:mss] Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg1' was not resolved. ======== +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 7 projectProgramVersion: 6 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/main.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/node_modules/pkg0/index.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/randomFileForImport.ts Text-3 "import type { ImportInterface1 } from \"pkg1\";\nimport type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/a/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/b/ba/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/b/randomFileForImport.ts Text-2 "import type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/c/ca/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/c/ca/caa/randomFileForImport.ts Text-2 "import type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/c/cb/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts Text-2 "import type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/d/da/daa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/d/da/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/eaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts Text-2 "import type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /home/src/workspaces/project/main.ts +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/home/src/workspaces/project/main.ts" + ] + } + } +After running Timeout callback:: count: 0 + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 7 + projectProgramVersion: 7 *changed* + dirty: false *changed* + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/a/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/ba/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/cb/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/main.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/node_modules/pkg0/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForImport.ts *changed* + version: Text-3 *changed* + pendingReloadFromDisk: false *changed* + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +modify b/randomFileForImport by adding unresolved import +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /home/src/workspaces/project/b/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/b/randomFileForImport.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/b/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/b/randomFileForImport.ts 500 undefined WatchType: Closed Script info +Before running Timeout callback:: count: 2 +13: /home/src/workspaces/project/tsconfig.json +14: *ensureProjectForOpenFiles* +//// [/home/src/workspaces/project/b/randomFileForImport.ts] +import type { ImportInterface1 } from "pkg1"; +import type { ImportInterface0 } from "pkg0"; +export const x = 10; + + +Timeout callback:: count: 2 +13: /home/src/workspaces/project/tsconfig.json *new* +14: *ensureProjectForOpenFiles* *new* + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 8 *changed* + projectProgramVersion: 7 + dirty: true *changed* + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/a/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/ba/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/randomFileForImport.ts *changed* + version: Text-2 + pendingReloadFromDisk: true *changed* + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/cb/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/main.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/node_modules/pkg0/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg1' from '/home/src/workspaces/project/b/randomFileForImport.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project/b'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg1' was not resolved. ======== +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 8 projectProgramVersion: 7 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/main.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/node_modules/pkg0/index.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/randomFileForImport.ts Text-3 "import type { ImportInterface1 } from \"pkg1\";\nimport type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/a/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/b/ba/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/b/randomFileForImport.ts Text-3 "import type { ImportInterface1 } from \"pkg1\";\nimport type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/c/ca/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/c/ca/caa/randomFileForImport.ts Text-2 "import type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/c/cb/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts Text-2 "import type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/d/da/daa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/d/da/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/eaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts Text-2 "import type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /home/src/workspaces/project/main.ts +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/home/src/workspaces/project/main.ts" + ] + } + } +After running Timeout callback:: count: 0 + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 8 + projectProgramVersion: 8 *changed* + dirty: false *changed* + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/a/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/ba/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/randomFileForImport.ts *changed* + version: Text-3 *changed* + pendingReloadFromDisk: false *changed* + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/cb/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/main.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/node_modules/pkg0/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +modify c/ca/caa/randomFileForImport by adding unresolved import +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /home/src/workspaces/project/c/ca/caa/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/c/ca/caa/randomFileForImport.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/c/ca/caa/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/c/ca/caa/randomFileForImport.ts 500 undefined WatchType: Closed Script info +Before running Timeout callback:: count: 2 +15: /home/src/workspaces/project/tsconfig.json +16: *ensureProjectForOpenFiles* +//// [/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts] +import type { ImportInterface1 } from "pkg1"; +import type { ImportInterface0 } from "pkg0"; +export const x = 10; + + +Timeout callback:: count: 2 +15: /home/src/workspaces/project/tsconfig.json *new* +16: *ensureProjectForOpenFiles* *new* + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 9 *changed* + projectProgramVersion: 8 + dirty: true *changed* + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/a/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/ba/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts *changed* + version: Text-2 + pendingReloadFromDisk: true *changed* + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/cb/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/main.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/node_modules/pkg0/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/b/randomFileForImport.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg1' from '/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project/c/ca/caa'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg1' was not resolved. ======== +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 9 projectProgramVersion: 8 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/main.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/node_modules/pkg0/index.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/randomFileForImport.ts Text-3 "import type { ImportInterface1 } from \"pkg1\";\nimport type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/a/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/b/ba/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/b/randomFileForImport.ts Text-3 "import type { ImportInterface1 } from \"pkg1\";\nimport type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/c/ca/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/c/ca/caa/randomFileForImport.ts Text-3 "import type { ImportInterface1 } from \"pkg1\";\nimport type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/c/cb/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts Text-2 "import type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/d/da/daa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/d/da/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/eaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts Text-2 "import type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /home/src/workspaces/project/main.ts +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/home/src/workspaces/project/main.ts" + ] + } + } +After running Timeout callback:: count: 0 + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 9 + projectProgramVersion: 9 *changed* + dirty: false *changed* + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/a/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/ba/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts *changed* + version: Text-3 *changed* + pendingReloadFromDisk: false *changed* + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/cb/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/main.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/node_modules/pkg0/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +modify d/da/daa/daaa/x/y/z/randomFileForImport by adding unresolved import +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts 500 undefined WatchType: Closed Script info +Before running Timeout callback:: count: 2 +17: /home/src/workspaces/project/tsconfig.json +18: *ensureProjectForOpenFiles* +//// [/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts] +import type { ImportInterface1 } from "pkg1"; +import type { ImportInterface0 } from "pkg0"; +export const x = 10; + + +Timeout callback:: count: 2 +17: /home/src/workspaces/project/tsconfig.json *new* +18: *ensureProjectForOpenFiles* *new* + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 10 *changed* + projectProgramVersion: 9 + dirty: true *changed* + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/a/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/ba/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/cb/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts *changed* + version: Text-2 + pendingReloadFromDisk: true *changed* + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/main.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/node_modules/pkg0/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/b/randomFileForImport.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg1' from '/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/d/da/daa/daaa/x/y/z/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/d/da/daa/daaa/x/y/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/d/da/daa/daaa/x/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project/d/da/daa/daaa'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg1' was not resolved. ======== +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 10 projectProgramVersion: 9 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/main.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/node_modules/pkg0/index.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/randomFileForImport.ts Text-3 "import type { ImportInterface1 } from \"pkg1\";\nimport type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/a/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/b/ba/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/b/randomFileForImport.ts Text-3 "import type { ImportInterface1 } from \"pkg1\";\nimport type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/c/ca/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/c/ca/caa/randomFileForImport.ts Text-3 "import type { ImportInterface1 } from \"pkg1\";\nimport type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/c/cb/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts Text-3 "import type { ImportInterface1 } from \"pkg1\";\nimport type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/d/da/daa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/d/da/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/eaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts Text-2 "import type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /home/src/workspaces/project/main.ts +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/home/src/workspaces/project/main.ts" + ] + } + } +After running Timeout callback:: count: 0 + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 10 + projectProgramVersion: 10 *changed* + dirty: false *changed* + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/a/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/ba/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/cb/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts *changed* + version: Text-3 *changed* + pendingReloadFromDisk: false *changed* + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts + version: Text-2 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/main.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/node_modules/pkg0/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +modify e/ea/eaa/eaaa/x/y/z/randomFileForImport by adding unresolved import +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts 500 undefined WatchType: Closed Script info +Before running Timeout callback:: count: 2 +19: /home/src/workspaces/project/tsconfig.json +20: *ensureProjectForOpenFiles* +//// [/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts] +import type { ImportInterface1 } from "pkg1"; +import type { ImportInterface0 } from "pkg0"; +export const x = 10; + + +Timeout callback:: count: 2 +19: /home/src/workspaces/project/tsconfig.json *new* +20: *ensureProjectForOpenFiles* *new* + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 11 *changed* + projectProgramVersion: 10 + dirty: true *changed* + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/a/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/ba/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/cb/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts *changed* + version: Text-2 + pendingReloadFromDisk: true *changed* + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/main.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/node_modules/pkg0/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/b/randomFileForImport.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/e/ea/eaa/eaaa/x/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project/e/ea/eaa/eaaa'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg1' was not resolved. ======== +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 11 projectProgramVersion: 10 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/main.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/node_modules/pkg0/index.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/randomFileForImport.ts Text-3 "import type { ImportInterface1 } from \"pkg1\";\nimport type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/a/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/b/ba/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/b/randomFileForImport.ts Text-3 "import type { ImportInterface1 } from \"pkg1\";\nimport type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/c/ca/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/c/ca/caa/randomFileForImport.ts Text-3 "import type { ImportInterface1 } from \"pkg1\";\nimport type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/c/cb/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts Text-3 "import type { ImportInterface1 } from \"pkg1\";\nimport type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/d/da/daa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/d/da/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/eaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts Text-3 "import type { ImportInterface1 } from \"pkg1\";\nimport type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /home/src/workspaces/project/main.ts +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/home/src/workspaces/project/main.ts" + ] + } + } +After running Timeout callback:: count: 0 + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 11 + projectProgramVersion: 11 *changed* + dirty: false *changed* + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/a/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/ba/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/cb/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts *changed* + version: Text-3 *changed* + pendingReloadFromDisk: false *changed* + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/main.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/node_modules/pkg0/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +modify f/fa/faa/x/y/z/randomFileForImport by adding import +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts 500 undefined WatchType: Closed Script info +Before running Timeout callback:: count: 2 +21: /home/src/workspaces/project/tsconfig.json +22: *ensureProjectForOpenFiles* +//// [/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts] +import type { ImportInterface0 } from "pkg0"; +export const x = 10; + + +Timeout callback:: count: 2 +21: /home/src/workspaces/project/tsconfig.json *new* +22: *ensureProjectForOpenFiles* *new* + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 12 *changed* + projectProgramVersion: 11 + dirty: true *changed* + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/a/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/ba/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/cb/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts *changed* + version: Text-1 + pendingReloadFromDisk: true *changed* + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/main.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/node_modules/pkg0/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/b/randomFileForImport.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg0' from '/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg0' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/f/fa/faa/x/y/z/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/f/fa/faa/x/y/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/f/fa/faa/x/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg0' was found in cache from location '/home/src/workspaces/project/f/fa/faa'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg0' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 12 projectProgramVersion: 11 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/main.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/node_modules/pkg0/index.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/randomFileForImport.ts Text-3 "import type { ImportInterface1 } from \"pkg1\";\nimport type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/a/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/b/ba/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/b/randomFileForImport.ts Text-3 "import type { ImportInterface1 } from \"pkg1\";\nimport type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/c/ca/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/c/ca/caa/randomFileForImport.ts Text-3 "import type { ImportInterface1 } from \"pkg1\";\nimport type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/c/cb/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts Text-3 "import type { ImportInterface1 } from \"pkg1\";\nimport type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/d/da/daa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/d/da/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/eaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts Text-3 "import type { ImportInterface1 } from \"pkg1\";\nimport type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts Text-2 "import type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /home/src/workspaces/project/main.ts +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/home/src/workspaces/project/main.ts" + ] + } + } +After running Timeout callback:: count: 0 + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 12 + projectProgramVersion: 12 *changed* + dirty: false *changed* + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/a/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/ba/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/cb/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts *changed* + version: Text-2 *changed* + pendingReloadFromDisk: false *changed* + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/main.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/node_modules/pkg0/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +modify f/fa/faa/x/y/z/randomFileForImport by adding unresolved import +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts 500 undefined WatchType: Closed Script info +Before running Timeout callback:: count: 2 +23: /home/src/workspaces/project/tsconfig.json +24: *ensureProjectForOpenFiles* +//// [/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts] +import type { ImportInterface1 } from "pkg1"; +import type { ImportInterface0 } from "pkg0"; +export const x = 10; + + +Timeout callback:: count: 2 +23: /home/src/workspaces/project/tsconfig.json *new* +24: *ensureProjectForOpenFiles* *new* + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 13 *changed* + projectProgramVersion: 12 + dirty: true *changed* + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/a/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/ba/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/cb/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts *changed* + version: Text-2 + pendingReloadFromDisk: true *changed* + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/main.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/node_modules/pkg0/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/b/randomFileForImport.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg1' from '/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/f/fa/faa/x/y/z/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/f/fa/faa/x/y/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/f/fa/faa/x/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project/f/fa/faa'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg1' was not resolved. ======== +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was not resolved. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 13 projectProgramVersion: 12 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/main.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/node_modules/pkg0/index.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/randomFileForImport.ts Text-3 "import type { ImportInterface1 } from \"pkg1\";\nimport type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/a/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/b/ba/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/b/randomFileForImport.ts Text-3 "import type { ImportInterface1 } from \"pkg1\";\nimport type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/c/ca/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/c/ca/caa/randomFileForImport.ts Text-3 "import type { ImportInterface1 } from \"pkg1\";\nimport type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/c/cb/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts Text-3 "import type { ImportInterface1 } from \"pkg1\";\nimport type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/d/da/daa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/d/da/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/eaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts Text-3 "import type { ImportInterface1 } from \"pkg1\";\nimport type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts Text-3 "import type { ImportInterface1 } from \"pkg1\";\nimport type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /home/src/workspaces/project/main.ts +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/home/src/workspaces/project/main.ts" + ] + } + } +After running Timeout callback:: count: 0 + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 13 + projectProgramVersion: 13 *changed* + dirty: false *changed* + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/a/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/ba/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/cb/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts *changed* + version: Text-3 *changed* + pendingReloadFromDisk: false *changed* + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/main.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/node_modules/pkg0/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +add file for unresolved import and random edit +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg1 :: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg1 :: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg1 :: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg1 :: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg1/index.d.ts :: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg1/index.d.ts :: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg1/index.d.ts :: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/node_modules/pkg1/index.d.ts :: WatchInfo: /home/src/workspaces/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /home/src/workspaces/project/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/randomFileForImport.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/randomFileForImport.ts 1:: WatchInfo: /home/src/workspaces/project/randomFileForImport.ts 500 undefined WatchType: Closed Script info +Before running Timeout callback:: count: 3 +26: /home/src/workspaces/project/tsconfig.jsonFailedLookupInvalidation +27: /home/src/workspaces/project/tsconfig.json +28: *ensureProjectForOpenFiles* +//// [/home/src/workspaces/project/randomFileForImport.ts] +import type { ImportInterface1 } from "pkg1"; +import type { ImportInterface0 } from "pkg0"; +export const x = 10;export const y = 10; + +//// [/home/src/workspaces/project/node_modules/pkg1/index.d.ts] +export interface ImportInterface1 {} + + +Timeout callback:: count: 3 +26: /home/src/workspaces/project/tsconfig.jsonFailedLookupInvalidation *new* +27: /home/src/workspaces/project/tsconfig.json *new* +28: *ensureProjectForOpenFiles* *new* + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 14 *changed* + projectProgramVersion: 13 + dirty: true *changed* + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/a/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/ba/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/cb/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/main.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/node_modules/pkg0/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForImport.ts *changed* + version: Text-3 + pendingReloadFromDisk: true *changed* + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/tsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.json, Cancelled earlier one +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +After running Timeout callback:: count: 2 + +Timeout callback:: count: 2 +27: /home/src/workspaces/project/tsconfig.json *deleted* +28: *ensureProjectForOpenFiles* *deleted* +29: /home/src/workspaces/project/tsconfig.json *new* +30: *ensureProjectForOpenFiles* *new* + +Before running Timeout callback:: count: 2 +29: /home/src/workspaces/project/tsconfig.json +30: *ensureProjectForOpenFiles* + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg1' from '/home/src/workspaces/project/fileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg1/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg1.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg1.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg1.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg1/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg1/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg1/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/home/src/workspaces/project/node_modules/pkg1/index.d.ts', result '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg1' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg1/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg1' from '/home/src/workspaces/project/randomFileForImport.ts'. ======== +Info seq [hh:mm:ss:mss] Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg1' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg1' from '/home/src/workspaces/project/a/fileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/a/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg1' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/ba/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg1' from '/home/src/workspaces/project/b/ba/fileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/b/ba/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/b/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg1' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg1' from '/home/src/workspaces/project/b/randomFileForImport.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project/b'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg1' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg1' from '/home/src/workspaces/project/c/ca/fileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/c/ca/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/c/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg1' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg1' from '/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/c/ca/caa/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project/c/ca'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg1' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg1' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/c/ca/caa/caaa/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project/c/ca/caa'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg1' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg1' from '/home/src/workspaces/project/c/cb/fileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/c/cb/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project/c'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg1' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg1' from '/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/d/da/daa/daaa/x/y/z/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/d/da/daa/daaa/x/y/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/d/da/daa/daaa/x/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/d/da/daa/daaa/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/d/da/daa/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/d/da/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/d/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg1' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg1' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project/d/da/daa/daaa'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg1' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg1' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project/d/da/daa'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg1' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg1' from '/home/src/workspaces/project/d/da/fileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project/d/da'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg1' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg1' from '/home/src/workspaces/project/e/ea/fileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/e/ea/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/e/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg1' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/e/ea/eaa/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project/e/ea'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg1' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/e/ea/eaa/eaaa/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project/e/ea/eaa'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg1' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/e/ea/eaa/eaaa/x/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project/e/ea/eaa/eaaa'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg1' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg1' from '/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/f/fa/faa/x/y/z/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/f/fa/faa/x/y/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/f/fa/faa/x/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/f/fa/faa/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/f/fa/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/f/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg1' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] ======== Resolving module 'pkg1' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'pkg1' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/home/src/workspaces/project/f/fa/faa/faaa/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'pkg1' was found in cache from location '/home/src/workspaces/project/f/fa/faa'. +Info seq [hh:mm:ss:mss] ======== Module name 'pkg1' was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/pkg1/package.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/workspaces/node_modules 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 14 projectProgramVersion: 13 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (23) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/main.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/node_modules/pkg0/index.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/node_modules/pkg1/index.d.ts Text-1 "export interface ImportInterface1 {}" + /home/src/workspaces/project/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/randomFileForImport.ts Text-4 "import type { ImportInterface1 } from \"pkg1\";\nimport type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;export const y = 10;" + /home/src/workspaces/project/a/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/b/ba/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/b/randomFileForImport.ts Text-3 "import type { ImportInterface1 } from \"pkg1\";\nimport type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/c/ca/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/c/ca/caa/randomFileForImport.ts Text-3 "import type { ImportInterface1 } from \"pkg1\";\nimport type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/c/cb/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts Text-3 "import type { ImportInterface1 } from \"pkg1\";\nimport type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/d/da/daa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/d/da/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/eaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts Text-3 "import type { ImportInterface1 } from \"pkg1\";\nimport type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts Text-3 "import type { ImportInterface1 } from \"pkg1\";\nimport type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + + + ../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + main.ts + Part of 'files' list in tsconfig.json + node_modules/pkg0/index.d.ts + Imported via "pkg0" from file 'fileWithImports.ts' + Imported via "pkg0" from file 'randomFileForImport.ts' + Imported via "pkg0" from file 'a/fileWithImports.ts' + Imported via "pkg0" from file 'b/ba/fileWithImports.ts' + Imported via "pkg0" from file 'b/randomFileForImport.ts' + Imported via "pkg0" from file 'c/ca/fileWithImports.ts' + Imported via "pkg0" from file 'c/ca/caa/randomFileForImport.ts' + Imported via "pkg0" from file 'c/ca/caa/caaa/fileWithImports.ts' + Imported via "pkg0" from file 'c/cb/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/daa/daaa/x/y/z/randomFileForImport.ts' + Imported via "pkg0" from file 'd/da/daa/daaa/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/daa/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/eaaa/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' + Imported via "pkg0" from file 'f/fa/faa/x/y/z/randomFileForImport.ts' + Imported via "pkg0" from file 'f/fa/faa/faaa/fileWithImports.ts' + node_modules/pkg1/index.d.ts + Imported via "pkg1" from file 'fileWithImports.ts' + Imported via "pkg1" from file 'randomFileForImport.ts' + Imported via "pkg1" from file 'a/fileWithImports.ts' + Imported via "pkg1" from file 'b/ba/fileWithImports.ts' + Imported via "pkg1" from file 'b/randomFileForImport.ts' + Imported via "pkg1" from file 'c/ca/fileWithImports.ts' + Imported via "pkg1" from file 'c/ca/caa/randomFileForImport.ts' + Imported via "pkg1" from file 'c/ca/caa/caaa/fileWithImports.ts' + Imported via "pkg1" from file 'c/cb/fileWithImports.ts' + Imported via "pkg1" from file 'd/da/daa/daaa/x/y/z/randomFileForImport.ts' + Imported via "pkg1" from file 'd/da/daa/daaa/fileWithImports.ts' + Imported via "pkg1" from file 'd/da/daa/fileWithImports.ts' + Imported via "pkg1" from file 'd/da/fileWithImports.ts' + Imported via "pkg1" from file 'e/ea/fileWithImports.ts' + Imported via "pkg1" from file 'e/ea/eaa/fileWithImports.ts' + Imported via "pkg1" from file 'e/ea/eaa/eaaa/fileWithImports.ts' + Imported via "pkg1" from file 'e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' + Imported via "pkg1" from file 'f/fa/faa/x/y/z/randomFileForImport.ts' + Imported via "pkg1" from file 'f/fa/faa/faaa/fileWithImports.ts' + fileWithImports.ts + Part of 'files' list in tsconfig.json + randomFileForImport.ts + Part of 'files' list in tsconfig.json + a/fileWithImports.ts + Part of 'files' list in tsconfig.json + b/ba/fileWithImports.ts + Part of 'files' list in tsconfig.json + b/randomFileForImport.ts + Part of 'files' list in tsconfig.json + c/ca/fileWithImports.ts + Part of 'files' list in tsconfig.json + c/ca/caa/randomFileForImport.ts + Part of 'files' list in tsconfig.json + c/ca/caa/caaa/fileWithImports.ts + Part of 'files' list in tsconfig.json + c/cb/fileWithImports.ts + Part of 'files' list in tsconfig.json + d/da/daa/daaa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json + d/da/daa/daaa/fileWithImports.ts + Part of 'files' list in tsconfig.json + d/da/daa/fileWithImports.ts + Part of 'files' list in tsconfig.json + d/da/fileWithImports.ts + Part of 'files' list in tsconfig.json + e/ea/fileWithImports.ts + Part of 'files' list in tsconfig.json + e/ea/eaa/fileWithImports.ts + Part of 'files' list in tsconfig.json + e/ea/eaa/eaaa/fileWithImports.ts + Part of 'files' list in tsconfig.json + e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json + f/fa/faa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json + f/fa/faa/faaa/fileWithImports.ts + Part of 'files' list in tsconfig.json + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (23) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (23) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /home/src/workspaces/project/main.ts +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/home/src/workspaces/project/main.ts" + ] + } + } +After running Timeout callback:: count: 0 + +PolledWatches:: +/home/src/workspaces/node_modules/@types: + {"pollingInterval":500} +/home/src/workspaces/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/@types: + {"pollingInterval":500} +/home/src/workspaces/project/node_modules/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/pkg0/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/pkg1/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/package.json: + {"pollingInterval":2000} + +PolledWatches *deleted*:: +/home/src/workspaces/node_modules: + {"pollingInterval":500} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/home/src/workspaces/project/a/fileWithImports.ts: + {} +/home/src/workspaces/project/b/ba/fileWithImports.ts: + {} +/home/src/workspaces/project/b/randomFileForImport.ts: + {} +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts: + {} +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts: + {} +/home/src/workspaces/project/c/ca/fileWithImports.ts: + {} +/home/src/workspaces/project/c/cb/fileWithImports.ts: + {} +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts: + {} +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts: + {} +/home/src/workspaces/project/d/da/daa/fileWithImports.ts: + {} +/home/src/workspaces/project/d/da/fileWithImports.ts: + {} +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts: + {} +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts: + {} +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts: + {} +/home/src/workspaces/project/e/ea/fileWithImports.ts: + {} +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts: + {} +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts: + {} +/home/src/workspaces/project/fileWithImports.ts: + {} +/home/src/workspaces/project/randomFileForImport.ts: + {} +/home/src/workspaces/project/tsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/workspaces/project/a: + {} +/home/src/workspaces/project/b: + {} +/home/src/workspaces/project/c: + {} +/home/src/workspaces/project/d: + {} +/home/src/workspaces/project/e: + {} +/home/src/workspaces/project/f: + {} +/home/src/workspaces/project/node_modules: + {} + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 14 + projectProgramVersion: 14 *changed* + dirty: false *changed* + autoImportProviderHost: undefined *changed* + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/a/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/ba/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/cb/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/main.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/node_modules/pkg0/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg1/index.d.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForImport.ts *changed* + version: Text-4 *changed* + pendingReloadFromDisk: false *changed* + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +delete file b/ba/fileWithImports.ts +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /home/src/workspaces/project/b/ba/fileWithImports.ts 2:: WatchInfo: /home/src/workspaces/project/b/ba/fileWithImports.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/b/ba/fileWithImports.ts 2:: WatchInfo: /home/src/workspaces/project/b/ba/fileWithImports.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/workspaces/project/b/ba/fileWithImports.ts :: WatchInfo: /home/src/workspaces/project/b 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/workspaces/project/b/ba/fileWithImports.ts :: WatchInfo: /home/src/workspaces/project/b 1 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /home/src/workspaces/project/tsconfig.json 1:: WatchInfo: /home/src/workspaces/project/tsconfig.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/tsconfig.json, Cancelled earlier one +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/project/main.ts ProjectRootPath: undefined:: Result: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/tsconfig.json 1:: WatchInfo: /home/src/workspaces/project/tsconfig.json 2000 undefined Project: /home/src/workspaces/project/tsconfig.json WatchType: Config file +Before running Timeout callback:: count: 3 +33: /home/src/workspaces/project/tsconfig.jsonFailedLookupInvalidation +34: /home/src/workspaces/project/tsconfig.json +35: *ensureProjectForOpenFiles* +//// [/home/src/workspaces/project/tsconfig.json] +{ + "compilerOptions": { + "traceResolution": true + }, + "files": [ + "main.ts", + "fileWithImports.ts", + "randomFileForImport.ts", + "a/fileWithImports.ts", + "b/randomFileForImport.ts", + "c/ca/fileWithImports.ts", + "c/ca/caa/randomFileForImport.ts", + "c/ca/caa/caaa/fileWithImports.ts", + "c/cb/fileWithImports.ts", + "d/da/daa/daaa/x/y/z/randomFileForImport.ts", + "d/da/daa/daaa/fileWithImports.ts", + "d/da/daa/fileWithImports.ts", + "d/da/fileWithImports.ts", + "e/ea/fileWithImports.ts", + "e/ea/eaa/fileWithImports.ts", + "e/ea/eaa/eaaa/fileWithImports.ts", + "e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts", + "f/fa/faa/x/y/z/randomFileForImport.ts", + "f/fa/faa/faaa/fileWithImports.ts" + ] +} + +//// [/home/src/workspaces/project/b/ba/fileWithImports.ts] deleted + +Timeout callback:: count: 3 +33: /home/src/workspaces/project/tsconfig.jsonFailedLookupInvalidation *new* +34: /home/src/workspaces/project/tsconfig.json *new* +35: *ensureProjectForOpenFiles* *new* + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 15 *changed* + projectProgramVersion: 14 + dirty: true *changed* + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/a/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/b/ba/fileWithImports.ts *changed* + version: Text-1 + pendingReloadFromDisk: true *changed* + deferredDelete: true *changed* + containingProjects: 0 *changed* + /home/src/workspaces/project/tsconfig.json *deleted* +/home/src/workspaces/project/b/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/ca/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/c/cb/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/daa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/d/da/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/e/ea/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts + version: Text-3 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/fileWithImports.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/main.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json *default* +/home/src/workspaces/project/node_modules/pkg0/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/node_modules/pkg1/index.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json +/home/src/workspaces/project/randomFileForImport.ts + version: Text-4 + containingProjects: 1 + /home/src/workspaces/project/tsconfig.json + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/tsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/home/src/workspaces/project/tsconfig.json", + "reason": "Change in config file detected" + } + } +Info seq [hh:mm:ss:mss] Config: /home/src/workspaces/project/tsconfig.json : { + "rootNames": [ + "/home/src/workspaces/project/main.ts", + "/home/src/workspaces/project/fileWithImports.ts", + "/home/src/workspaces/project/randomFileForImport.ts", + "/home/src/workspaces/project/a/fileWithImports.ts", + "/home/src/workspaces/project/b/randomFileForImport.ts", + "/home/src/workspaces/project/c/ca/fileWithImports.ts", + "/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts", + "/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts", + "/home/src/workspaces/project/c/cb/fileWithImports.ts", + "/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts", + "/home/src/workspaces/project/d/da/daa/fileWithImports.ts", + "/home/src/workspaces/project/d/da/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts", + "/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts", + "/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts" + ], + "options": { + "traceResolution": true, + "configFilePath": "/home/src/workspaces/project/tsconfig.json" + } +} +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg0/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/pkg1/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/a/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/b/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/c/cb/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/daa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/d/da/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg0' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg0/index.d.ts'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'pkg1' from '/home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/node_modules/pkg1/index.d.ts'. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/tsconfig.json projectStateVersion: 15 projectProgramVersion: 14 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/main.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/node_modules/pkg0/index.d.ts Text-1 "export interface ImportInterface0 {}" + /home/src/workspaces/project/node_modules/pkg1/index.d.ts Text-1 "export interface ImportInterface1 {}" + /home/src/workspaces/project/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/randomFileForImport.ts Text-4 "import type { ImportInterface1 } from \"pkg1\";\nimport type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;export const y = 10;" + /home/src/workspaces/project/a/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/b/randomFileForImport.ts Text-3 "import type { ImportInterface1 } from \"pkg1\";\nimport type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/c/ca/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/c/ca/caa/randomFileForImport.ts Text-3 "import type { ImportInterface1 } from \"pkg1\";\nimport type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/c/ca/caa/caaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/c/cb/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/d/da/daa/daaa/x/y/z/randomFileForImport.ts Text-3 "import type { ImportInterface1 } from \"pkg1\";\nimport type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/d/da/daa/daaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/d/da/daa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/d/da/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/eaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/eaa/eaaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + /home/src/workspaces/project/e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts Text-3 "import type { ImportInterface1 } from \"pkg1\";\nimport type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/f/fa/faa/x/y/z/randomFileForImport.ts Text-3 "import type { ImportInterface1 } from \"pkg1\";\nimport type { ImportInterface0 } from \"pkg0\";\nexport const x = 10;" + /home/src/workspaces/project/f/fa/faa/faaa/fileWithImports.ts Text-1 "import type { ImportInterface0 } from \"pkg0\";\nimport type { ImportInterface1 } from \"pkg1\";\n" + + + ../../tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + main.ts + Part of 'files' list in tsconfig.json + node_modules/pkg0/index.d.ts + Imported via "pkg0" from file 'fileWithImports.ts' + Imported via "pkg0" from file 'randomFileForImport.ts' + Imported via "pkg0" from file 'a/fileWithImports.ts' + Imported via "pkg0" from file 'b/randomFileForImport.ts' + Imported via "pkg0" from file 'c/ca/fileWithImports.ts' + Imported via "pkg0" from file 'c/ca/caa/randomFileForImport.ts' + Imported via "pkg0" from file 'c/ca/caa/caaa/fileWithImports.ts' + Imported via "pkg0" from file 'c/cb/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/daa/daaa/x/y/z/randomFileForImport.ts' + Imported via "pkg0" from file 'd/da/daa/daaa/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/daa/fileWithImports.ts' + Imported via "pkg0" from file 'd/da/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/eaaa/fileWithImports.ts' + Imported via "pkg0" from file 'e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' + Imported via "pkg0" from file 'f/fa/faa/x/y/z/randomFileForImport.ts' + Imported via "pkg0" from file 'f/fa/faa/faaa/fileWithImports.ts' + node_modules/pkg1/index.d.ts + Imported via "pkg1" from file 'fileWithImports.ts' + Imported via "pkg1" from file 'randomFileForImport.ts' + Imported via "pkg1" from file 'a/fileWithImports.ts' + Imported via "pkg1" from file 'b/randomFileForImport.ts' + Imported via "pkg1" from file 'c/ca/fileWithImports.ts' + Imported via "pkg1" from file 'c/ca/caa/randomFileForImport.ts' + Imported via "pkg1" from file 'c/ca/caa/caaa/fileWithImports.ts' + Imported via "pkg1" from file 'c/cb/fileWithImports.ts' + Imported via "pkg1" from file 'd/da/daa/daaa/x/y/z/randomFileForImport.ts' + Imported via "pkg1" from file 'd/da/daa/daaa/fileWithImports.ts' + Imported via "pkg1" from file 'd/da/daa/fileWithImports.ts' + Imported via "pkg1" from file 'd/da/fileWithImports.ts' + Imported via "pkg1" from file 'e/ea/fileWithImports.ts' + Imported via "pkg1" from file 'e/ea/eaa/fileWithImports.ts' + Imported via "pkg1" from file 'e/ea/eaa/eaaa/fileWithImports.ts' + Imported via "pkg1" from file 'e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts' + Imported via "pkg1" from file 'f/fa/faa/x/y/z/randomFileForImport.ts' + Imported via "pkg1" from file 'f/fa/faa/faaa/fileWithImports.ts' + fileWithImports.ts + Part of 'files' list in tsconfig.json + randomFileForImport.ts + Part of 'files' list in tsconfig.json + a/fileWithImports.ts + Part of 'files' list in tsconfig.json + b/randomFileForImport.ts + Part of 'files' list in tsconfig.json + c/ca/fileWithImports.ts + Part of 'files' list in tsconfig.json + c/ca/caa/randomFileForImport.ts + Part of 'files' list in tsconfig.json + c/ca/caa/caaa/fileWithImports.ts + Part of 'files' list in tsconfig.json + c/cb/fileWithImports.ts + Part of 'files' list in tsconfig.json + d/da/daa/daaa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json + d/da/daa/daaa/fileWithImports.ts + Part of 'files' list in tsconfig.json + d/da/daa/fileWithImports.ts + Part of 'files' list in tsconfig.json + d/da/fileWithImports.ts + Part of 'files' list in tsconfig.json + e/ea/fileWithImports.ts + Part of 'files' list in tsconfig.json + e/ea/eaa/fileWithImports.ts + Part of 'files' list in tsconfig.json + e/ea/eaa/eaaa/fileWithImports.ts + Part of 'files' list in tsconfig.json + e/ea/eaa/eaaa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json + f/fa/faa/x/y/z/randomFileForImport.ts + Part of 'files' list in tsconfig.json + f/fa/faa/faaa/fileWithImports.ts + Part of 'files' list in tsconfig.json + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/home/src/workspaces/project/tsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/home/src/workspaces/project/tsconfig.json", + "configFile": "/home/src/workspaces/project/tsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/tsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /home/src/workspaces/project/main.ts +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/home/src/workspaces/project/main.ts" + ] + } + } +After running Timeout callback:: count: 0 + +Projects:: +/home/src/workspaces/project/tsconfig.json (Configured) *changed* + projectStateVersion: 15 + projectProgramVersion: 15 *changed* + dirty: false *changed* diff --git a/tests/baselines/reference/tsserver/resolutionCache/project-with-package-json-scope.js b/tests/baselines/reference/tsserver/resolutionCache/project-with-package-json-scope.js new file mode 100644 index 0000000000000..78242b4244ece --- /dev/null +++ b/tests/baselines/reference/tsserver/resolutionCache/project-with-package-json-scope.js @@ -0,0 +1,3400 @@ +Info seq [hh:mm:ss:mss] currentDirectory:: /home/src/Vscode/Projects/bin useCaseSensitiveFileNames:: false +Info seq [hh:mm:ss:mss] libs Location:: /home/src/tslibs/TS/Lib +Info seq [hh:mm:ss:mss] globalTypingsCacheLocation:: /home/src/Library/Caches/typescript +Info seq [hh:mm:ss:mss] Provided types map file "/home/src/tslibs/TS/Lib/typesMap.json" doesn't exist +Before request +//// [/home/src/workspaces/project/src/tsconfig.json] +{ + "compilerOptions": { + "target": "es2016", + "composite": true, + "module": "node16", + "outDir": "../out", + "traceResolution": true + }, + "files": [ + "main.ts", + "fileA.ts", + "fileB.mts", + "randomFile.ts", + "a/randomFile.ts", + "b/ba/randomFile.ts", + "b/randomFile.ts", + "c/ca/randomFile.ts", + "c/ca/caa/randomFile.ts", + "c/ca/caa/caaa/randomFile.ts", + "c/cb/randomFile.ts", + "d/da/daa/daaa/x/y/z/randomFile.ts", + "d/da/daa/daaa/randomFile.ts", + "d/da/daa/randomFile.ts", + "d/da/randomFile.ts", + "e/ea/randomFile.ts", + "e/ea/eaa/randomFile.ts", + "e/ea/eaa/eaaa/randomFile.ts", + "e/ea/eaa/eaaa/x/y/z/randomFile.ts", + "f/fa/faa/x/y/z/randomFile.ts", + "f/fa/faa/faaa/randomFile.ts" + ] +} + +//// [/home/src/workspaces/project/src/main.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/fileA.ts] +import { foo } from "./fileB.mjs"; +foo(); + + +//// [/home/src/workspaces/project/src/fileB.mts] +export function foo() {} + +//// [/home/src/workspaces/project/src/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/a/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/b/ba/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/b/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/c/ca/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/c/ca/caa/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/c/cb/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/d/da/daa/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/d/da/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/e/ea/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/e/ea/eaa/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts] +export const x = 10; + +//// [/home/src/workspaces/project/package.json] +{ + "name": "app", + "version": "1.0.0" +} + +//// [/home/src/tslibs/TS/Lib/lib.d.ts] +/// +interface Boolean {} +interface Function {} +interface CallableFunction {} +interface NewableFunction {} +interface IArguments {} +interface Number { toExponential: any; } +interface Object {} +interface RegExp {} +interface String { charAt: any; } +interface Array { length: number; [n: number]: T; } +interface ReadonlyArray {} +declare const console: { log(msg: any): void; }; + + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/home/src/workspaces/project/src/main.ts" + }, + "seq": 1, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/project/src/main.ts ProjectRootPath: undefined:: Result: /home/src/workspaces/project/src/tsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /home/src/workspaces/project/src/tsconfig.json, currentDirectory: /home/src/workspaces/project/src +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/tsconfig.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /home/src/workspaces/project/src/tsconfig.json : { + "rootNames": [ + "/home/src/workspaces/project/src/main.ts", + "/home/src/workspaces/project/src/fileA.ts", + "/home/src/workspaces/project/src/fileB.mts", + "/home/src/workspaces/project/src/randomFile.ts", + "/home/src/workspaces/project/src/a/randomFile.ts", + "/home/src/workspaces/project/src/b/ba/randomFile.ts", + "/home/src/workspaces/project/src/b/randomFile.ts", + "/home/src/workspaces/project/src/c/ca/randomFile.ts", + "/home/src/workspaces/project/src/c/ca/caa/randomFile.ts", + "/home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts", + "/home/src/workspaces/project/src/c/cb/randomFile.ts", + "/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts", + "/home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts", + "/home/src/workspaces/project/src/d/da/daa/randomFile.ts", + "/home/src/workspaces/project/src/d/da/randomFile.ts", + "/home/src/workspaces/project/src/e/ea/randomFile.ts", + "/home/src/workspaces/project/src/e/ea/eaa/randomFile.ts", + "/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts", + "/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts", + "/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts", + "/home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts" + ], + "options": { + "target": 3, + "composite": true, + "module": 100, + "outDir": "/home/src/workspaces/project/out", + "traceResolution": true, + "configFilePath": "/home/src/workspaces/project/src/tsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/home/src/workspaces/project/src/tsconfig.json", + "reason": "Creating possible configured project for /home/src/workspaces/project/src/main.ts to open" + } + } +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/fileA.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/fileB.mts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/randomFile.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/a/randomFile.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/b/ba/randomFile.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/b/randomFile.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/c/ca/randomFile.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/c/ca/caa/randomFile.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/c/cb/randomFile.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/d/da/daa/randomFile.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/d/da/randomFile.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/e/ea/randomFile.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/e/ea/eaa/randomFile.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/src/tsconfig.json +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist. +Info seq [hh:mm:ss:mss] Found 'package.json' at '/home/src/workspaces/project/package.json'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module './fileB.mjs' from '/home/src/workspaces/project/src/fileA.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node16'. +Info seq [hh:mm:ss:mss] Resolving in CJS mode with conditions 'require', 'types', 'node'. +Info seq [hh:mm:ss:mss] Loading module as file / folder, candidate module location '/home/src/workspaces/project/src/fileB.mjs', target file types: TypeScript, JavaScript, Declaration. +Info seq [hh:mm:ss:mss] File name '/home/src/workspaces/project/src/fileB.mjs' has a '.mjs' extension - stripping it. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/fileB.mts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] ======== Module name './fileB.mjs' was successfully resolved to '/home/src/workspaces/project/src/fileB.mts'. ======== +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/a/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/b/ba/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/b/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/caa/caaa/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/cb/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/x/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/x/y/z/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/x/y/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/x/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/faaa/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/tslibs/TS/Lib/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/tslibs/TS/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/tslibs/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist. +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/a/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/b/ba/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/b/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/c/ca/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/c/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/c/ca/caa/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/c/ca/caa/caaa/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/c/cb/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/d/da/daa/daaa/x/y/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/d/da/daa/daaa/x/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/d/da/daa/daaa/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/d/da/daa/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/d/da/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/d/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/e/ea/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/e/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/e/ea/eaa/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/e/ea/eaa/eaaa/x/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/f/fa/faa/x/y/z/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/f/fa/faa/x/y/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/f/fa/faa/x/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/f/fa/faa/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/f/fa/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/f/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/f/fa/faa/faaa/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/node_modules/@types 1 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/src/node_modules/@types 1 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/project/node_modules/@types 1 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspaces/node_modules/@types 1 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/src/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/src/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/src/main.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/src/fileB.mts Text-1 "export function foo() {}" + /home/src/workspaces/project/src/fileA.ts Text-1 "import { foo } from \"./fileB.mjs\";\nfoo();\n" + /home/src/workspaces/project/src/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/a/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/b/ba/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/b/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/c/ca/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/c/ca/caa/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/c/cb/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/d/da/daa/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/d/da/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/e/ea/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/e/ea/eaa/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts Text-1 "export const x = 10;" + + + ../../../tslibs/TS/Lib/lib.es2016.full.d.ts + Default library for target 'es2016' + main.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because '../package.json' does not have field "type" + fileB.mts + Imported via "./fileB.mjs" from file 'fileA.ts' + Part of 'files' list in tsconfig.json + fileA.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because '../package.json' does not have field "type" + randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because '../package.json' does not have field "type" + a/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because '../package.json' does not have field "type" + b/ba/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because '../package.json' does not have field "type" + b/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because '../package.json' does not have field "type" + c/ca/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because '../package.json' does not have field "type" + c/ca/caa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because '../package.json' does not have field "type" + c/ca/caa/caaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because '../package.json' does not have field "type" + c/cb/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because '../package.json' does not have field "type" + d/da/daa/daaa/x/y/z/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because '../package.json' does not have field "type" + d/da/daa/daaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because '../package.json' does not have field "type" + d/da/daa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because '../package.json' does not have field "type" + d/da/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because '../package.json' does not have field "type" + e/ea/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because '../package.json' does not have field "type" + e/ea/eaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because '../package.json' does not have field "type" + e/ea/eaa/eaaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because '../package.json' does not have field "type" + e/ea/eaa/eaaa/x/y/z/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because '../package.json' does not have field "type" + f/fa/faa/x/y/z/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because '../package.json' does not have field "type" + f/fa/faa/faaa/randomFile.ts + Part of 'files' list in tsconfig.json + File is CommonJS module because '../package.json' does not have field "type" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/project/package.json 250 undefined WatchType: package.json file +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/home/src/workspaces/project/src/tsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "42f0ff7e30ac4a4bb5c390efeb3e313177d60d7f311d8821010103d6e0655daf", + "fileStats": { + "js": 0, + "jsSize": 0, + "jsx": 0, + "jsxSize": 0, + "ts": 21, + "tsSize": 446, + "tsx": 0, + "tsxSize": 0, + "dts": 1, + "dtsSize": 413, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "target": "es2016", + "composite": true, + "module": "node16", + "outDir": "", + "traceResolution": true + }, + "typeAcquisition": { + "enable": false, + "include": false, + "exclude": false + }, + "extends": false, + "files": true, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "tsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/home/src/workspaces/project/src/main.ts", + "configFile": "/home/src/workspaces/project/src/tsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/workspaces/project/src/tsconfig.json ProjectRootPath: undefined:: Result: undefined +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/src/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/src/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/src/tsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 1, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request +//// [/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts] *Lib* + + +PolledWatches:: +/home/src/tslibs/TS/Lib/package.json: *new* + {"pollingInterval":2000} +/home/src/tslibs/TS/package.json: *new* + {"pollingInterval":2000} +/home/src/tslibs/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/node_modules/@types: *new* + {"pollingInterval":500} +/home/src/workspaces/project/node_modules/@types: *new* + {"pollingInterval":500} +/home/src/workspaces/project/src/a/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/b/ba/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/b/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/c/ca/caa/caaa/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/c/ca/caa/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/c/ca/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/c/cb/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/c/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/daa/daaa/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/daa/daaa/x/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/daa/daaa/x/y/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/daa/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/eaa/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/faa/faaa/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/faa/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/faa/x/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/faa/x/y/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/faa/x/y/z/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/src/node_modules/@types: *new* + {"pollingInterval":500} +/home/src/workspaces/project/src/package.json: *new* + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts: *new* + {} +/home/src/workspaces/project/package.json: *new* + {} +/home/src/workspaces/project/src/a/randomFile.ts: *new* + {} +/home/src/workspaces/project/src/b/ba/randomFile.ts: *new* + {} +/home/src/workspaces/project/src/b/randomFile.ts: *new* + {} +/home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts: *new* + {} +/home/src/workspaces/project/src/c/ca/caa/randomFile.ts: *new* + {} +/home/src/workspaces/project/src/c/ca/randomFile.ts: *new* + {} +/home/src/workspaces/project/src/c/cb/randomFile.ts: *new* + {} +/home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts: *new* + {} +/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts: *new* + {} +/home/src/workspaces/project/src/d/da/daa/randomFile.ts: *new* + {} +/home/src/workspaces/project/src/d/da/randomFile.ts: *new* + {} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts: *new* + {} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts: *new* + {} +/home/src/workspaces/project/src/e/ea/eaa/randomFile.ts: *new* + {} +/home/src/workspaces/project/src/e/ea/randomFile.ts: *new* + {} +/home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts: *new* + {} +/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts: *new* + {} +/home/src/workspaces/project/src/fileA.ts: *new* + {} +/home/src/workspaces/project/src/fileB.mts: *new* + {} +/home/src/workspaces/project/src/randomFile.ts: *new* + {} +/home/src/workspaces/project/src/tsconfig.json: *new* + {} + +Projects:: +/home/src/workspaces/project/src/tsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/a/randomFile.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/b/ba/randomFile.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/b/randomFile.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/c/ca/caa/randomFile.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/c/ca/randomFile.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/c/cb/randomFile.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/d/da/daa/randomFile.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/d/da/randomFile.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/e/ea/eaa/randomFile.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/e/ea/randomFile.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/fileA.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/fileB.mts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/main.ts (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json *default* +/home/src/workspaces/project/src/randomFile.ts *new* + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json + +random edit +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /home/src/workspaces/project/src/randomFile.ts 1:: WatchInfo: /home/src/workspaces/project/src/randomFile.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/src/tsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/src/randomFile.ts 1:: WatchInfo: /home/src/workspaces/project/src/randomFile.ts 500 undefined WatchType: Closed Script info +Before running Timeout callback:: count: 2 +1: /home/src/workspaces/project/src/tsconfig.json +2: *ensureProjectForOpenFiles* +//// [/home/src/workspaces/project/src/randomFile.ts] +export const x = 10;export const y = 10; + + +Timeout callback:: count: 2 +1: /home/src/workspaces/project/src/tsconfig.json *new* +2: *ensureProjectForOpenFiles* *new* + +Projects:: +/home/src/workspaces/project/src/tsconfig.json (Configured) *changed* + projectStateVersion: 2 *changed* + projectProgramVersion: 1 + dirty: true *changed* + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/a/randomFile.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/b/ba/randomFile.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/b/randomFile.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/c/ca/caa/randomFile.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/c/ca/randomFile.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/c/cb/randomFile.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/d/da/daa/randomFile.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/d/da/randomFile.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/e/ea/eaa/randomFile.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/e/ea/randomFile.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/fileA.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/fileB.mts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/main.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json *default* +/home/src/workspaces/project/src/randomFile.ts *changed* + version: Text-1 + pendingReloadFromDisk: true *changed* + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/src/tsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/src/tsconfig.json +Info seq [hh:mm:ss:mss] File '/home/src/tslibs/TS/Lib/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/tslibs/TS/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/tslibs/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/a/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/b/ba/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/caa/caaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/cb/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/x/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/x/y/z/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/x/y/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/x/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/faaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/src/tsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/src/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/src/main.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/src/fileB.mts Text-1 "export function foo() {}" + /home/src/workspaces/project/src/fileA.ts Text-1 "import { foo } from \"./fileB.mjs\";\nfoo();\n" + /home/src/workspaces/project/src/randomFile.ts Text-2 "export const x = 10;export const y = 10;" + /home/src/workspaces/project/src/a/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/b/ba/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/b/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/c/ca/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/c/ca/caa/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/c/cb/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/d/da/daa/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/d/da/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/e/ea/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/e/ea/eaa/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts Text-1 "export const x = 10;" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/src/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/src/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/src/tsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/src/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/src/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/src/tsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /home/src/workspaces/project/src/main.ts +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/home/src/workspaces/project/src/main.ts" + ] + } + } +After running Timeout callback:: count: 0 + +Projects:: +/home/src/workspaces/project/src/tsconfig.json (Configured) *changed* + projectStateVersion: 2 + projectProgramVersion: 1 + dirty: false *changed* + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/a/randomFile.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/b/ba/randomFile.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/b/randomFile.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/c/ca/caa/randomFile.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/c/ca/randomFile.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/c/cb/randomFile.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/d/da/daa/randomFile.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/d/da/randomFile.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/e/ea/eaa/randomFile.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/e/ea/randomFile.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/fileA.ts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/fileB.mts + version: Text-1 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json +/home/src/workspaces/project/src/main.ts (Open) + version: SVC-1-0 + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json *default* +/home/src/workspaces/project/src/randomFile.ts *changed* + version: Text-2 *changed* + pendingReloadFromDisk: false *changed* + containingProjects: 1 + /home/src/workspaces/project/src/tsconfig.json + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Modify package json file to add type module +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /home/src/workspaces/project/package.json 1:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/src/tsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/package.json 1:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /home/src/workspaces/project/package.json 1:: WatchInfo: /home/src/workspaces/project/package.json 250 undefined WatchType: package.json file +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/package.json 1:: WatchInfo: /home/src/workspaces/project/package.json 250 undefined WatchType: package.json file +Before running Timeout callback:: count: 1 +3: /home/src/workspaces/project/src/tsconfig.jsonFailedLookupInvalidation +//// [/home/src/workspaces/project/package.json] +{ + "name": "app", + "version": "1.0.0", + "type": "module" +} + + +Timeout callback:: count: 1 +3: /home/src/workspaces/project/src/tsconfig.jsonFailedLookupInvalidation *new* + +Projects:: +/home/src/workspaces/project/src/tsconfig.json (Configured) *changed* + projectStateVersion: 2 + projectProgramVersion: 1 + autoImportProviderHost: undefined *changed* + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/src/tsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/src/tsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +After running Timeout callback:: count: 2 + +Timeout callback:: count: 2 +4: /home/src/workspaces/project/src/tsconfig.json *new* +5: *ensureProjectForOpenFiles* *new* + +Projects:: +/home/src/workspaces/project/src/tsconfig.json (Configured) *changed* + projectStateVersion: 3 *changed* + projectProgramVersion: 1 + dirty: true *changed* + +Before running Timeout callback:: count: 2 +4: /home/src/workspaces/project/src/tsconfig.json +5: *ensureProjectForOpenFiles* + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/src/tsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/src/tsconfig.json +Info seq [hh:mm:ss:mss] File '/home/src/tslibs/TS/Lib/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/tslibs/TS/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/tslibs/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Found 'package.json' at '/home/src/workspaces/project/package.json'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/a/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/b/ba/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/caa/caaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/cb/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/x/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/x/y/z/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/x/y/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/x/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/faaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module './fileB.mjs' from '/home/src/workspaces/project/src/fileA.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node16'. +Info seq [hh:mm:ss:mss] Resolving in ESM mode with conditions 'import', 'types', 'node'. +Info seq [hh:mm:ss:mss] Loading module as file / folder, candidate module location '/home/src/workspaces/project/src/fileB.mjs', target file types: TypeScript, JavaScript, Declaration. +Info seq [hh:mm:ss:mss] File name '/home/src/workspaces/project/src/fileB.mjs' has a '.mjs' extension - stripping it. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/fileB.mts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] ======== Module name './fileB.mjs' was successfully resolved to '/home/src/workspaces/project/src/fileB.mts'. ======== +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/a/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/b/ba/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/caa/caaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/cb/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/x/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/x/y/z/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/x/y/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/x/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/faaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/tslibs/TS/Lib/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/tslibs/TS/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/tslibs/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/src/tsconfig.json projectStateVersion: 3 projectProgramVersion: 1 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/src/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/src/main.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/src/fileB.mts Text-1 "export function foo() {}" + /home/src/workspaces/project/src/fileA.ts Text-1 "import { foo } from \"./fileB.mjs\";\nfoo();\n" + /home/src/workspaces/project/src/randomFile.ts Text-2 "export const x = 10;export const y = 10;" + /home/src/workspaces/project/src/a/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/b/ba/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/b/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/c/ca/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/c/ca/caa/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/c/cb/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/d/da/daa/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/d/da/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/e/ea/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/e/ea/eaa/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts Text-1 "export const x = 10;" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/src/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/src/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/src/tsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/src/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/src/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/src/tsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /home/src/workspaces/project/src/main.ts +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/home/src/workspaces/project/src/main.ts" + ] + } + } +After running Timeout callback:: count: 0 + +Projects:: +/home/src/workspaces/project/src/tsconfig.json (Configured) *changed* + projectStateVersion: 3 + projectProgramVersion: 2 *changed* + dirty: false *changed* + +Modify package.json file to remove type module +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /home/src/workspaces/project/package.json 1:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/src/tsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/package.json 1:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /home/src/workspaces/project/package.json 1:: WatchInfo: /home/src/workspaces/project/package.json 250 undefined WatchType: package.json file +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/package.json 1:: WatchInfo: /home/src/workspaces/project/package.json 250 undefined WatchType: package.json file +Before running Timeout callback:: count: 1 +6: /home/src/workspaces/project/src/tsconfig.jsonFailedLookupInvalidation +//// [/home/src/workspaces/project/package.json] +{ + "name": "app", + "version": "1.0.0" +} + + +Timeout callback:: count: 1 +6: /home/src/workspaces/project/src/tsconfig.jsonFailedLookupInvalidation *new* + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/src/tsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/src/tsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +After running Timeout callback:: count: 2 + +Timeout callback:: count: 2 +7: /home/src/workspaces/project/src/tsconfig.json *new* +8: *ensureProjectForOpenFiles* *new* + +Projects:: +/home/src/workspaces/project/src/tsconfig.json (Configured) *changed* + projectStateVersion: 4 *changed* + projectProgramVersion: 2 + dirty: true *changed* + +Before running Timeout callback:: count: 2 +7: /home/src/workspaces/project/src/tsconfig.json +8: *ensureProjectForOpenFiles* + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/src/tsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/src/tsconfig.json +Info seq [hh:mm:ss:mss] File '/home/src/tslibs/TS/Lib/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/tslibs/TS/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/tslibs/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Found 'package.json' at '/home/src/workspaces/project/package.json'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/a/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/b/ba/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/caa/caaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/cb/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/x/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/x/y/z/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/x/y/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/x/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/faaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module './fileB.mjs' from '/home/src/workspaces/project/src/fileA.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node16'. +Info seq [hh:mm:ss:mss] Resolving in CJS mode with conditions 'require', 'types', 'node'. +Info seq [hh:mm:ss:mss] Loading module as file / folder, candidate module location '/home/src/workspaces/project/src/fileB.mjs', target file types: TypeScript, JavaScript, Declaration. +Info seq [hh:mm:ss:mss] File name '/home/src/workspaces/project/src/fileB.mjs' has a '.mjs' extension - stripping it. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/fileB.mts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] ======== Module name './fileB.mjs' was successfully resolved to '/home/src/workspaces/project/src/fileB.mts'. ======== +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/a/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/b/ba/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/caa/caaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/cb/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/x/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/x/y/z/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/x/y/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/x/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/faaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/tslibs/TS/Lib/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/tslibs/TS/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/tslibs/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/src/tsconfig.json projectStateVersion: 4 projectProgramVersion: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/src/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/src/main.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/src/fileB.mts Text-1 "export function foo() {}" + /home/src/workspaces/project/src/fileA.ts Text-1 "import { foo } from \"./fileB.mjs\";\nfoo();\n" + /home/src/workspaces/project/src/randomFile.ts Text-2 "export const x = 10;export const y = 10;" + /home/src/workspaces/project/src/a/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/b/ba/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/b/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/c/ca/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/c/ca/caa/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/c/cb/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/d/da/daa/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/d/da/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/e/ea/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/e/ea/eaa/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts Text-1 "export const x = 10;" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/src/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/src/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/src/tsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/src/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/src/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/src/tsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /home/src/workspaces/project/src/main.ts +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/home/src/workspaces/project/src/main.ts" + ] + } + } +After running Timeout callback:: count: 0 + +Projects:: +/home/src/workspaces/project/src/tsconfig.json (Configured) *changed* + projectStateVersion: 4 + projectProgramVersion: 3 *changed* + dirty: false *changed* + +Delete package.json +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /home/src/workspaces/project/package.json 2:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/src/tsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/package.json 2:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /home/src/workspaces/project/package.json 2:: WatchInfo: /home/src/workspaces/project/package.json 250 undefined WatchType: package.json file +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/workspaces/project/package.json 250 undefined WatchType: package.json file +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/package.json 2:: WatchInfo: /home/src/workspaces/project/package.json 250 undefined WatchType: package.json file +Before running Timeout callback:: count: 1 +9: /home/src/workspaces/project/src/tsconfig.jsonFailedLookupInvalidation +//// [/home/src/workspaces/project/package.json] deleted + +Timeout callback:: count: 1 +9: /home/src/workspaces/project/src/tsconfig.jsonFailedLookupInvalidation *new* + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/src/tsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/src/tsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +After running Timeout callback:: count: 2 + +Timeout callback:: count: 2 +10: /home/src/workspaces/project/src/tsconfig.json *new* +11: *ensureProjectForOpenFiles* *new* + +Projects:: +/home/src/workspaces/project/src/tsconfig.json (Configured) *changed* + projectStateVersion: 5 *changed* + projectProgramVersion: 3 + dirty: true *changed* + +Before running Timeout callback:: count: 2 +10: /home/src/workspaces/project/src/tsconfig.json +11: *ensureProjectForOpenFiles* + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/src/tsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/src/tsconfig.json +Info seq [hh:mm:ss:mss] File '/home/src/tslibs/TS/Lib/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/tslibs/TS/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/tslibs/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/a/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/b/ba/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/caa/caaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/cb/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/x/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/x/y/z/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/x/y/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/x/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/faaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module './fileB.mjs' from '/home/src/workspaces/project/src/fileA.ts' of old program, it was successfully resolved to '/home/src/workspaces/project/src/fileB.mts'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/a/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/b/ba/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/caa/caaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/cb/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/x/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/x/y/z/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/x/y/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/x/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/faaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/tslibs/TS/Lib/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/tslibs/TS/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/tslibs/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/src/tsconfig.json projectStateVersion: 5 projectProgramVersion: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/src/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/src/main.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/src/fileB.mts Text-1 "export function foo() {}" + /home/src/workspaces/project/src/fileA.ts Text-1 "import { foo } from \"./fileB.mjs\";\nfoo();\n" + /home/src/workspaces/project/src/randomFile.ts Text-2 "export const x = 10;export const y = 10;" + /home/src/workspaces/project/src/a/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/b/ba/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/b/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/c/ca/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/c/ca/caa/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/c/cb/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/d/da/daa/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/d/da/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/e/ea/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/e/ea/eaa/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts Text-1 "export const x = 10;" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/src/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/src/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/src/tsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/src/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/src/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/src/tsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /home/src/workspaces/project/src/main.ts +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/home/src/workspaces/project/src/main.ts" + ] + } + } +After running Timeout callback:: count: 0 + +PolledWatches:: +/home/src/tslibs/TS/Lib/package.json: + {"pollingInterval":2000} +/home/src/tslibs/TS/package.json: + {"pollingInterval":2000} +/home/src/tslibs/package.json: + {"pollingInterval":2000} +/home/src/workspaces/node_modules/@types: + {"pollingInterval":500} +/home/src/workspaces/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/@types: + {"pollingInterval":500} +/home/src/workspaces/project/src/a/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/b/ba/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/b/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/c/ca/caa/caaa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/c/ca/caa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/c/ca/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/c/cb/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/c/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/daa/daaa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/daa/daaa/x/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/daa/daaa/x/y/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/daa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/eaa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/faa/faaa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/faa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/faa/x/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/faa/x/y/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/faa/x/y/z/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/node_modules/@types: + {"pollingInterval":500} +/home/src/workspaces/project/src/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts: + {} +/home/src/workspaces/project/package.json: + {} +/home/src/workspaces/project/src/a/randomFile.ts: + {} +/home/src/workspaces/project/src/b/ba/randomFile.ts: + {} +/home/src/workspaces/project/src/b/randomFile.ts: + {} +/home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts: + {} +/home/src/workspaces/project/src/c/ca/caa/randomFile.ts: + {} +/home/src/workspaces/project/src/c/ca/randomFile.ts: + {} +/home/src/workspaces/project/src/c/cb/randomFile.ts: + {} +/home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts: + {} +/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts: + {} +/home/src/workspaces/project/src/d/da/daa/randomFile.ts: + {} +/home/src/workspaces/project/src/d/da/randomFile.ts: + {} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts: + {} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts: + {} +/home/src/workspaces/project/src/e/ea/eaa/randomFile.ts: + {} +/home/src/workspaces/project/src/e/ea/randomFile.ts: + {} +/home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts: + {} +/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts: + {} +/home/src/workspaces/project/src/fileA.ts: + {} +/home/src/workspaces/project/src/fileB.mts: + {} +/home/src/workspaces/project/src/randomFile.ts: + {} +/home/src/workspaces/project/src/tsconfig.json: + {} + +Projects:: +/home/src/workspaces/project/src/tsconfig.json (Configured) *changed* + projectStateVersion: 5 + projectProgramVersion: 4 *changed* + dirty: false *changed* + +Add package json file with type module +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /home/src/workspaces/project/package.json 0:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/src/tsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/package.json 0:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Before running Timeout callback:: count: 1 +12: /home/src/workspaces/project/src/tsconfig.jsonFailedLookupInvalidation +//// [/home/src/workspaces/project/package.json] +{ + "name": "app", + "version": "1.0.0", + "type": "module" +} + + +Timeout callback:: count: 1 +12: /home/src/workspaces/project/src/tsconfig.jsonFailedLookupInvalidation *new* + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/src/tsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/src/tsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +After running Timeout callback:: count: 2 + +Timeout callback:: count: 2 +13: /home/src/workspaces/project/src/tsconfig.json *new* +14: *ensureProjectForOpenFiles* *new* + +Projects:: +/home/src/workspaces/project/src/tsconfig.json (Configured) *changed* + projectStateVersion: 6 *changed* + projectProgramVersion: 4 + dirty: true *changed* + +Before running Timeout callback:: count: 2 +13: /home/src/workspaces/project/src/tsconfig.json +14: *ensureProjectForOpenFiles* + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/src/tsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/src/tsconfig.json +Info seq [hh:mm:ss:mss] File '/home/src/tslibs/TS/Lib/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/tslibs/TS/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/tslibs/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Found 'package.json' at '/home/src/workspaces/project/package.json'. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/a/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/b/ba/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/caa/caaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/cb/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/x/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/x/y/z/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/x/y/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/x/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/faaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module './fileB.mjs' from '/home/src/workspaces/project/src/fileA.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node16'. +Info seq [hh:mm:ss:mss] Resolving in ESM mode with conditions 'import', 'types', 'node'. +Info seq [hh:mm:ss:mss] Loading module as file / folder, candidate module location '/home/src/workspaces/project/src/fileB.mjs', target file types: TypeScript, JavaScript, Declaration. +Info seq [hh:mm:ss:mss] File name '/home/src/workspaces/project/src/fileB.mjs' has a '.mjs' extension - stripping it. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/fileB.mts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] ======== Module name './fileB.mjs' was successfully resolved to '/home/src/workspaces/project/src/fileB.mts'. ======== +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/a/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/b/ba/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/caa/caaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/cb/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/x/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/x/y/z/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/x/y/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/x/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/faaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/tslibs/TS/Lib/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/tslibs/TS/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/tslibs/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/workspaces/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/src/tsconfig.json projectStateVersion: 6 projectProgramVersion: 4 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/src/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/src/main.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/src/fileB.mts Text-1 "export function foo() {}" + /home/src/workspaces/project/src/fileA.ts Text-1 "import { foo } from \"./fileB.mjs\";\nfoo();\n" + /home/src/workspaces/project/src/randomFile.ts Text-2 "export const x = 10;export const y = 10;" + /home/src/workspaces/project/src/a/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/b/ba/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/b/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/c/ca/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/c/ca/caa/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/c/cb/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/d/da/daa/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/d/da/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/e/ea/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/e/ea/eaa/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts Text-1 "export const x = 10;" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/src/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/src/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/src/tsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/src/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/src/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/src/tsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /home/src/workspaces/project/src/main.ts +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/home/src/workspaces/project/src/main.ts" + ] + } + } +After running Timeout callback:: count: 0 + +PolledWatches:: +/home/src/tslibs/TS/Lib/package.json: + {"pollingInterval":2000} +/home/src/tslibs/TS/package.json: + {"pollingInterval":2000} +/home/src/tslibs/package.json: + {"pollingInterval":2000} +/home/src/workspaces/node_modules/@types: + {"pollingInterval":500} +/home/src/workspaces/project/node_modules/@types: + {"pollingInterval":500} +/home/src/workspaces/project/src/a/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/b/ba/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/b/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/c/ca/caa/caaa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/c/ca/caa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/c/ca/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/c/cb/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/c/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/daa/daaa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/daa/daaa/x/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/daa/daaa/x/y/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/daa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/eaa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/faa/faaa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/faa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/faa/x/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/faa/x/y/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/faa/x/y/z/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/node_modules/@types: + {"pollingInterval":500} +/home/src/workspaces/project/src/package.json: + {"pollingInterval":2000} + +PolledWatches *deleted*:: +/home/src/workspaces/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts: + {} +/home/src/workspaces/project/package.json: + {} +/home/src/workspaces/project/src/a/randomFile.ts: + {} +/home/src/workspaces/project/src/b/ba/randomFile.ts: + {} +/home/src/workspaces/project/src/b/randomFile.ts: + {} +/home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts: + {} +/home/src/workspaces/project/src/c/ca/caa/randomFile.ts: + {} +/home/src/workspaces/project/src/c/ca/randomFile.ts: + {} +/home/src/workspaces/project/src/c/cb/randomFile.ts: + {} +/home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts: + {} +/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts: + {} +/home/src/workspaces/project/src/d/da/daa/randomFile.ts: + {} +/home/src/workspaces/project/src/d/da/randomFile.ts: + {} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts: + {} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts: + {} +/home/src/workspaces/project/src/e/ea/eaa/randomFile.ts: + {} +/home/src/workspaces/project/src/e/ea/randomFile.ts: + {} +/home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts: + {} +/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts: + {} +/home/src/workspaces/project/src/fileA.ts: + {} +/home/src/workspaces/project/src/fileB.mts: + {} +/home/src/workspaces/project/src/randomFile.ts: + {} +/home/src/workspaces/project/src/tsconfig.json: + {} + +Projects:: +/home/src/workspaces/project/src/tsconfig.json (Configured) *changed* + projectStateVersion: 6 + projectProgramVersion: 5 *changed* + dirty: false *changed* + +Delete package.json +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /home/src/workspaces/project/package.json 2:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/src/tsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /home/src/workspaces/project/package.json 2:: WatchInfo: /home/src/workspaces/project/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Before running Timeout callback:: count: 1 +15: /home/src/workspaces/project/src/tsconfig.jsonFailedLookupInvalidation +//// [/home/src/workspaces/project/package.json] deleted + +Timeout callback:: count: 1 +15: /home/src/workspaces/project/src/tsconfig.jsonFailedLookupInvalidation *new* + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/src/tsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Scheduled: /home/src/workspaces/project/src/tsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +After running Timeout callback:: count: 2 + +Timeout callback:: count: 2 +16: /home/src/workspaces/project/src/tsconfig.json *new* +17: *ensureProjectForOpenFiles* *new* + +Projects:: +/home/src/workspaces/project/src/tsconfig.json (Configured) *changed* + projectStateVersion: 7 *changed* + projectProgramVersion: 5 + dirty: true *changed* + +Before running Timeout callback:: count: 2 +16: /home/src/workspaces/project/src/tsconfig.json +17: *ensureProjectForOpenFiles* + +Info seq [hh:mm:ss:mss] Running: /home/src/workspaces/project/src/tsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/workspaces/project/src/tsconfig.json +Info seq [hh:mm:ss:mss] File '/home/src/tslibs/TS/Lib/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/tslibs/TS/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/tslibs/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/a/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/b/ba/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/caa/caaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/cb/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/x/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/x/y/z/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/x/y/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/x/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/faaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module './fileB.mjs' from '/home/src/workspaces/project/src/fileA.ts'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node16'. +Info seq [hh:mm:ss:mss] Resolving in CJS mode with conditions 'require', 'types', 'node'. +Info seq [hh:mm:ss:mss] Loading module as file / folder, candidate module location '/home/src/workspaces/project/src/fileB.mjs', target file types: TypeScript, JavaScript, Declaration. +Info seq [hh:mm:ss:mss] File name '/home/src/workspaces/project/src/fileB.mjs' has a '.mjs' extension - stripping it. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/fileB.mts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] ======== Module name './fileB.mjs' was successfully resolved to '/home/src/workspaces/project/src/fileB.mts'. ======== +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/a/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/b/ba/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/b/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/caa/caaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/caa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/ca/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/cb/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/c/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/x/y/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/x/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/daaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/daa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/da/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/d/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/eaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/ea/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/e/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/x/y/z/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/x/y/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/x/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/faaa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/faa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/fa/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/f/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/tslibs/TS/Lib/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/tslibs/TS/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/tslibs/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/workspaces/package.json 2000 undefined Project: /home/src/workspaces/project/src/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/workspaces/project/src/tsconfig.json projectStateVersion: 7 projectProgramVersion: 5 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/src/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/workspaces/project/src/main.ts SVC-1-0 "export const x = 10;" + /home/src/workspaces/project/src/fileB.mts Text-1 "export function foo() {}" + /home/src/workspaces/project/src/fileA.ts Text-1 "import { foo } from \"./fileB.mjs\";\nfoo();\n" + /home/src/workspaces/project/src/randomFile.ts Text-2 "export const x = 10;export const y = 10;" + /home/src/workspaces/project/src/a/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/b/ba/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/b/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/c/ca/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/c/ca/caa/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/c/cb/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/d/da/daa/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/d/da/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/e/ea/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/e/ea/eaa/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts Text-1 "export const x = 10;" + /home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts Text-1 "export const x = 10;" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/src/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/src/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/src/tsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/home/src/workspaces/project/src/tsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (22) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /home/src/workspaces/project/src/main.ts ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /home/src/workspaces/project/src/tsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /home/src/workspaces/project/src/main.ts +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/home/src/workspaces/project/src/main.ts" + ] + } + } +After running Timeout callback:: count: 0 + +PolledWatches:: +/home/src/tslibs/TS/Lib/package.json: + {"pollingInterval":2000} +/home/src/tslibs/TS/package.json: + {"pollingInterval":2000} +/home/src/tslibs/package.json: + {"pollingInterval":2000} +/home/src/workspaces/node_modules/@types: + {"pollingInterval":500} +/home/src/workspaces/package.json: *new* + {"pollingInterval":2000} +/home/src/workspaces/project/node_modules/@types: + {"pollingInterval":500} +/home/src/workspaces/project/src/a/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/b/ba/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/b/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/c/ca/caa/caaa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/c/ca/caa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/c/ca/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/c/cb/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/c/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/daa/daaa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/daa/daaa/x/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/daa/daaa/x/y/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/daa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/da/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/d/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/eaa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/ea/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/e/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/faa/faaa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/faa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/faa/x/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/faa/x/y/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/faa/x/y/z/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/fa/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/f/package.json: + {"pollingInterval":2000} +/home/src/workspaces/project/src/node_modules/@types: + {"pollingInterval":500} +/home/src/workspaces/project/src/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts: + {} +/home/src/workspaces/project/package.json: + {} +/home/src/workspaces/project/src/a/randomFile.ts: + {} +/home/src/workspaces/project/src/b/ba/randomFile.ts: + {} +/home/src/workspaces/project/src/b/randomFile.ts: + {} +/home/src/workspaces/project/src/c/ca/caa/caaa/randomFile.ts: + {} +/home/src/workspaces/project/src/c/ca/caa/randomFile.ts: + {} +/home/src/workspaces/project/src/c/ca/randomFile.ts: + {} +/home/src/workspaces/project/src/c/cb/randomFile.ts: + {} +/home/src/workspaces/project/src/d/da/daa/daaa/randomFile.ts: + {} +/home/src/workspaces/project/src/d/da/daa/daaa/x/y/z/randomFile.ts: + {} +/home/src/workspaces/project/src/d/da/daa/randomFile.ts: + {} +/home/src/workspaces/project/src/d/da/randomFile.ts: + {} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/randomFile.ts: + {} +/home/src/workspaces/project/src/e/ea/eaa/eaaa/x/y/z/randomFile.ts: + {} +/home/src/workspaces/project/src/e/ea/eaa/randomFile.ts: + {} +/home/src/workspaces/project/src/e/ea/randomFile.ts: + {} +/home/src/workspaces/project/src/f/fa/faa/faaa/randomFile.ts: + {} +/home/src/workspaces/project/src/f/fa/faa/x/y/z/randomFile.ts: + {} +/home/src/workspaces/project/src/fileA.ts: + {} +/home/src/workspaces/project/src/fileB.mts: + {} +/home/src/workspaces/project/src/randomFile.ts: + {} +/home/src/workspaces/project/src/tsconfig.json: + {} + +Projects:: +/home/src/workspaces/project/src/tsconfig.json (Configured) *changed* + projectStateVersion: 7 + projectProgramVersion: 6 *changed* + dirty: false *changed* diff --git a/tests/baselines/reference/tsserver/resolutionCache/renaming-module-should-restore-the-states-for-configured-projects.js b/tests/baselines/reference/tsserver/resolutionCache/renaming-module-should-restore-the-states-for-configured-projects.js index 05a0952d19a62..d2cf9ae3f28b1 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/renaming-module-should-restore-the-states-for-configured-projects.js +++ b/tests/baselines/reference/tsserver/resolutionCache/renaming-module-should-restore-the-states-for-configured-projects.js @@ -272,10 +272,10 @@ ScriptInfos:: Info seq [hh:mm:ss:mss] Running: /users/username/projects/project/tsconfig.json Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile1.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/projects/project/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/username/projects/project/tsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/users/username/projects/project/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/resolutionCache/renaming-module-should-restore-the-states-for-inferred-projects.js b/tests/baselines/reference/tsserver/resolutionCache/renaming-module-should-restore-the-states-for-inferred-projects.js index 3406107ae7baa..7c28532d199de 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/renaming-module-should-restore-the-states-for-inferred-projects.js +++ b/tests/baselines/reference/tsserver/resolutionCache/renaming-module-should-restore-the-states-for-inferred-projects.js @@ -176,10 +176,10 @@ ScriptInfos:: Info seq [hh:mm:ss:mss] Running: /dev/null/inferredProject1* Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/resolutionCache/sharing-across-references.js b/tests/baselines/reference/tsserver/resolutionCache/sharing-across-references.js index d4fe62e1c1381..a9dba82e1001d 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/sharing-across-references.js +++ b/tests/baselines/reference/tsserver/resolutionCache/sharing-across-references.js @@ -132,6 +132,10 @@ Info seq [hh:mm:ss:mss] File '/users/username/projects/node_modules/moduleX/ind Info seq [hh:mm:ss:mss] File '/users/username/projects/node_modules/moduleX/index.d.ts' exists - use it as a name resolution result. Info seq [hh:mm:ss:mss] Resolving real path for '/users/username/projects/node_modules/moduleX/index.d.ts', result '/users/username/projects/node_modules/moduleX/index.d.ts'. Info seq [hh:mm:ss:mss] ======== Module name 'moduleX' was successfully resolved to '/users/username/projects/node_modules/moduleX/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/app/node_modules 1 undefined Project: /users/username/projects/app/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/app/node_modules 1 undefined Project: /users/username/projects/app/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/node_modules 1 undefined Project: /users/username/projects/app/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/node_modules 1 undefined Project: /users/username/projects/app/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] File '/users/username/projects/node_modules/moduleX/package.json' does not exist according to earlier cached lookups. Info seq [hh:mm:ss:mss] File '/users/username/projects/node_modules/package.json' does not exist. Info seq [hh:mm:ss:mss] File '/users/username/projects/package.json' does not exist. @@ -154,13 +158,9 @@ Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for pre Info seq [hh:mm:ss:mss] Directory '/users/username/projects/common/node_modules' does not exist, skipping all lookups in it. Info seq [hh:mm:ss:mss] Resolution for module 'moduleX' was found in cache from location '/users/username/projects'. Info seq [hh:mm:ss:mss] ======== Module name 'moduleX' was successfully resolved to '/users/username/projects/node_modules/moduleX/index.d.ts'. ======== -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/app/node_modules 1 undefined Project: /users/username/projects/app/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/app/node_modules 1 undefined Project: /users/username/projects/app/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/node_modules 1 undefined Project: /users/username/projects/app/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/node_modules 1 undefined Project: /users/username/projects/app/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/common/node_modules 1 undefined Project: /users/username/projects/app/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/common/node_modules 1 undefined Project: /users/username/projects/app/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/username/projects/node_modules/moduleX/package.json 2000 undefined Project: /users/username/projects/app/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/username/projects/node_modules/package.json 2000 undefined Project: /users/username/projects/app/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/username/projects/package.json 2000 undefined Project: /users/username/projects/app/tsconfig.json WatchType: File location affecting resolution diff --git a/tests/baselines/reference/tsserver/resolutionCache/should-remove-the-module-not-found-error.js b/tests/baselines/reference/tsserver/resolutionCache/should-remove-the-module-not-found-error.js index 4e908f810de54..c3a024bb6f09f 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/should-remove-the-module-not-found-error.js +++ b/tests/baselines/reference/tsserver/resolutionCache/should-remove-the-module-not-found-error.js @@ -36,10 +36,10 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/username/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/username/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/moduleFile 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/resolutionCache/suggestion-diagnostics.js b/tests/baselines/reference/tsserver/resolutionCache/suggestion-diagnostics.js index bd7c9b5a93112..ecfd2f61d43a7 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/suggestion-diagnostics.js +++ b/tests/baselines/reference/tsserver/resolutionCache/suggestion-diagnostics.js @@ -125,13 +125,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -171,7 +169,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -195,7 +192,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/resolutionCache/when-resolution-fails-in-global-typings-location.js b/tests/baselines/reference/tsserver/resolutionCache/when-resolution-fails-in-global-typings-location.js index 2ce83a382f727..89d7543a9478f 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/when-resolution-fails-in-global-typings-location.js +++ b/tests/baselines/reference/tsserver/resolutionCache/when-resolution-fails-in-global-typings-location.js @@ -87,9 +87,10 @@ Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all Info seq [hh:mm:ss:mss] ======== Module name 'worker_threads' was not resolved. ======== Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/dev/null/inferredProject1*'. Running extra resolution pass for module 'node' using cache location '/home/src/Library/Caches/typescript'. Info seq [hh:mm:ss:mss] Directory '/home/src/Library/Caches/typescript/node_modules' does not exist, skipping all lookups in it. -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.es2020.full.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin/^ 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin/^ 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations @@ -100,8 +101,7 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.es2020.full.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/resolutionCache/when-resolution-fails.js b/tests/baselines/reference/tsserver/resolutionCache/when-resolution-fails.js index 148a97fcaf36b..1d18074c1bfb2 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/when-resolution-fails.js +++ b/tests/baselines/reference/tsserver/resolutionCache/when-resolution-fails.js @@ -98,7 +98,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/somefolder/module1.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/typings/electron.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/somefolder 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/somefolder 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/somefolder 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations @@ -115,12 +114,13 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/typings 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/typings 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/typings 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/typings 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms diff --git a/tests/baselines/reference/tsserver/resolutionCache/when-resolution-is-succeeds-in-global-typings-location-with-import-from-the-cache-file-failing-with-currentDirectory-at-root.js b/tests/baselines/reference/tsserver/resolutionCache/when-resolution-is-succeeds-in-global-typings-location-with-import-from-the-cache-file-failing-with-currentDirectory-at-root.js index 615c5f77f85dd..e7f95c3549de0 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/when-resolution-is-succeeds-in-global-typings-location-with-import-from-the-cache-file-failing-with-currentDirectory-at-root.js +++ b/tests/baselines/reference/tsserver/resolutionCache/when-resolution-is-succeeds-in-global-typings-location-with-import-from-the-cache-file-failing-with-currentDirectory-at-root.js @@ -88,6 +88,8 @@ Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/ Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/node/package.json' does not exist. Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/node.d.ts' does not exist. Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/node/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/node/package.json' does not exist according to earlier cached lookups. Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist. Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist. @@ -116,10 +118,8 @@ Info seq [hh:mm:ss:mss] ======== Module name 'undici-types' was not resolved. = Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/dev/null/inferredProject1*'. Running extra resolution pass for module 'undici-types' using cache location '/home/src/Library/Caches/typescript'. Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/undici-types.d.ts' does not exist. Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/undici-types.d.ts' does not exist. -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.es2020.full.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.es2020.full.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/node/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution diff --git a/tests/baselines/reference/tsserver/resolutionCache/when-resolution-is-succeeds-in-global-typings-location-with-import-from-the-cache-file-failing.js b/tests/baselines/reference/tsserver/resolutionCache/when-resolution-is-succeeds-in-global-typings-location-with-import-from-the-cache-file-failing.js index f8c3226fbbaa4..ee704c1bccb9f 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/when-resolution-is-succeeds-in-global-typings-location-with-import-from-the-cache-file-failing.js +++ b/tests/baselines/reference/tsserver/resolutionCache/when-resolution-is-succeeds-in-global-typings-location-with-import-from-the-cache-file-failing.js @@ -103,6 +103,22 @@ Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/ Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/node/package.json' does not exist. Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/node.d.ts' does not exist. Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/node/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin/^ 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin/^ 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/node/package.json' does not exist according to earlier cached lookups. Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist. Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist. @@ -131,24 +147,8 @@ Info seq [hh:mm:ss:mss] ======== Module name 'undici-types' was not resolved. = Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/dev/null/inferredProject1*'. Running extra resolution pass for module 'undici-types' using cache location '/home/src/Library/Caches/typescript'. Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/undici-types.d.ts' does not exist. Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/undici-types.d.ts' does not exist. -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.es2020.full.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin/^ 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin/^ 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.es2020.full.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/node/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution diff --git a/tests/baselines/reference/tsserver/resolutionCache/when-resolution-is-succeeds-in-global-typings-location-with-import-from-the-cache-file-with-currentDirectory-at-root.js b/tests/baselines/reference/tsserver/resolutionCache/when-resolution-is-succeeds-in-global-typings-location-with-import-from-the-cache-file-with-currentDirectory-at-root.js index 8e73b011c67fa..fc9c2aec2b86d 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/when-resolution-is-succeeds-in-global-typings-location-with-import-from-the-cache-file-with-currentDirectory-at-root.js +++ b/tests/baselines/reference/tsserver/resolutionCache/when-resolution-is-succeeds-in-global-typings-location-with-import-from-the-cache-file-with-currentDirectory-at-root.js @@ -92,6 +92,8 @@ Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/ Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/node/package.json' does not exist. Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/node.d.ts' does not exist. Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/node/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/node/package.json' does not exist according to earlier cached lookups. Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist. Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist. @@ -115,14 +117,12 @@ Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/ Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/undici-types/index.d.ts' exists - use it as a name resolution result. Info seq [hh:mm:ss:mss] Resolving real path for '/home/src/Library/Caches/typescript/node_modules/@types/undici-types/index.d.ts', result '/home/src/Library/Caches/typescript/node_modules/@types/undici-types/index.d.ts'. Info seq [hh:mm:ss:mss] ======== Module name 'undici-types' was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/undici-types/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/undici-types/package.json' does not exist according to earlier cached lookups. Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.es2020.full.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/undici-types/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution @@ -225,13 +225,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -271,7 +269,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowJs": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -297,7 +294,6 @@ Info seq [hh:mm:ss:mss] event: "allowJs": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/resolutionCache/when-resolution-is-succeeds-in-global-typings-location-with-import-from-the-cache-file.js b/tests/baselines/reference/tsserver/resolutionCache/when-resolution-is-succeeds-in-global-typings-location-with-import-from-the-cache-file.js index 745a39d77e997..c4a89ab8ff1e8 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/when-resolution-is-succeeds-in-global-typings-location-with-import-from-the-cache-file.js +++ b/tests/baselines/reference/tsserver/resolutionCache/when-resolution-is-succeeds-in-global-typings-location-with-import-from-the-cache-file.js @@ -107,6 +107,22 @@ Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/ Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/node/package.json' does not exist. Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/node.d.ts' does not exist. Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/node/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin/^ 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin/^ 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/node/package.json' does not exist according to earlier cached lookups. Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist. Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist. @@ -130,28 +146,12 @@ Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/ Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/undici-types/index.d.ts' exists - use it as a name resolution result. Info seq [hh:mm:ss:mss] Resolving real path for '/home/src/Library/Caches/typescript/node_modules/@types/undici-types/index.d.ts', result '/home/src/Library/Caches/typescript/node_modules/@types/undici-types/index.d.ts'. Info seq [hh:mm:ss:mss] ======== Module name 'undici-types' was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/undici-types/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/undici-types/package.json' does not exist according to earlier cached lookups. Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.es2020.full.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin/^ 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin/^ 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/undici-types/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution @@ -280,13 +280,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -328,7 +326,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowJs": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -354,7 +351,6 @@ Info seq [hh:mm:ss:mss] event: "allowJs": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/resolutionCache/when-resolution-is-succeeds-in-global-typings-location-with-relative-import-from-the-cache-file-with-currentDirectory-at-root.js b/tests/baselines/reference/tsserver/resolutionCache/when-resolution-is-succeeds-in-global-typings-location-with-relative-import-from-the-cache-file-with-currentDirectory-at-root.js index f9421a749fbd7..26d7cf6932665 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/when-resolution-is-succeeds-in-global-typings-location-with-relative-import-from-the-cache-file-with-currentDirectory-at-root.js +++ b/tests/baselines/reference/tsserver/resolutionCache/when-resolution-is-succeeds-in-global-typings-location-with-relative-import-from-the-cache-file-with-currentDirectory-at-root.js @@ -92,6 +92,8 @@ Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/ Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/node/package.json' does not exist. Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/node.d.ts' does not exist. Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/node/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/node/package.json' does not exist according to earlier cached lookups. Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist. Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist. @@ -105,8 +107,6 @@ Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/ Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/node/x.d.ts' exists - use it as a name resolution result. Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/node/package.json' does not exist according to earlier cached lookups. Info seq [hh:mm:ss:mss] ======== Module name './x' was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/node/x.d.ts'. ======== -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/node/package.json' does not exist according to earlier cached lookups. Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. @@ -212,13 +212,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -258,7 +256,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowJs": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -284,7 +281,6 @@ Info seq [hh:mm:ss:mss] event: "allowJs": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/resolutionCache/when-resolution-is-succeeds-in-global-typings-location-with-relative-import-from-the-cache-file.js b/tests/baselines/reference/tsserver/resolutionCache/when-resolution-is-succeeds-in-global-typings-location-with-relative-import-from-the-cache-file.js index 152a4dbbfc7ea..a3602aa5f2b7c 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/when-resolution-is-succeeds-in-global-typings-location-with-relative-import-from-the-cache-file.js +++ b/tests/baselines/reference/tsserver/resolutionCache/when-resolution-is-succeeds-in-global-typings-location-with-relative-import-from-the-cache-file.js @@ -107,6 +107,22 @@ Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/ Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/node/package.json' does not exist. Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/node.d.ts' does not exist. Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/node/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin/^ 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin/^ 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/node/package.json' does not exist according to earlier cached lookups. Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist. Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist. @@ -120,27 +136,11 @@ Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/ Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/node/x.d.ts' exists - use it as a name resolution result. Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/node/package.json' does not exist according to earlier cached lookups. Info seq [hh:mm:ss:mss] ======== Module name './x' was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/node/x.d.ts'. ======== -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/node/package.json' does not exist according to earlier cached lookups. Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.es2020.full.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin/^ 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin/^ 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Vscode/Projects/bin 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/node/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution @@ -267,13 +267,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -315,7 +313,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowJs": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -341,7 +338,6 @@ Info seq [hh:mm:ss:mss] event: "allowJs": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/resolutionCache/when-resolves-to-ambient-module.js b/tests/baselines/reference/tsserver/resolutionCache/when-resolves-to-ambient-module.js index 9b02a29a4cc51..62636f2eaa00f 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/when-resolves-to-ambient-module.js +++ b/tests/baselines/reference/tsserver/resolutionCache/when-resolves-to-ambient-module.js @@ -107,7 +107,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/typings/electron.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/typings/node.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/somefolder 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/somefolder 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/somefolder 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations @@ -124,12 +123,13 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/typings 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/typings 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/typings 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/typings 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms diff --git a/tests/baselines/reference/tsserver/resolutionCache/when-watching-node_modules-as-part-of-wild-card-directories-in-config-project.js b/tests/baselines/reference/tsserver/resolutionCache/when-watching-node_modules-as-part-of-wild-card-directories-in-config-project.js index ae5403f0c3af4..cd48c15858eda 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/when-watching-node_modules-as-part-of-wild-card-directories-in-config-project.js +++ b/tests/baselines/reference/tsserver/resolutionCache/when-watching-node_modules-as-part-of-wild-card-directories-in-config-project.js @@ -61,11 +61,11 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/somemodule/package.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/package.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution @@ -217,24 +217,24 @@ ScriptInfos:: containingProjects: 1 /user/username/projects/myproject/tsconfig.json *default* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.cache :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.cache :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.cache :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.cache :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.cache :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.cache :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.cache :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.cache Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.cache :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.cache/babel-loader :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.cache/babel-loader :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.cache/babel-loader :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.cache/babel-loader :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.cache/babel-loader :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.cache/babel-loader :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.cache/babel-loader :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.cache/babel-loader Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.cache/babel-loader :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.cache/babel-loader/89c02171edab901b9926470ba6d5677e.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.cache/babel-loader/89c02171edab901b9926470ba6d5677e.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.cache/babel-loader/89c02171edab901b9926470ba6d5677e.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.cache/babel-loader/89c02171edab901b9926470ba6d5677e.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.cache/babel-loader/89c02171edab901b9926470ba6d5677e.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.cache/babel-loader/89c02171edab901b9926470ba6d5677e.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.cache/babel-loader/89c02171edab901b9926470ba6d5677e.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.cache/babel-loader/89c02171edab901b9926470ba6d5677e.ts Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.cache/babel-loader/89c02171edab901b9926470ba6d5677e.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory diff --git a/tests/baselines/reference/tsserver/resolutionCache/when-watching-node_modules-in-inferred-project-for-failed-lookup-closed-script-infos.js b/tests/baselines/reference/tsserver/resolutionCache/when-watching-node_modules-in-inferred-project-for-failed-lookup-closed-script-infos.js index 489e2acc528d9..b511f08131a4a 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/when-watching-node_modules-in-inferred-project-for-failed-lookup-closed-script-infos.js +++ b/tests/baselines/reference/tsserver/resolutionCache/when-watching-node_modules-in-inferred-project-for-failed-lookup-closed-script-infos.js @@ -39,11 +39,11 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/somemodule/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution @@ -134,18 +134,18 @@ ScriptInfos:: containingProjects: 1 /dev/null/inferredProject1* *default* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.cache :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.cache :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.cache :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.cache :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.cache/babel-loader :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.cache/babel-loader :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.cache :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.cache :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.cache/babel-loader :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.cache/babel-loader :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.cache/babel-loader/89c02171edab901b9926470ba6d5677e.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.cache/babel-loader/89c02171edab901b9926470ba6d5677e.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.cache/babel-loader :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.cache/babel-loader :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.cache/babel-loader/89c02171edab901b9926470ba6d5677e.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.cache/babel-loader/89c02171edab901b9926470ba6d5677e.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.cache/babel-loader/89c02171edab901b9926470ba6d5677e.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.cache/babel-loader/89c02171edab901b9926470ba6d5677e.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache After npm cache update //// [/user/username/projects/myproject/node_modules/.cache/babel-loader/89c02171edab901b9926470ba6d5677e.ts] { diff --git a/tests/baselines/reference/tsserver/skipLibCheck/jsonly-external-project-with-skipLibCheck-as-false.js b/tests/baselines/reference/tsserver/skipLibCheck/jsonly-external-project-with-skipLibCheck-as-false.js index fc5cdef20849a..c3f396f7fed0d 100644 --- a/tests/baselines/reference/tsserver/skipLibCheck/jsonly-external-project-with-skipLibCheck-as-false.js +++ b/tests/baselines/reference/tsserver/skipLibCheck/jsonly-external-project-with-skipLibCheck-as-false.js @@ -152,13 +152,11 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -203,7 +201,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -224,7 +221,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/skipLibCheck/jsonly-external-project.js b/tests/baselines/reference/tsserver/skipLibCheck/jsonly-external-project.js index 38230f04df1a0..0a0136ffed7d0 100644 --- a/tests/baselines/reference/tsserver/skipLibCheck/jsonly-external-project.js +++ b/tests/baselines/reference/tsserver/skipLibCheck/jsonly-external-project.js @@ -149,13 +149,11 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -199,7 +197,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -219,7 +216,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/skipLibCheck/jsonly-inferred-project.js b/tests/baselines/reference/tsserver/skipLibCheck/jsonly-inferred-project.js index bbd6e2c2eac3e..050034567ea0f 100644 --- a/tests/baselines/reference/tsserver/skipLibCheck/jsonly-inferred-project.js +++ b/tests/baselines/reference/tsserver/skipLibCheck/jsonly-inferred-project.js @@ -166,13 +166,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project/a/b", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -212,7 +210,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -236,7 +233,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -454,12 +450,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project/a/b", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -490,7 +484,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -513,7 +506,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -684,14 +676,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/pro Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/projects/project/a/b/file1.js ProjectRootPath: undefined:: Result: undefined Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, currentDirectory: /home/src/projects/project/a/b Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (3) @@ -729,12 +713,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project/a/b", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -774,7 +756,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -798,7 +779,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -828,14 +808,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Directory location for typing installer Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Directory location for typing installer TI:: [hh:mm:ss:mss] Closing file watchers for project '/dev/null/inferredProject1*' - done. -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/skipLibCheck/reports-semantic-error-in-configured-js-project-with-tscheck.js b/tests/baselines/reference/tsserver/skipLibCheck/reports-semantic-error-in-configured-js-project-with-tscheck.js index 1654e01f23da7..c5660f0cd343f 100644 --- a/tests/baselines/reference/tsserver/skipLibCheck/reports-semantic-error-in-configured-js-project-with-tscheck.js +++ b/tests/baselines/reference/tsserver/skipLibCheck/reports-semantic-error-in-configured-js-project-with-tscheck.js @@ -166,13 +166,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -214,7 +212,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -240,7 +237,6 @@ Info seq [hh:mm:ss:mss] event: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/skipLibCheck/reports-semantic-error-in-configured-project-with-tscheck.js b/tests/baselines/reference/tsserver/skipLibCheck/reports-semantic-error-in-configured-project-with-tscheck.js index 7ba4f8db7e449..5479310dc227b 100644 --- a/tests/baselines/reference/tsserver/skipLibCheck/reports-semantic-error-in-configured-project-with-tscheck.js +++ b/tests/baselines/reference/tsserver/skipLibCheck/reports-semantic-error-in-configured-project-with-tscheck.js @@ -161,13 +161,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -208,7 +206,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -233,7 +230,6 @@ Info seq [hh:mm:ss:mss] event: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/skipLibCheck/reports-semantic-error-with-tscheck.js b/tests/baselines/reference/tsserver/skipLibCheck/reports-semantic-error-with-tscheck.js index ffae6347b2a95..1406681336776 100644 --- a/tests/baselines/reference/tsserver/skipLibCheck/reports-semantic-error-with-tscheck.js +++ b/tests/baselines/reference/tsserver/skipLibCheck/reports-semantic-error-with-tscheck.js @@ -137,13 +137,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -183,7 +181,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -207,7 +204,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/skipLibCheck/should-not-report-bind-errors-for-declaration-files-with-skipLibCheck=true.js b/tests/baselines/reference/tsserver/skipLibCheck/should-not-report-bind-errors-for-declaration-files-with-skipLibCheck=true.js index b10c7b21e2450..b1b0a64b423ae 100644 --- a/tests/baselines/reference/tsserver/skipLibCheck/should-not-report-bind-errors-for-declaration-files-with-skipLibCheck=true.js +++ b/tests/baselines/reference/tsserver/skipLibCheck/should-not-report-bind-errors-for-declaration-files-with-skipLibCheck=true.js @@ -190,13 +190,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -237,7 +235,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -262,7 +259,6 @@ Info seq [hh:mm:ss:mss] event: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/smartSelection/works-for-simple-JavaScript.js b/tests/baselines/reference/tsserver/smartSelection/works-for-simple-JavaScript.js index 2298c65961c56..b84af2624b6be 100644 --- a/tests/baselines/reference/tsserver/smartSelection/works-for-simple-JavaScript.js +++ b/tests/baselines/reference/tsserver/smartSelection/works-for-simple-JavaScript.js @@ -132,13 +132,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -178,7 +176,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -202,7 +199,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/symLinks/module-resolution-when-project-compiles-from-sources.js b/tests/baselines/reference/tsserver/symLinks/module-resolution-when-project-compiles-from-sources.js index cf632444c85de..6309b67c8113d 100644 --- a/tests/baselines/reference/tsserver/symLinks/module-resolution-when-project-compiles-from-sources.js +++ b/tests/baselines/reference/tsserver/symLinks/module-resolution-when-project-compiles-from-sources.js @@ -72,7 +72,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Config: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Config: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations @@ -85,6 +84,7 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/p Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots @@ -421,8 +421,8 @@ Before running Timeout callback:: count: 2 Info seq [hh:mm:ss:mss] Running: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/package.json 2000 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations diff --git a/tests/baselines/reference/tsserver/symLinks/module-resolution-when-project-has-node_modules-setup-but-doesnt-have-modules-in-typings-folder-and-then-recompiles.js b/tests/baselines/reference/tsserver/symLinks/module-resolution-when-project-has-node_modules-setup-but-doesnt-have-modules-in-typings-folder-and-then-recompiles.js index 4a7745d525dd3..27d0b2339c1e4 100644 --- a/tests/baselines/reference/tsserver/symLinks/module-resolution-when-project-has-node_modules-setup-but-doesnt-have-modules-in-typings-folder-and-then-recompiles.js +++ b/tests/baselines/reference/tsserver/symLinks/module-resolution-when-project-has-node_modules-setup-but-doesnt-have-modules-in-typings-folder-and-then-recompiles.js @@ -74,7 +74,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Config: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Config: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations @@ -90,6 +89,7 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/package.json 2000 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/symLinks/module-resolution-when-project-recompiles-after-deleting-generated-folders.js b/tests/baselines/reference/tsserver/symLinks/module-resolution-when-project-recompiles-after-deleting-generated-folders.js index 3ea2fa0a2da89..804868a4d9bb0 100644 --- a/tests/baselines/reference/tsserver/symLinks/module-resolution-when-project-recompiles-after-deleting-generated-folders.js +++ b/tests/baselines/reference/tsserver/symLinks/module-resolution-when-project-recompiles-after-deleting-generated-folders.js @@ -77,13 +77,13 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Config: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Config: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/package.json 2000 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/symLinks/module-resolution-with-path-mapping-when-project-compiles-from-sources.js b/tests/baselines/reference/tsserver/symLinks/module-resolution-with-path-mapping-when-project-compiles-from-sources.js index 508885852d01c..57c0b4e3b7c5b 100644 --- a/tests/baselines/reference/tsserver/symLinks/module-resolution-with-path-mapping-when-project-compiles-from-sources.js +++ b/tests/baselines/reference/tsserver/symLinks/module-resolution-with-path-mapping-when-project-compiles-from-sources.js @@ -89,7 +89,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Config: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Config: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages 0 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages 0 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations @@ -107,6 +106,7 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/package.json 2000 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/symLinks/module-resolution-with-path-mapping-when-project-has-node_modules-setup-but-doesnt-have-modules-in-typings-folder-and-then-recompiles.js b/tests/baselines/reference/tsserver/symLinks/module-resolution-with-path-mapping-when-project-has-node_modules-setup-but-doesnt-have-modules-in-typings-folder-and-then-recompiles.js index 64f1bd926da16..3e5702ffd2dab 100644 --- a/tests/baselines/reference/tsserver/symLinks/module-resolution-with-path-mapping-when-project-has-node_modules-setup-but-doesnt-have-modules-in-typings-folder-and-then-recompiles.js +++ b/tests/baselines/reference/tsserver/symLinks/module-resolution-with-path-mapping-when-project-has-node_modules-setup-but-doesnt-have-modules-in-typings-folder-and-then-recompiles.js @@ -91,7 +91,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Config: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Config: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages 0 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages 0 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations @@ -111,6 +110,7 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/package.json 2000 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots @@ -432,10 +432,10 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/username/p Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@microsoft/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@microsoft/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations diff --git a/tests/baselines/reference/tsserver/symLinks/module-resolution-with-path-mapping-when-project-recompiles-after-deleting-generated-folders.js b/tests/baselines/reference/tsserver/symLinks/module-resolution-with-path-mapping-when-project-recompiles-after-deleting-generated-folders.js index 340dab734c50a..29893b188ecb7 100644 --- a/tests/baselines/reference/tsserver/symLinks/module-resolution-with-path-mapping-when-project-recompiles-after-deleting-generated-folders.js +++ b/tests/baselines/reference/tsserver/symLinks/module-resolution-with-path-mapping-when-project-recompiles-after-deleting-generated-folders.js @@ -94,11 +94,11 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Config: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Config: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages 0 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages 0 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/package.json 2000 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots @@ -670,10 +670,10 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/username/p Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@microsoft/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@microsoft/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations diff --git a/tests/baselines/reference/tsserver/symLinks/monorepo-style-sibling-packages-symlinked-Linux-canUseWatchEvents.js b/tests/baselines/reference/tsserver/symLinks/monorepo-style-sibling-packages-symlinked-Linux-canUseWatchEvents.js index bd72c183bf7c8..e2feae52315c6 100644 --- a/tests/baselines/reference/tsserver/symLinks/monorepo-style-sibling-packages-symlinked-Linux-canUseWatchEvents.js +++ b/tests/baselines/reference/tsserver/symLinks/monorepo-style-sibling-packages-symlinked-Linux-canUseWatchEvents.js @@ -222,18 +222,6 @@ Info seq [hh:mm:ss:mss] Directory '/home/src/node_modules' does not exist, skip Info seq [hh:mm:ss:mss] Directory '/home/node_modules' does not exist, skipping all lookups in it. Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. Info seq [hh:mm:ss:mss] ======== Module name 'package1' was not resolved. ======== -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] event: - { - "seq": 0, - "type": "event", - "event": "createFileWatcher", - "body": { - "id": 3, - "path": "/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts" - } - } -Custom watchFile:: Added:: {"id":3,"path":"/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts"} Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/src 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { @@ -241,13 +229,13 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createDirectoryWatcher", "body": { - "id": 4, + "id": 3, "path": "/home/src/projects/project/packages/package2/src", "recursive": true, "ignoreUpdate": true } } -Custom watchDirectory:: Added:: {"id":4,"path":"/home/src/projects/project/packages/package2/src","recursive":true,"ignoreUpdate":true} +Custom watchDirectory:: Added:: {"id":3,"path":"/home/src/projects/project/packages/package2/src","recursive":true,"ignoreUpdate":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/src 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/node_modules 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: @@ -256,12 +244,12 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createDirectoryWatcher", "body": { - "id": 5, + "id": 4, "path": "/home/src/projects/project/packages/package2/node_modules", "recursive": true } } -Custom watchDirectory:: Added:: {"id":5,"path":"/home/src/projects/project/packages/package2/node_modules","recursive":true} +Custom watchDirectory:: Added:: {"id":4,"path":"/home/src/projects/project/packages/package2/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/node_modules 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/node_modules 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: @@ -270,12 +258,12 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createDirectoryWatcher", "body": { - "id": 6, + "id": 5, "path": "/home/src/projects/project/packages/node_modules", "recursive": true } } -Custom watchDirectory:: Added:: {"id":6,"path":"/home/src/projects/project/packages/node_modules","recursive":true} +Custom watchDirectory:: Added:: {"id":5,"path":"/home/src/projects/project/packages/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/node_modules 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: @@ -284,12 +272,12 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createDirectoryWatcher", "body": { - "id": 7, + "id": 6, "path": "/home/src/projects/project/node_modules", "recursive": true } } -Custom watchDirectory:: Added:: {"id":7,"path":"/home/src/projects/project/node_modules","recursive":true} +Custom watchDirectory:: Added:: {"id":6,"path":"/home/src/projects/project/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/package1 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: @@ -298,13 +286,13 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createDirectoryWatcher", "body": { - "id": 8, + "id": 7, "path": "/home/src/projects/project/node_modules/package1", "recursive": true, "ignoreUpdate": true } } -Custom watchDirectory:: Added:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true} +Custom watchDirectory:: Added:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/package1 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: @@ -313,12 +301,12 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createDirectoryWatcher", "body": { - "id": 9, + "id": 8, "path": "/home/src/projects/node_modules", "recursive": true } } -Custom watchDirectory:: Added:: {"id":9,"path":"/home/src/projects/node_modules","recursive":true} +Custom watchDirectory:: Added:: {"id":8,"path":"/home/src/projects/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package1/package.json 2000 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] event: @@ -327,11 +315,23 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createFileWatcher", "body": { - "id": 10, + "id": 9, "path": "/home/src/projects/project/packages/package1/package.json" } } -Custom watchFile:: Added:: {"id":10,"path":"/home/src/projects/project/packages/package1/package.json"} +Custom watchFile:: Added:: {"id":9,"path":"/home/src/projects/project/packages/package1/package.json"} +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "createFileWatcher", + "body": { + "id": 10, + "path": "/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts" + } + } +Custom watchFile:: Added:: {"id":10,"path":"/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts"} Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] event: { @@ -513,37 +513,37 @@ After request PolledWatches:: /home/src/projects/project/packages/package1/package.json: *new* - {"event":{"id":10,"path":"/home/src/projects/project/packages/package1/package.json"}} + {"event":{"id":9,"path":"/home/src/projects/project/packages/package1/package.json"}} /home/src/projects/project/packages/package2/package.json: *new* {"event":{"id":15,"path":"/home/src/projects/project/packages/package2/package.json"}} /home/src/projects/project/packages/package2/tsconfig.json: *new* {"event":{"id":1,"path":"/home/src/projects/project/packages/package2/tsconfig.json"}} /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts: *new* - {"event":{"id":3,"path":"/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts"}} + {"event":{"id":10,"path":"/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts"}} FsWatchesRecursive:: /home/src/projects/node_modules: *new* - {"event":{"id":9,"path":"/home/src/projects/node_modules","recursive":true}} + {"event":{"id":8,"path":"/home/src/projects/node_modules","recursive":true}} /home/src/projects/node_modules/@types: *new* {"event":{"id":14,"path":"/home/src/projects/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/node_modules: *new* - {"event":{"id":7,"path":"/home/src/projects/project/node_modules","recursive":true}} + {"event":{"id":6,"path":"/home/src/projects/project/node_modules","recursive":true}} /home/src/projects/project/node_modules/@types: *new* {"event":{"id":13,"path":"/home/src/projects/project/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/node_modules/package1: *new* - {"event":{"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}} + {"event":{"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/node_modules: *new* - {"event":{"id":6,"path":"/home/src/projects/project/packages/node_modules","recursive":true}} + {"event":{"id":5,"path":"/home/src/projects/project/packages/node_modules","recursive":true}} /home/src/projects/project/packages/node_modules/@types: *new* {"event":{"id":12,"path":"/home/src/projects/project/packages/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/package2: *new* {"event":{"id":2,"path":"/home/src/projects/project/packages/package2","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/package2/node_modules: *new* - {"event":{"id":5,"path":"/home/src/projects/project/packages/package2/node_modules","recursive":true}} + {"event":{"id":4,"path":"/home/src/projects/project/packages/package2/node_modules","recursive":true}} /home/src/projects/project/packages/package2/node_modules/@types: *new* {"event":{"id":11,"path":"/home/src/projects/project/packages/package2/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/package2/src: *new* - {"event":{"id":4,"path":"/home/src/projects/project/packages/package2/src","recursive":true,"ignoreUpdate":true}} + {"event":{"id":3,"path":"/home/src/projects/project/packages/package2/src","recursive":true,"ignoreUpdate":true}} Projects:: /home/src/projects/project/packages/package2/tsconfig.json (Configured) *new* @@ -694,18 +694,18 @@ Info seq [hh:mm:ss:mss] event: After running Immedidate callback:: count: 0 Build dependencies -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist created -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist updated -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.js created -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.js updated -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist updated -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.d.ts created -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.d.ts updated -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist updated -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/tsconfig.tsbuildinfo created -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/tsconfig.tsbuildinfo updated -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/tsconfig.tsbuildinfo.readable.baseline.txt created -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/tsconfig.tsbuildinfo.readable.baseline.txt updated +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist created +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist updated +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.js created +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.js updated +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist updated +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.d.ts created +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.d.ts updated +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist updated +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/tsconfig.tsbuildinfo created +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/tsconfig.tsbuildinfo updated +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/tsconfig.tsbuildinfo.readable.baseline.txt created +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/tsconfig.tsbuildinfo.readable.baseline.txt updated Before request //// [/home/src/projects/project/packages/package1/dist/index.js] Inode:: 123 "use strict"; @@ -734,7 +734,7 @@ Info seq [hh:mm:ss:mss] request: { "command": "watchChange", "arguments": { - "id": 8, + "id": 7, "created": [ "/home/src/projects/project/node_modules/package1/dist", "/home/src/projects/project/node_modules/package1/dist/index.js", @@ -832,10 +832,10 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "closeFileWatcher", "body": { - "id": 9 + "id": 8 } } -Custom watchDirectory:: Close:: {"id":9,"path":"/home/src/projects/node_modules","recursive":true} +Custom watchDirectory:: Close:: {"id":8,"path":"/home/src/projects/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/packages/package2/tsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/packages/package2/tsconfig.json' (Configured) @@ -888,39 +888,39 @@ PolledWatches:: /home/src/projects/project/packages/package1/dist/index.d.ts: *new* {"event":{"id":16,"path":"/home/src/projects/project/packages/package1/dist/index.d.ts"}} /home/src/projects/project/packages/package1/package.json: - {"event":{"id":10,"path":"/home/src/projects/project/packages/package1/package.json"}} + {"event":{"id":9,"path":"/home/src/projects/project/packages/package1/package.json"}} /home/src/projects/project/packages/package2/package.json: {"event":{"id":15,"path":"/home/src/projects/project/packages/package2/package.json"}} /home/src/projects/project/packages/package2/tsconfig.json: {"event":{"id":1,"path":"/home/src/projects/project/packages/package2/tsconfig.json"}} /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts: - {"event":{"id":3,"path":"/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts"}} + {"event":{"id":10,"path":"/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts"}} FsWatchesRecursive:: /home/src/projects/node_modules/@types: {"event":{"id":14,"path":"/home/src/projects/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/node_modules: - {"event":{"id":7,"path":"/home/src/projects/project/node_modules","recursive":true}} + {"event":{"id":6,"path":"/home/src/projects/project/node_modules","recursive":true}} /home/src/projects/project/node_modules/@types: {"event":{"id":13,"path":"/home/src/projects/project/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/node_modules/package1: - {"event":{"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}} + {"event":{"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/node_modules: - {"event":{"id":6,"path":"/home/src/projects/project/packages/node_modules","recursive":true}} + {"event":{"id":5,"path":"/home/src/projects/project/packages/node_modules","recursive":true}} /home/src/projects/project/packages/node_modules/@types: {"event":{"id":12,"path":"/home/src/projects/project/packages/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/package2: {"event":{"id":2,"path":"/home/src/projects/project/packages/package2","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/package2/node_modules: - {"event":{"id":5,"path":"/home/src/projects/project/packages/package2/node_modules","recursive":true}} + {"event":{"id":4,"path":"/home/src/projects/project/packages/package2/node_modules","recursive":true}} /home/src/projects/project/packages/package2/node_modules/@types: {"event":{"id":11,"path":"/home/src/projects/project/packages/package2/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/package2/src: - {"event":{"id":4,"path":"/home/src/projects/project/packages/package2/src","recursive":true,"ignoreUpdate":true}} + {"event":{"id":3,"path":"/home/src/projects/project/packages/package2/src","recursive":true,"ignoreUpdate":true}} FsWatchesRecursive *deleted*:: /home/src/projects/node_modules: - {"event":{"id":9,"path":"/home/src/projects/node_modules","recursive":true}} + {"event":{"id":8,"path":"/home/src/projects/node_modules","recursive":true}} Projects:: /home/src/projects/project/packages/package2/tsconfig.json (Configured) *changed* @@ -1067,9 +1067,9 @@ After running Immedidate callback:: count: 0 Clean dependencies build Custom watchFile:: Triggered:: {"id":16,"path":"/home/src/projects/project/packages/package1/dist/index.d.ts"}:: /home/src/projects/project/packages/package1/dist/index.d.ts deleted -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.d.ts deleted -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.js deleted -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist deleted +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.d.ts deleted +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.js deleted +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist deleted Before request //// [/home/src/projects/project/packages/package1/dist/index.js] deleted //// [/home/src/projects/project/packages/package1/dist/index.d.ts] deleted @@ -1085,7 +1085,7 @@ Info seq [hh:mm:ss:mss] request: ] }, { - "id": 8, + "id": 7, "deleted": [ "/home/src/projects/project/node_modules/package1/dist/index.d.ts", "/home/src/projects/project/node_modules/package1/dist/index.js", @@ -1276,13 +1276,13 @@ PolledWatches:: /home/src/projects/project/packages/package1/dist/index.d.ts: {"event":{"id":16,"path":"/home/src/projects/project/packages/package1/dist/index.d.ts"}} /home/src/projects/project/packages/package1/package.json: - {"event":{"id":10,"path":"/home/src/projects/project/packages/package1/package.json"}} + {"event":{"id":9,"path":"/home/src/projects/project/packages/package1/package.json"}} /home/src/projects/project/packages/package2/package.json: {"event":{"id":15,"path":"/home/src/projects/project/packages/package2/package.json"}} /home/src/projects/project/packages/package2/tsconfig.json: {"event":{"id":1,"path":"/home/src/projects/project/packages/package2/tsconfig.json"}} /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts: - {"event":{"id":3,"path":"/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts"}} + {"event":{"id":10,"path":"/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts"}} FsWatchesRecursive:: /home/src/projects/node_modules: *new* @@ -1290,23 +1290,23 @@ FsWatchesRecursive:: /home/src/projects/node_modules/@types: {"event":{"id":14,"path":"/home/src/projects/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/node_modules: - {"event":{"id":7,"path":"/home/src/projects/project/node_modules","recursive":true}} + {"event":{"id":6,"path":"/home/src/projects/project/node_modules","recursive":true}} /home/src/projects/project/node_modules/@types: {"event":{"id":13,"path":"/home/src/projects/project/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/node_modules/package1: - {"event":{"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}} + {"event":{"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/node_modules: - {"event":{"id":6,"path":"/home/src/projects/project/packages/node_modules","recursive":true}} + {"event":{"id":5,"path":"/home/src/projects/project/packages/node_modules","recursive":true}} /home/src/projects/project/packages/node_modules/@types: {"event":{"id":12,"path":"/home/src/projects/project/packages/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/package2: {"event":{"id":2,"path":"/home/src/projects/project/packages/package2","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/package2/node_modules: - {"event":{"id":5,"path":"/home/src/projects/project/packages/package2/node_modules","recursive":true}} + {"event":{"id":4,"path":"/home/src/projects/project/packages/package2/node_modules","recursive":true}} /home/src/projects/project/packages/package2/node_modules/@types: {"event":{"id":11,"path":"/home/src/projects/project/packages/package2/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/package2/src: - {"event":{"id":4,"path":"/home/src/projects/project/packages/package2/src","recursive":true,"ignoreUpdate":true}} + {"event":{"id":3,"path":"/home/src/projects/project/packages/package2/src","recursive":true,"ignoreUpdate":true}} Timeout callback:: count: 0 14: /home/src/projects/project/packages/package2/tsconfig.jsonFailedLookupInvalidation *deleted* @@ -1458,17 +1458,17 @@ Info seq [hh:mm:ss:mss] event: After running Immedidate callback:: count: 0 Build dependencies -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist created -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist updated -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.js created -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.js updated -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist updated +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist created +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist updated +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.js created +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.js updated +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist updated Custom watchFile:: Triggered:: {"id":16,"path":"/home/src/projects/project/packages/package1/dist/index.d.ts"}:: /home/src/projects/project/packages/package1/dist/index.d.ts created -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.d.ts created -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.d.ts updated -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist updated -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/tsconfig.tsbuildinfo updated -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/tsconfig.tsbuildinfo.readable.baseline.txt updated +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.d.ts created +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.d.ts updated +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist updated +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/tsconfig.tsbuildinfo updated +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/tsconfig.tsbuildinfo.readable.baseline.txt updated Before request //// [/home/src/projects/project/packages/package1/tsconfig.tsbuildinfo] file written with same contents Inode:: 125 //// [/home/src/projects/project/packages/package1/tsconfig.tsbuildinfo.readable.baseline.txt] file written with same contents Inode:: 126 @@ -1488,7 +1488,7 @@ Info seq [hh:mm:ss:mss] request: "command": "watchChange", "arguments": [ { - "id": 8, + "id": 7, "created": [ "/home/src/projects/project/node_modules/package1/dist", "/home/src/projects/project/node_modules/package1/dist/index.js", @@ -1645,35 +1645,35 @@ PolledWatches:: /home/src/projects/project/packages/package1/dist/index.d.ts: {"event":{"id":16,"path":"/home/src/projects/project/packages/package1/dist/index.d.ts"}} /home/src/projects/project/packages/package1/package.json: - {"event":{"id":10,"path":"/home/src/projects/project/packages/package1/package.json"}} + {"event":{"id":9,"path":"/home/src/projects/project/packages/package1/package.json"}} /home/src/projects/project/packages/package2/package.json: {"event":{"id":15,"path":"/home/src/projects/project/packages/package2/package.json"}} /home/src/projects/project/packages/package2/tsconfig.json: {"event":{"id":1,"path":"/home/src/projects/project/packages/package2/tsconfig.json"}} /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts: - {"event":{"id":3,"path":"/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts"}} + {"event":{"id":10,"path":"/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts"}} FsWatchesRecursive:: /home/src/projects/node_modules/@types: {"event":{"id":14,"path":"/home/src/projects/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/node_modules: - {"event":{"id":7,"path":"/home/src/projects/project/node_modules","recursive":true}} + {"event":{"id":6,"path":"/home/src/projects/project/node_modules","recursive":true}} /home/src/projects/project/node_modules/@types: {"event":{"id":13,"path":"/home/src/projects/project/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/node_modules/package1: - {"event":{"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}} + {"event":{"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/node_modules: - {"event":{"id":6,"path":"/home/src/projects/project/packages/node_modules","recursive":true}} + {"event":{"id":5,"path":"/home/src/projects/project/packages/node_modules","recursive":true}} /home/src/projects/project/packages/node_modules/@types: {"event":{"id":12,"path":"/home/src/projects/project/packages/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/package2: {"event":{"id":2,"path":"/home/src/projects/project/packages/package2","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/package2/node_modules: - {"event":{"id":5,"path":"/home/src/projects/project/packages/package2/node_modules","recursive":true}} + {"event":{"id":4,"path":"/home/src/projects/project/packages/package2/node_modules","recursive":true}} /home/src/projects/project/packages/package2/node_modules/@types: {"event":{"id":11,"path":"/home/src/projects/project/packages/package2/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/package2/src: - {"event":{"id":4,"path":"/home/src/projects/project/packages/package2/src","recursive":true,"ignoreUpdate":true}} + {"event":{"id":3,"path":"/home/src/projects/project/packages/package2/src","recursive":true,"ignoreUpdate":true}} FsWatchesRecursive *deleted*:: /home/src/projects/node_modules: diff --git a/tests/baselines/reference/tsserver/symLinks/monorepo-style-sibling-packages-symlinked-Linux.js b/tests/baselines/reference/tsserver/symLinks/monorepo-style-sibling-packages-symlinked-Linux.js index 3c16c65e032ba..08bb7820d3dde 100644 --- a/tests/baselines/reference/tsserver/symLinks/monorepo-style-sibling-packages-symlinked-Linux.js +++ b/tests/baselines/reference/tsserver/symLinks/monorepo-style-sibling-packages-symlinked-Linux.js @@ -198,7 +198,6 @@ Info seq [hh:mm:ss:mss] Directory '/home/src/node_modules' does not exist, skip Info seq [hh:mm:ss:mss] Directory '/home/node_modules' does not exist, skipping all lookups in it. Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. Info seq [hh:mm:ss:mss] ======== Module name 'package1' was not resolved. ======== -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/src 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/src 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/node_modules 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations @@ -212,6 +211,7 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package1/package.json 2000 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/symLinks/monorepo-style-sibling-packages-symlinked-canUseWatchEvents.js b/tests/baselines/reference/tsserver/symLinks/monorepo-style-sibling-packages-symlinked-canUseWatchEvents.js index e9bca79deb7bc..b1d79b4fa983f 100644 --- a/tests/baselines/reference/tsserver/symLinks/monorepo-style-sibling-packages-symlinked-canUseWatchEvents.js +++ b/tests/baselines/reference/tsserver/symLinks/monorepo-style-sibling-packages-symlinked-canUseWatchEvents.js @@ -222,18 +222,6 @@ Info seq [hh:mm:ss:mss] Directory '/home/src/node_modules' does not exist, skip Info seq [hh:mm:ss:mss] Directory '/home/node_modules' does not exist, skipping all lookups in it. Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. Info seq [hh:mm:ss:mss] ======== Module name 'package1' was not resolved. ======== -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] event: - { - "seq": 0, - "type": "event", - "event": "createFileWatcher", - "body": { - "id": 3, - "path": "/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts" - } - } -Custom watchFile:: Added:: {"id":3,"path":"/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts"} Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/src 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { @@ -241,13 +229,13 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createDirectoryWatcher", "body": { - "id": 4, + "id": 3, "path": "/home/src/projects/project/packages/package2/src", "recursive": true, "ignoreUpdate": true } } -Custom watchDirectory:: Added:: {"id":4,"path":"/home/src/projects/project/packages/package2/src","recursive":true,"ignoreUpdate":true} +Custom watchDirectory:: Added:: {"id":3,"path":"/home/src/projects/project/packages/package2/src","recursive":true,"ignoreUpdate":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/src 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/node_modules 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: @@ -256,12 +244,12 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createDirectoryWatcher", "body": { - "id": 5, + "id": 4, "path": "/home/src/projects/project/packages/package2/node_modules", "recursive": true } } -Custom watchDirectory:: Added:: {"id":5,"path":"/home/src/projects/project/packages/package2/node_modules","recursive":true} +Custom watchDirectory:: Added:: {"id":4,"path":"/home/src/projects/project/packages/package2/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/node_modules 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/node_modules 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: @@ -270,12 +258,12 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createDirectoryWatcher", "body": { - "id": 6, + "id": 5, "path": "/home/src/projects/project/packages/node_modules", "recursive": true } } -Custom watchDirectory:: Added:: {"id":6,"path":"/home/src/projects/project/packages/node_modules","recursive":true} +Custom watchDirectory:: Added:: {"id":5,"path":"/home/src/projects/project/packages/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/node_modules 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: @@ -284,12 +272,12 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createDirectoryWatcher", "body": { - "id": 7, + "id": 6, "path": "/home/src/projects/project/node_modules", "recursive": true } } -Custom watchDirectory:: Added:: {"id":7,"path":"/home/src/projects/project/node_modules","recursive":true} +Custom watchDirectory:: Added:: {"id":6,"path":"/home/src/projects/project/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/package1 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: @@ -298,13 +286,13 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createDirectoryWatcher", "body": { - "id": 8, + "id": 7, "path": "/home/src/projects/project/node_modules/package1", "recursive": true, "ignoreUpdate": true } } -Custom watchDirectory:: Added:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true} +Custom watchDirectory:: Added:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/package1 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: @@ -313,12 +301,12 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createDirectoryWatcher", "body": { - "id": 9, + "id": 8, "path": "/home/src/projects/node_modules", "recursive": true } } -Custom watchDirectory:: Added:: {"id":9,"path":"/home/src/projects/node_modules","recursive":true} +Custom watchDirectory:: Added:: {"id":8,"path":"/home/src/projects/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package1/package.json 2000 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] event: @@ -327,11 +315,23 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createFileWatcher", "body": { - "id": 10, + "id": 9, "path": "/home/src/projects/project/packages/package1/package.json" } } -Custom watchFile:: Added:: {"id":10,"path":"/home/src/projects/project/packages/package1/package.json"} +Custom watchFile:: Added:: {"id":9,"path":"/home/src/projects/project/packages/package1/package.json"} +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "createFileWatcher", + "body": { + "id": 10, + "path": "/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts" + } + } +Custom watchFile:: Added:: {"id":10,"path":"/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts"} Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] event: { @@ -513,37 +513,37 @@ After request PolledWatches:: /home/src/projects/project/packages/package1/package.json: *new* - {"event":{"id":10,"path":"/home/src/projects/project/packages/package1/package.json"}} + {"event":{"id":9,"path":"/home/src/projects/project/packages/package1/package.json"}} /home/src/projects/project/packages/package2/package.json: *new* {"event":{"id":15,"path":"/home/src/projects/project/packages/package2/package.json"}} /home/src/projects/project/packages/package2/tsconfig.json: *new* {"event":{"id":1,"path":"/home/src/projects/project/packages/package2/tsconfig.json"}} /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts: *new* - {"event":{"id":3,"path":"/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts"}} + {"event":{"id":10,"path":"/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts"}} FsWatchesRecursive:: /home/src/projects/node_modules: *new* - {"event":{"id":9,"path":"/home/src/projects/node_modules","recursive":true}} + {"event":{"id":8,"path":"/home/src/projects/node_modules","recursive":true}} /home/src/projects/node_modules/@types: *new* {"event":{"id":14,"path":"/home/src/projects/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/node_modules: *new* - {"event":{"id":7,"path":"/home/src/projects/project/node_modules","recursive":true}} + {"event":{"id":6,"path":"/home/src/projects/project/node_modules","recursive":true}} /home/src/projects/project/node_modules/@types: *new* {"event":{"id":13,"path":"/home/src/projects/project/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/node_modules/package1: *new* - {"event":{"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}} + {"event":{"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/node_modules: *new* - {"event":{"id":6,"path":"/home/src/projects/project/packages/node_modules","recursive":true}} + {"event":{"id":5,"path":"/home/src/projects/project/packages/node_modules","recursive":true}} /home/src/projects/project/packages/node_modules/@types: *new* {"event":{"id":12,"path":"/home/src/projects/project/packages/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/package2: *new* {"event":{"id":2,"path":"/home/src/projects/project/packages/package2","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/package2/node_modules: *new* - {"event":{"id":5,"path":"/home/src/projects/project/packages/package2/node_modules","recursive":true}} + {"event":{"id":4,"path":"/home/src/projects/project/packages/package2/node_modules","recursive":true}} /home/src/projects/project/packages/package2/node_modules/@types: *new* {"event":{"id":11,"path":"/home/src/projects/project/packages/package2/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/package2/src: *new* - {"event":{"id":4,"path":"/home/src/projects/project/packages/package2/src","recursive":true,"ignoreUpdate":true}} + {"event":{"id":3,"path":"/home/src/projects/project/packages/package2/src","recursive":true,"ignoreUpdate":true}} Projects:: /home/src/projects/project/packages/package2/tsconfig.json (Configured) *new* @@ -694,18 +694,18 @@ Info seq [hh:mm:ss:mss] event: After running Immedidate callback:: count: 0 Build dependencies -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist created -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist updated -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.js created -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.js updated -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist updated -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.d.ts created -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.d.ts updated -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist updated -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/tsconfig.tsbuildinfo created -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/tsconfig.tsbuildinfo updated -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/tsconfig.tsbuildinfo.readable.baseline.txt created -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/tsconfig.tsbuildinfo.readable.baseline.txt updated +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist created +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist updated +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.js created +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.js updated +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist updated +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.d.ts created +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.d.ts updated +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist updated +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/tsconfig.tsbuildinfo created +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/tsconfig.tsbuildinfo updated +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/tsconfig.tsbuildinfo.readable.baseline.txt created +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/tsconfig.tsbuildinfo.readable.baseline.txt updated Before request //// [/home/src/projects/project/packages/package1/dist/index.js] "use strict"; @@ -734,7 +734,7 @@ Info seq [hh:mm:ss:mss] request: { "command": "watchChange", "arguments": { - "id": 8, + "id": 7, "created": [ "/home/src/projects/project/node_modules/package1/dist", "/home/src/projects/project/node_modules/package1/dist/index.js", @@ -832,10 +832,10 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "closeFileWatcher", "body": { - "id": 9 + "id": 8 } } -Custom watchDirectory:: Close:: {"id":9,"path":"/home/src/projects/node_modules","recursive":true} +Custom watchDirectory:: Close:: {"id":8,"path":"/home/src/projects/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/packages/package2/tsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/packages/package2/tsconfig.json' (Configured) @@ -888,39 +888,39 @@ PolledWatches:: /home/src/projects/project/packages/package1/dist/index.d.ts: *new* {"event":{"id":16,"path":"/home/src/projects/project/packages/package1/dist/index.d.ts"}} /home/src/projects/project/packages/package1/package.json: - {"event":{"id":10,"path":"/home/src/projects/project/packages/package1/package.json"}} + {"event":{"id":9,"path":"/home/src/projects/project/packages/package1/package.json"}} /home/src/projects/project/packages/package2/package.json: {"event":{"id":15,"path":"/home/src/projects/project/packages/package2/package.json"}} /home/src/projects/project/packages/package2/tsconfig.json: {"event":{"id":1,"path":"/home/src/projects/project/packages/package2/tsconfig.json"}} /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts: - {"event":{"id":3,"path":"/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts"}} + {"event":{"id":10,"path":"/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts"}} FsWatchesRecursive:: /home/src/projects/node_modules/@types: {"event":{"id":14,"path":"/home/src/projects/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/node_modules: - {"event":{"id":7,"path":"/home/src/projects/project/node_modules","recursive":true}} + {"event":{"id":6,"path":"/home/src/projects/project/node_modules","recursive":true}} /home/src/projects/project/node_modules/@types: {"event":{"id":13,"path":"/home/src/projects/project/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/node_modules/package1: - {"event":{"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}} + {"event":{"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/node_modules: - {"event":{"id":6,"path":"/home/src/projects/project/packages/node_modules","recursive":true}} + {"event":{"id":5,"path":"/home/src/projects/project/packages/node_modules","recursive":true}} /home/src/projects/project/packages/node_modules/@types: {"event":{"id":12,"path":"/home/src/projects/project/packages/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/package2: {"event":{"id":2,"path":"/home/src/projects/project/packages/package2","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/package2/node_modules: - {"event":{"id":5,"path":"/home/src/projects/project/packages/package2/node_modules","recursive":true}} + {"event":{"id":4,"path":"/home/src/projects/project/packages/package2/node_modules","recursive":true}} /home/src/projects/project/packages/package2/node_modules/@types: {"event":{"id":11,"path":"/home/src/projects/project/packages/package2/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/package2/src: - {"event":{"id":4,"path":"/home/src/projects/project/packages/package2/src","recursive":true,"ignoreUpdate":true}} + {"event":{"id":3,"path":"/home/src/projects/project/packages/package2/src","recursive":true,"ignoreUpdate":true}} FsWatchesRecursive *deleted*:: /home/src/projects/node_modules: - {"event":{"id":9,"path":"/home/src/projects/node_modules","recursive":true}} + {"event":{"id":8,"path":"/home/src/projects/node_modules","recursive":true}} Projects:: /home/src/projects/project/packages/package2/tsconfig.json (Configured) *changed* @@ -1067,9 +1067,9 @@ After running Immedidate callback:: count: 0 Clean dependencies build Custom watchFile:: Triggered:: {"id":16,"path":"/home/src/projects/project/packages/package1/dist/index.d.ts"}:: /home/src/projects/project/packages/package1/dist/index.d.ts deleted -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.d.ts deleted -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.js deleted -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist deleted +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.d.ts deleted +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.js deleted +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist deleted Before request //// [/home/src/projects/project/packages/package1/dist/index.js] deleted //// [/home/src/projects/project/packages/package1/dist/index.d.ts] deleted @@ -1085,7 +1085,7 @@ Info seq [hh:mm:ss:mss] request: ] }, { - "id": 8, + "id": 7, "deleted": [ "/home/src/projects/project/node_modules/package1/dist/index.d.ts", "/home/src/projects/project/node_modules/package1/dist/index.js", @@ -1276,13 +1276,13 @@ PolledWatches:: /home/src/projects/project/packages/package1/dist/index.d.ts: {"event":{"id":16,"path":"/home/src/projects/project/packages/package1/dist/index.d.ts"}} /home/src/projects/project/packages/package1/package.json: - {"event":{"id":10,"path":"/home/src/projects/project/packages/package1/package.json"}} + {"event":{"id":9,"path":"/home/src/projects/project/packages/package1/package.json"}} /home/src/projects/project/packages/package2/package.json: {"event":{"id":15,"path":"/home/src/projects/project/packages/package2/package.json"}} /home/src/projects/project/packages/package2/tsconfig.json: {"event":{"id":1,"path":"/home/src/projects/project/packages/package2/tsconfig.json"}} /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts: - {"event":{"id":3,"path":"/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts"}} + {"event":{"id":10,"path":"/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts"}} FsWatchesRecursive:: /home/src/projects/node_modules: *new* @@ -1290,23 +1290,23 @@ FsWatchesRecursive:: /home/src/projects/node_modules/@types: {"event":{"id":14,"path":"/home/src/projects/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/node_modules: - {"event":{"id":7,"path":"/home/src/projects/project/node_modules","recursive":true}} + {"event":{"id":6,"path":"/home/src/projects/project/node_modules","recursive":true}} /home/src/projects/project/node_modules/@types: {"event":{"id":13,"path":"/home/src/projects/project/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/node_modules/package1: - {"event":{"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}} + {"event":{"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/node_modules: - {"event":{"id":6,"path":"/home/src/projects/project/packages/node_modules","recursive":true}} + {"event":{"id":5,"path":"/home/src/projects/project/packages/node_modules","recursive":true}} /home/src/projects/project/packages/node_modules/@types: {"event":{"id":12,"path":"/home/src/projects/project/packages/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/package2: {"event":{"id":2,"path":"/home/src/projects/project/packages/package2","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/package2/node_modules: - {"event":{"id":5,"path":"/home/src/projects/project/packages/package2/node_modules","recursive":true}} + {"event":{"id":4,"path":"/home/src/projects/project/packages/package2/node_modules","recursive":true}} /home/src/projects/project/packages/package2/node_modules/@types: {"event":{"id":11,"path":"/home/src/projects/project/packages/package2/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/package2/src: - {"event":{"id":4,"path":"/home/src/projects/project/packages/package2/src","recursive":true,"ignoreUpdate":true}} + {"event":{"id":3,"path":"/home/src/projects/project/packages/package2/src","recursive":true,"ignoreUpdate":true}} Timeout callback:: count: 0 14: /home/src/projects/project/packages/package2/tsconfig.jsonFailedLookupInvalidation *deleted* @@ -1458,17 +1458,17 @@ Info seq [hh:mm:ss:mss] event: After running Immedidate callback:: count: 0 Build dependencies -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist created -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist updated -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.js created -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.js updated -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist updated +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist created +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist updated +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.js created +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.js updated +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist updated Custom watchFile:: Triggered:: {"id":16,"path":"/home/src/projects/project/packages/package1/dist/index.d.ts"}:: /home/src/projects/project/packages/package1/dist/index.d.ts created -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.d.ts created -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.d.ts updated -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist updated -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/tsconfig.tsbuildinfo updated -Custom watchDirectory:: Triggered Ignored:: {"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/tsconfig.tsbuildinfo.readable.baseline.txt updated +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.d.ts created +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.d.ts updated +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist updated +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/tsconfig.tsbuildinfo updated +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/tsconfig.tsbuildinfo.readable.baseline.txt updated Before request //// [/home/src/projects/project/packages/package1/tsconfig.tsbuildinfo] file written with same contents //// [/home/src/projects/project/packages/package1/tsconfig.tsbuildinfo.readable.baseline.txt] file written with same contents @@ -1488,7 +1488,7 @@ Info seq [hh:mm:ss:mss] request: "command": "watchChange", "arguments": [ { - "id": 8, + "id": 7, "created": [ "/home/src/projects/project/node_modules/package1/dist", "/home/src/projects/project/node_modules/package1/dist/index.js", @@ -1645,35 +1645,35 @@ PolledWatches:: /home/src/projects/project/packages/package1/dist/index.d.ts: {"event":{"id":16,"path":"/home/src/projects/project/packages/package1/dist/index.d.ts"}} /home/src/projects/project/packages/package1/package.json: - {"event":{"id":10,"path":"/home/src/projects/project/packages/package1/package.json"}} + {"event":{"id":9,"path":"/home/src/projects/project/packages/package1/package.json"}} /home/src/projects/project/packages/package2/package.json: {"event":{"id":15,"path":"/home/src/projects/project/packages/package2/package.json"}} /home/src/projects/project/packages/package2/tsconfig.json: {"event":{"id":1,"path":"/home/src/projects/project/packages/package2/tsconfig.json"}} /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts: - {"event":{"id":3,"path":"/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts"}} + {"event":{"id":10,"path":"/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts"}} FsWatchesRecursive:: /home/src/projects/node_modules/@types: {"event":{"id":14,"path":"/home/src/projects/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/node_modules: - {"event":{"id":7,"path":"/home/src/projects/project/node_modules","recursive":true}} + {"event":{"id":6,"path":"/home/src/projects/project/node_modules","recursive":true}} /home/src/projects/project/node_modules/@types: {"event":{"id":13,"path":"/home/src/projects/project/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/node_modules/package1: - {"event":{"id":8,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}} + {"event":{"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/node_modules: - {"event":{"id":6,"path":"/home/src/projects/project/packages/node_modules","recursive":true}} + {"event":{"id":5,"path":"/home/src/projects/project/packages/node_modules","recursive":true}} /home/src/projects/project/packages/node_modules/@types: {"event":{"id":12,"path":"/home/src/projects/project/packages/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/package2: {"event":{"id":2,"path":"/home/src/projects/project/packages/package2","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/package2/node_modules: - {"event":{"id":5,"path":"/home/src/projects/project/packages/package2/node_modules","recursive":true}} + {"event":{"id":4,"path":"/home/src/projects/project/packages/package2/node_modules","recursive":true}} /home/src/projects/project/packages/package2/node_modules/@types: {"event":{"id":11,"path":"/home/src/projects/project/packages/package2/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/package2/src: - {"event":{"id":4,"path":"/home/src/projects/project/packages/package2/src","recursive":true,"ignoreUpdate":true}} + {"event":{"id":3,"path":"/home/src/projects/project/packages/package2/src","recursive":true,"ignoreUpdate":true}} FsWatchesRecursive *deleted*:: /home/src/projects/node_modules: diff --git a/tests/baselines/reference/tsserver/symLinks/monorepo-style-sibling-packages-symlinked-package1-built-Linux-canUseWatchEvents.js b/tests/baselines/reference/tsserver/symLinks/monorepo-style-sibling-packages-symlinked-package1-built-Linux-canUseWatchEvents.js index 6be4fd5739eaa..0b4d7fffc9b70 100644 --- a/tests/baselines/reference/tsserver/symLinks/monorepo-style-sibling-packages-symlinked-package1-built-Linux-canUseWatchEvents.js +++ b/tests/baselines/reference/tsserver/symLinks/monorepo-style-sibling-packages-symlinked-package1-built-Linux-canUseWatchEvents.js @@ -199,30 +199,6 @@ Info seq [hh:mm:ss:mss] File '/home/src/projects/project/node_modules/package1/ Info seq [hh:mm:ss:mss] 'package.json' does not have a 'peerDependencies' field. Info seq [hh:mm:ss:mss] Resolving real path for '/home/src/projects/project/node_modules/package1/dist/index.d.ts', result '/home/src/projects/project/packages/package1/dist/index.d.ts'. Info seq [hh:mm:ss:mss] ======== Module name 'package1' was successfully resolved to '/home/src/projects/project/packages/package1/dist/index.d.ts' with Package ID 'package1/dist/index.d.ts@1.0.0'. ======== -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package1/dist/index.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] event: - { - "seq": 0, - "type": "event", - "event": "createFileWatcher", - "body": { - "id": 3, - "path": "/home/src/projects/project/packages/package1/dist/index.d.ts" - } - } -Custom watchFile:: Added:: {"id":3,"path":"/home/src/projects/project/packages/package1/dist/index.d.ts"} -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] event: - { - "seq": 0, - "type": "event", - "event": "createFileWatcher", - "body": { - "id": 4, - "path": "/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts" - } - } -Custom watchFile:: Added:: {"id":4,"path":"/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts"} Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/src 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { @@ -230,13 +206,13 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createDirectoryWatcher", "body": { - "id": 5, + "id": 3, "path": "/home/src/projects/project/packages/package2/src", "recursive": true, "ignoreUpdate": true } } -Custom watchDirectory:: Added:: {"id":5,"path":"/home/src/projects/project/packages/package2/src","recursive":true,"ignoreUpdate":true} +Custom watchDirectory:: Added:: {"id":3,"path":"/home/src/projects/project/packages/package2/src","recursive":true,"ignoreUpdate":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/src 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/node_modules 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: @@ -245,12 +221,12 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createDirectoryWatcher", "body": { - "id": 6, + "id": 4, "path": "/home/src/projects/project/packages/package2/node_modules", "recursive": true } } -Custom watchDirectory:: Added:: {"id":6,"path":"/home/src/projects/project/packages/package2/node_modules","recursive":true} +Custom watchDirectory:: Added:: {"id":4,"path":"/home/src/projects/project/packages/package2/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/node_modules 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/node_modules 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: @@ -259,12 +235,12 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createDirectoryWatcher", "body": { - "id": 7, + "id": 5, "path": "/home/src/projects/project/packages/node_modules", "recursive": true } } -Custom watchDirectory:: Added:: {"id":7,"path":"/home/src/projects/project/packages/node_modules","recursive":true} +Custom watchDirectory:: Added:: {"id":5,"path":"/home/src/projects/project/packages/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/node_modules 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: @@ -273,12 +249,12 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createDirectoryWatcher", "body": { - "id": 8, + "id": 6, "path": "/home/src/projects/project/node_modules", "recursive": true } } -Custom watchDirectory:: Added:: {"id":8,"path":"/home/src/projects/project/node_modules","recursive":true} +Custom watchDirectory:: Added:: {"id":6,"path":"/home/src/projects/project/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/package1 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: @@ -287,13 +263,13 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createDirectoryWatcher", "body": { - "id": 9, + "id": 7, "path": "/home/src/projects/project/node_modules/package1", "recursive": true, "ignoreUpdate": true } } -Custom watchDirectory:: Added:: {"id":9,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true} +Custom watchDirectory:: Added:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/package1 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package1/package.json 2000 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] event: @@ -302,11 +278,35 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createFileWatcher", "body": { - "id": 10, + "id": 8, "path": "/home/src/projects/project/packages/package1/package.json" } } -Custom watchFile:: Added:: {"id":10,"path":"/home/src/projects/project/packages/package1/package.json"} +Custom watchFile:: Added:: {"id":8,"path":"/home/src/projects/project/packages/package1/package.json"} +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package1/dist/index.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "createFileWatcher", + "body": { + "id": 9, + "path": "/home/src/projects/project/packages/package1/dist/index.d.ts" + } + } +Custom watchFile:: Added:: {"id":9,"path":"/home/src/projects/project/packages/package1/dist/index.d.ts"} +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "createFileWatcher", + "body": { + "id": 10, + "path": "/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts" + } + } +Custom watchFile:: Added:: {"id":10,"path":"/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts"} Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] event: { @@ -489,37 +489,37 @@ After request PolledWatches:: /home/src/projects/project/packages/package1/dist/index.d.ts: *new* - {"event":{"id":3,"path":"/home/src/projects/project/packages/package1/dist/index.d.ts"}} + {"event":{"id":9,"path":"/home/src/projects/project/packages/package1/dist/index.d.ts"}} /home/src/projects/project/packages/package1/package.json: *new* - {"event":{"id":10,"path":"/home/src/projects/project/packages/package1/package.json"}} + {"event":{"id":8,"path":"/home/src/projects/project/packages/package1/package.json"}} /home/src/projects/project/packages/package2/package.json: *new* {"event":{"id":15,"path":"/home/src/projects/project/packages/package2/package.json"}} /home/src/projects/project/packages/package2/tsconfig.json: *new* {"event":{"id":1,"path":"/home/src/projects/project/packages/package2/tsconfig.json"}} /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts: *new* - {"event":{"id":4,"path":"/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts"}} + {"event":{"id":10,"path":"/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts"}} FsWatchesRecursive:: /home/src/projects/node_modules/@types: *new* {"event":{"id":14,"path":"/home/src/projects/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/node_modules: *new* - {"event":{"id":8,"path":"/home/src/projects/project/node_modules","recursive":true}} + {"event":{"id":6,"path":"/home/src/projects/project/node_modules","recursive":true}} /home/src/projects/project/node_modules/@types: *new* {"event":{"id":13,"path":"/home/src/projects/project/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/node_modules/package1: *new* - {"event":{"id":9,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}} + {"event":{"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/node_modules: *new* - {"event":{"id":7,"path":"/home/src/projects/project/packages/node_modules","recursive":true}} + {"event":{"id":5,"path":"/home/src/projects/project/packages/node_modules","recursive":true}} /home/src/projects/project/packages/node_modules/@types: *new* {"event":{"id":12,"path":"/home/src/projects/project/packages/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/package2: *new* {"event":{"id":2,"path":"/home/src/projects/project/packages/package2","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/package2/node_modules: *new* - {"event":{"id":6,"path":"/home/src/projects/project/packages/package2/node_modules","recursive":true}} + {"event":{"id":4,"path":"/home/src/projects/project/packages/package2/node_modules","recursive":true}} /home/src/projects/project/packages/package2/node_modules/@types: *new* {"event":{"id":11,"path":"/home/src/projects/project/packages/package2/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/package2/src: *new* - {"event":{"id":5,"path":"/home/src/projects/project/packages/package2/src","recursive":true,"ignoreUpdate":true}} + {"event":{"id":3,"path":"/home/src/projects/project/packages/package2/src","recursive":true,"ignoreUpdate":true}} Projects:: /home/src/projects/project/packages/package2/tsconfig.json (Configured) *new* @@ -660,10 +660,10 @@ Info seq [hh:mm:ss:mss] event: After running Immedidate callback:: count: 0 Clean dependencies build -Custom watchFile:: Triggered:: {"id":3,"path":"/home/src/projects/project/packages/package1/dist/index.d.ts"}:: /home/src/projects/project/packages/package1/dist/index.d.ts deleted -Custom watchDirectory:: Triggered Ignored:: {"id":9,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.d.ts deleted -Custom watchDirectory:: Triggered Ignored:: {"id":9,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.js deleted -Custom watchDirectory:: Triggered Ignored:: {"id":9,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist deleted +Custom watchFile:: Triggered:: {"id":9,"path":"/home/src/projects/project/packages/package1/dist/index.d.ts"}:: /home/src/projects/project/packages/package1/dist/index.d.ts deleted +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.d.ts deleted +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.js deleted +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist deleted Before request //// [/home/src/projects/project/packages/package1/dist/index.js] deleted //// [/home/src/projects/project/packages/package1/dist/index.d.ts] deleted @@ -673,13 +673,13 @@ Info seq [hh:mm:ss:mss] request: "command": "watchChange", "arguments": [ { - "id": 3, + "id": 9, "deleted": [ "/home/src/projects/project/packages/package1/dist/index.d.ts" ] }, { - "id": 9, + "id": 7, "deleted": [ "/home/src/projects/project/node_modules/package1/dist/index.d.ts", "/home/src/projects/project/node_modules/package1/dist/index.js", @@ -869,15 +869,15 @@ After running Timeout callback:: count: 0 PolledWatches:: /home/src/projects/project/packages/package1/dist/index.d.ts: - {"event":{"id":3,"path":"/home/src/projects/project/packages/package1/dist/index.d.ts"}} + {"event":{"id":9,"path":"/home/src/projects/project/packages/package1/dist/index.d.ts"}} /home/src/projects/project/packages/package1/package.json: - {"event":{"id":10,"path":"/home/src/projects/project/packages/package1/package.json"}} + {"event":{"id":8,"path":"/home/src/projects/project/packages/package1/package.json"}} /home/src/projects/project/packages/package2/package.json: {"event":{"id":15,"path":"/home/src/projects/project/packages/package2/package.json"}} /home/src/projects/project/packages/package2/tsconfig.json: {"event":{"id":1,"path":"/home/src/projects/project/packages/package2/tsconfig.json"}} /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts: - {"event":{"id":4,"path":"/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts"}} + {"event":{"id":10,"path":"/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts"}} FsWatchesRecursive:: /home/src/projects/node_modules: *new* @@ -885,23 +885,23 @@ FsWatchesRecursive:: /home/src/projects/node_modules/@types: {"event":{"id":14,"path":"/home/src/projects/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/node_modules: - {"event":{"id":8,"path":"/home/src/projects/project/node_modules","recursive":true}} + {"event":{"id":6,"path":"/home/src/projects/project/node_modules","recursive":true}} /home/src/projects/project/node_modules/@types: {"event":{"id":13,"path":"/home/src/projects/project/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/node_modules/package1: - {"event":{"id":9,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}} + {"event":{"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/node_modules: - {"event":{"id":7,"path":"/home/src/projects/project/packages/node_modules","recursive":true}} + {"event":{"id":5,"path":"/home/src/projects/project/packages/node_modules","recursive":true}} /home/src/projects/project/packages/node_modules/@types: {"event":{"id":12,"path":"/home/src/projects/project/packages/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/package2: {"event":{"id":2,"path":"/home/src/projects/project/packages/package2","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/package2/node_modules: - {"event":{"id":6,"path":"/home/src/projects/project/packages/package2/node_modules","recursive":true}} + {"event":{"id":4,"path":"/home/src/projects/project/packages/package2/node_modules","recursive":true}} /home/src/projects/project/packages/package2/node_modules/@types: {"event":{"id":11,"path":"/home/src/projects/project/packages/package2/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/package2/src: - {"event":{"id":5,"path":"/home/src/projects/project/packages/package2/src","recursive":true,"ignoreUpdate":true}} + {"event":{"id":3,"path":"/home/src/projects/project/packages/package2/src","recursive":true,"ignoreUpdate":true}} Timeout callback:: count: 0 6: /home/src/projects/project/packages/package2/tsconfig.jsonFailedLookupInvalidation *deleted* @@ -1054,17 +1054,17 @@ Info seq [hh:mm:ss:mss] event: After running Immedidate callback:: count: 0 Build dependencies -Custom watchDirectory:: Triggered Ignored:: {"id":9,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist created -Custom watchDirectory:: Triggered Ignored:: {"id":9,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist updated -Custom watchDirectory:: Triggered Ignored:: {"id":9,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.js created -Custom watchDirectory:: Triggered Ignored:: {"id":9,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.js updated -Custom watchDirectory:: Triggered Ignored:: {"id":9,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist updated -Custom watchFile:: Triggered:: {"id":3,"path":"/home/src/projects/project/packages/package1/dist/index.d.ts"}:: /home/src/projects/project/packages/package1/dist/index.d.ts created -Custom watchDirectory:: Triggered Ignored:: {"id":9,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.d.ts created -Custom watchDirectory:: Triggered Ignored:: {"id":9,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.d.ts updated -Custom watchDirectory:: Triggered Ignored:: {"id":9,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist updated -Custom watchDirectory:: Triggered Ignored:: {"id":9,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/tsconfig.tsbuildinfo updated -Custom watchDirectory:: Triggered Ignored:: {"id":9,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/tsconfig.tsbuildinfo.readable.baseline.txt updated +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist created +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist updated +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.js created +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.js updated +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist updated +Custom watchFile:: Triggered:: {"id":9,"path":"/home/src/projects/project/packages/package1/dist/index.d.ts"}:: /home/src/projects/project/packages/package1/dist/index.d.ts created +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.d.ts created +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.d.ts updated +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist updated +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/tsconfig.tsbuildinfo updated +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/tsconfig.tsbuildinfo.readable.baseline.txt updated Before request //// [/home/src/projects/project/packages/package1/tsconfig.tsbuildinfo] file written with same contents Inode:: 125 //// [/home/src/projects/project/packages/package1/tsconfig.tsbuildinfo.readable.baseline.txt] file written with same contents Inode:: 126 @@ -1084,7 +1084,7 @@ Info seq [hh:mm:ss:mss] request: "command": "watchChange", "arguments": [ { - "id": 9, + "id": 7, "created": [ "/home/src/projects/project/node_modules/package1/dist", "/home/src/projects/project/node_modules/package1/dist/index.js", @@ -1092,7 +1092,7 @@ Info seq [hh:mm:ss:mss] request: ] }, { - "id": 3, + "id": 9, "created": [ "/home/src/projects/project/packages/package1/dist/index.d.ts" ] @@ -1239,37 +1239,37 @@ After running Timeout callback:: count: 0 PolledWatches:: /home/src/projects/project/packages/package1/dist/index.d.ts: - {"event":{"id":3,"path":"/home/src/projects/project/packages/package1/dist/index.d.ts"}} + {"event":{"id":9,"path":"/home/src/projects/project/packages/package1/dist/index.d.ts"}} /home/src/projects/project/packages/package1/package.json: - {"event":{"id":10,"path":"/home/src/projects/project/packages/package1/package.json"}} + {"event":{"id":8,"path":"/home/src/projects/project/packages/package1/package.json"}} /home/src/projects/project/packages/package2/package.json: {"event":{"id":15,"path":"/home/src/projects/project/packages/package2/package.json"}} /home/src/projects/project/packages/package2/tsconfig.json: {"event":{"id":1,"path":"/home/src/projects/project/packages/package2/tsconfig.json"}} /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts: - {"event":{"id":4,"path":"/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts"}} + {"event":{"id":10,"path":"/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts"}} FsWatchesRecursive:: /home/src/projects/node_modules/@types: {"event":{"id":14,"path":"/home/src/projects/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/node_modules: - {"event":{"id":8,"path":"/home/src/projects/project/node_modules","recursive":true}} + {"event":{"id":6,"path":"/home/src/projects/project/node_modules","recursive":true}} /home/src/projects/project/node_modules/@types: {"event":{"id":13,"path":"/home/src/projects/project/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/node_modules/package1: - {"event":{"id":9,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}} + {"event":{"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/node_modules: - {"event":{"id":7,"path":"/home/src/projects/project/packages/node_modules","recursive":true}} + {"event":{"id":5,"path":"/home/src/projects/project/packages/node_modules","recursive":true}} /home/src/projects/project/packages/node_modules/@types: {"event":{"id":12,"path":"/home/src/projects/project/packages/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/package2: {"event":{"id":2,"path":"/home/src/projects/project/packages/package2","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/package2/node_modules: - {"event":{"id":6,"path":"/home/src/projects/project/packages/package2/node_modules","recursive":true}} + {"event":{"id":4,"path":"/home/src/projects/project/packages/package2/node_modules","recursive":true}} /home/src/projects/project/packages/package2/node_modules/@types: {"event":{"id":11,"path":"/home/src/projects/project/packages/package2/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/package2/src: - {"event":{"id":5,"path":"/home/src/projects/project/packages/package2/src","recursive":true,"ignoreUpdate":true}} + {"event":{"id":3,"path":"/home/src/projects/project/packages/package2/src","recursive":true,"ignoreUpdate":true}} FsWatchesRecursive *deleted*:: /home/src/projects/node_modules: diff --git a/tests/baselines/reference/tsserver/symLinks/monorepo-style-sibling-packages-symlinked-package1-built-Linux.js b/tests/baselines/reference/tsserver/symLinks/monorepo-style-sibling-packages-symlinked-package1-built-Linux.js index 68428e8277701..3c01e580b9d14 100644 --- a/tests/baselines/reference/tsserver/symLinks/monorepo-style-sibling-packages-symlinked-package1-built-Linux.js +++ b/tests/baselines/reference/tsserver/symLinks/monorepo-style-sibling-packages-symlinked-package1-built-Linux.js @@ -175,8 +175,6 @@ Info seq [hh:mm:ss:mss] File '/home/src/projects/project/node_modules/package1/ Info seq [hh:mm:ss:mss] 'package.json' does not have a 'peerDependencies' field. Info seq [hh:mm:ss:mss] Resolving real path for '/home/src/projects/project/node_modules/package1/dist/index.d.ts', result '/home/src/projects/project/packages/package1/dist/index.d.ts'. Info seq [hh:mm:ss:mss] ======== Module name 'package1' was successfully resolved to '/home/src/projects/project/packages/package1/dist/index.d.ts' with Package ID 'package1/dist/index.d.ts@1.0.0'. ======== -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package1/dist/index.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/src 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/src 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/node_modules 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations @@ -188,6 +186,8 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/package1 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/package1 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package1/package.json 2000 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package1/dist/index.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/symLinks/monorepo-style-sibling-packages-symlinked-package1-built-canUseWatchEvents.js b/tests/baselines/reference/tsserver/symLinks/monorepo-style-sibling-packages-symlinked-package1-built-canUseWatchEvents.js index a53ecf64cec41..12de58b442ff7 100644 --- a/tests/baselines/reference/tsserver/symLinks/monorepo-style-sibling-packages-symlinked-package1-built-canUseWatchEvents.js +++ b/tests/baselines/reference/tsserver/symLinks/monorepo-style-sibling-packages-symlinked-package1-built-canUseWatchEvents.js @@ -199,30 +199,6 @@ Info seq [hh:mm:ss:mss] File '/home/src/projects/project/node_modules/package1/ Info seq [hh:mm:ss:mss] 'package.json' does not have a 'peerDependencies' field. Info seq [hh:mm:ss:mss] Resolving real path for '/home/src/projects/project/node_modules/package1/dist/index.d.ts', result '/home/src/projects/project/packages/package1/dist/index.d.ts'. Info seq [hh:mm:ss:mss] ======== Module name 'package1' was successfully resolved to '/home/src/projects/project/packages/package1/dist/index.d.ts' with Package ID 'package1/dist/index.d.ts@1.0.0'. ======== -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package1/dist/index.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] event: - { - "seq": 0, - "type": "event", - "event": "createFileWatcher", - "body": { - "id": 3, - "path": "/home/src/projects/project/packages/package1/dist/index.d.ts" - } - } -Custom watchFile:: Added:: {"id":3,"path":"/home/src/projects/project/packages/package1/dist/index.d.ts"} -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] event: - { - "seq": 0, - "type": "event", - "event": "createFileWatcher", - "body": { - "id": 4, - "path": "/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts" - } - } -Custom watchFile:: Added:: {"id":4,"path":"/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts"} Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/src 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { @@ -230,13 +206,13 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createDirectoryWatcher", "body": { - "id": 5, + "id": 3, "path": "/home/src/projects/project/packages/package2/src", "recursive": true, "ignoreUpdate": true } } -Custom watchDirectory:: Added:: {"id":5,"path":"/home/src/projects/project/packages/package2/src","recursive":true,"ignoreUpdate":true} +Custom watchDirectory:: Added:: {"id":3,"path":"/home/src/projects/project/packages/package2/src","recursive":true,"ignoreUpdate":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/src 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/node_modules 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: @@ -245,12 +221,12 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createDirectoryWatcher", "body": { - "id": 6, + "id": 4, "path": "/home/src/projects/project/packages/package2/node_modules", "recursive": true } } -Custom watchDirectory:: Added:: {"id":6,"path":"/home/src/projects/project/packages/package2/node_modules","recursive":true} +Custom watchDirectory:: Added:: {"id":4,"path":"/home/src/projects/project/packages/package2/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/node_modules 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/node_modules 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: @@ -259,12 +235,12 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createDirectoryWatcher", "body": { - "id": 7, + "id": 5, "path": "/home/src/projects/project/packages/node_modules", "recursive": true } } -Custom watchDirectory:: Added:: {"id":7,"path":"/home/src/projects/project/packages/node_modules","recursive":true} +Custom watchDirectory:: Added:: {"id":5,"path":"/home/src/projects/project/packages/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/node_modules 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: @@ -273,12 +249,12 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createDirectoryWatcher", "body": { - "id": 8, + "id": 6, "path": "/home/src/projects/project/node_modules", "recursive": true } } -Custom watchDirectory:: Added:: {"id":8,"path":"/home/src/projects/project/node_modules","recursive":true} +Custom watchDirectory:: Added:: {"id":6,"path":"/home/src/projects/project/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/package1 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: @@ -287,13 +263,13 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createDirectoryWatcher", "body": { - "id": 9, + "id": 7, "path": "/home/src/projects/project/node_modules/package1", "recursive": true, "ignoreUpdate": true } } -Custom watchDirectory:: Added:: {"id":9,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true} +Custom watchDirectory:: Added:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/package1 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package1/package.json 2000 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] event: @@ -302,11 +278,35 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createFileWatcher", "body": { - "id": 10, + "id": 8, "path": "/home/src/projects/project/packages/package1/package.json" } } -Custom watchFile:: Added:: {"id":10,"path":"/home/src/projects/project/packages/package1/package.json"} +Custom watchFile:: Added:: {"id":8,"path":"/home/src/projects/project/packages/package1/package.json"} +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package1/dist/index.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "createFileWatcher", + "body": { + "id": 9, + "path": "/home/src/projects/project/packages/package1/dist/index.d.ts" + } + } +Custom watchFile:: Added:: {"id":9,"path":"/home/src/projects/project/packages/package1/dist/index.d.ts"} +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "createFileWatcher", + "body": { + "id": 10, + "path": "/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts" + } + } +Custom watchFile:: Added:: {"id":10,"path":"/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts"} Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] event: { @@ -489,37 +489,37 @@ After request PolledWatches:: /home/src/projects/project/packages/package1/dist/index.d.ts: *new* - {"event":{"id":3,"path":"/home/src/projects/project/packages/package1/dist/index.d.ts"}} + {"event":{"id":9,"path":"/home/src/projects/project/packages/package1/dist/index.d.ts"}} /home/src/projects/project/packages/package1/package.json: *new* - {"event":{"id":10,"path":"/home/src/projects/project/packages/package1/package.json"}} + {"event":{"id":8,"path":"/home/src/projects/project/packages/package1/package.json"}} /home/src/projects/project/packages/package2/package.json: *new* {"event":{"id":15,"path":"/home/src/projects/project/packages/package2/package.json"}} /home/src/projects/project/packages/package2/tsconfig.json: *new* {"event":{"id":1,"path":"/home/src/projects/project/packages/package2/tsconfig.json"}} /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts: *new* - {"event":{"id":4,"path":"/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts"}} + {"event":{"id":10,"path":"/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts"}} FsWatchesRecursive:: /home/src/projects/node_modules/@types: *new* {"event":{"id":14,"path":"/home/src/projects/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/node_modules: *new* - {"event":{"id":8,"path":"/home/src/projects/project/node_modules","recursive":true}} + {"event":{"id":6,"path":"/home/src/projects/project/node_modules","recursive":true}} /home/src/projects/project/node_modules/@types: *new* {"event":{"id":13,"path":"/home/src/projects/project/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/node_modules/package1: *new* - {"event":{"id":9,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}} + {"event":{"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/node_modules: *new* - {"event":{"id":7,"path":"/home/src/projects/project/packages/node_modules","recursive":true}} + {"event":{"id":5,"path":"/home/src/projects/project/packages/node_modules","recursive":true}} /home/src/projects/project/packages/node_modules/@types: *new* {"event":{"id":12,"path":"/home/src/projects/project/packages/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/package2: *new* {"event":{"id":2,"path":"/home/src/projects/project/packages/package2","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/package2/node_modules: *new* - {"event":{"id":6,"path":"/home/src/projects/project/packages/package2/node_modules","recursive":true}} + {"event":{"id":4,"path":"/home/src/projects/project/packages/package2/node_modules","recursive":true}} /home/src/projects/project/packages/package2/node_modules/@types: *new* {"event":{"id":11,"path":"/home/src/projects/project/packages/package2/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/package2/src: *new* - {"event":{"id":5,"path":"/home/src/projects/project/packages/package2/src","recursive":true,"ignoreUpdate":true}} + {"event":{"id":3,"path":"/home/src/projects/project/packages/package2/src","recursive":true,"ignoreUpdate":true}} Projects:: /home/src/projects/project/packages/package2/tsconfig.json (Configured) *new* @@ -660,10 +660,10 @@ Info seq [hh:mm:ss:mss] event: After running Immedidate callback:: count: 0 Clean dependencies build -Custom watchFile:: Triggered:: {"id":3,"path":"/home/src/projects/project/packages/package1/dist/index.d.ts"}:: /home/src/projects/project/packages/package1/dist/index.d.ts deleted -Custom watchDirectory:: Triggered Ignored:: {"id":9,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.d.ts deleted -Custom watchDirectory:: Triggered Ignored:: {"id":9,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.js deleted -Custom watchDirectory:: Triggered Ignored:: {"id":9,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist deleted +Custom watchFile:: Triggered:: {"id":9,"path":"/home/src/projects/project/packages/package1/dist/index.d.ts"}:: /home/src/projects/project/packages/package1/dist/index.d.ts deleted +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.d.ts deleted +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.js deleted +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist deleted Before request //// [/home/src/projects/project/packages/package1/dist/index.js] deleted //// [/home/src/projects/project/packages/package1/dist/index.d.ts] deleted @@ -673,13 +673,13 @@ Info seq [hh:mm:ss:mss] request: "command": "watchChange", "arguments": [ { - "id": 3, + "id": 9, "deleted": [ "/home/src/projects/project/packages/package1/dist/index.d.ts" ] }, { - "id": 9, + "id": 7, "deleted": [ "/home/src/projects/project/node_modules/package1/dist/index.d.ts", "/home/src/projects/project/node_modules/package1/dist/index.js", @@ -869,15 +869,15 @@ After running Timeout callback:: count: 0 PolledWatches:: /home/src/projects/project/packages/package1/dist/index.d.ts: - {"event":{"id":3,"path":"/home/src/projects/project/packages/package1/dist/index.d.ts"}} + {"event":{"id":9,"path":"/home/src/projects/project/packages/package1/dist/index.d.ts"}} /home/src/projects/project/packages/package1/package.json: - {"event":{"id":10,"path":"/home/src/projects/project/packages/package1/package.json"}} + {"event":{"id":8,"path":"/home/src/projects/project/packages/package1/package.json"}} /home/src/projects/project/packages/package2/package.json: {"event":{"id":15,"path":"/home/src/projects/project/packages/package2/package.json"}} /home/src/projects/project/packages/package2/tsconfig.json: {"event":{"id":1,"path":"/home/src/projects/project/packages/package2/tsconfig.json"}} /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts: - {"event":{"id":4,"path":"/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts"}} + {"event":{"id":10,"path":"/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts"}} FsWatchesRecursive:: /home/src/projects/node_modules: *new* @@ -885,23 +885,23 @@ FsWatchesRecursive:: /home/src/projects/node_modules/@types: {"event":{"id":14,"path":"/home/src/projects/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/node_modules: - {"event":{"id":8,"path":"/home/src/projects/project/node_modules","recursive":true}} + {"event":{"id":6,"path":"/home/src/projects/project/node_modules","recursive":true}} /home/src/projects/project/node_modules/@types: {"event":{"id":13,"path":"/home/src/projects/project/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/node_modules/package1: - {"event":{"id":9,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}} + {"event":{"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/node_modules: - {"event":{"id":7,"path":"/home/src/projects/project/packages/node_modules","recursive":true}} + {"event":{"id":5,"path":"/home/src/projects/project/packages/node_modules","recursive":true}} /home/src/projects/project/packages/node_modules/@types: {"event":{"id":12,"path":"/home/src/projects/project/packages/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/package2: {"event":{"id":2,"path":"/home/src/projects/project/packages/package2","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/package2/node_modules: - {"event":{"id":6,"path":"/home/src/projects/project/packages/package2/node_modules","recursive":true}} + {"event":{"id":4,"path":"/home/src/projects/project/packages/package2/node_modules","recursive":true}} /home/src/projects/project/packages/package2/node_modules/@types: {"event":{"id":11,"path":"/home/src/projects/project/packages/package2/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/package2/src: - {"event":{"id":5,"path":"/home/src/projects/project/packages/package2/src","recursive":true,"ignoreUpdate":true}} + {"event":{"id":3,"path":"/home/src/projects/project/packages/package2/src","recursive":true,"ignoreUpdate":true}} Timeout callback:: count: 0 6: /home/src/projects/project/packages/package2/tsconfig.jsonFailedLookupInvalidation *deleted* @@ -1054,17 +1054,17 @@ Info seq [hh:mm:ss:mss] event: After running Immedidate callback:: count: 0 Build dependencies -Custom watchDirectory:: Triggered Ignored:: {"id":9,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist created -Custom watchDirectory:: Triggered Ignored:: {"id":9,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist updated -Custom watchDirectory:: Triggered Ignored:: {"id":9,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.js created -Custom watchDirectory:: Triggered Ignored:: {"id":9,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.js updated -Custom watchDirectory:: Triggered Ignored:: {"id":9,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist updated -Custom watchFile:: Triggered:: {"id":3,"path":"/home/src/projects/project/packages/package1/dist/index.d.ts"}:: /home/src/projects/project/packages/package1/dist/index.d.ts created -Custom watchDirectory:: Triggered Ignored:: {"id":9,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.d.ts created -Custom watchDirectory:: Triggered Ignored:: {"id":9,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.d.ts updated -Custom watchDirectory:: Triggered Ignored:: {"id":9,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist updated -Custom watchDirectory:: Triggered Ignored:: {"id":9,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/tsconfig.tsbuildinfo updated -Custom watchDirectory:: Triggered Ignored:: {"id":9,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/tsconfig.tsbuildinfo.readable.baseline.txt updated +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist created +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist updated +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.js created +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.js updated +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist updated +Custom watchFile:: Triggered:: {"id":9,"path":"/home/src/projects/project/packages/package1/dist/index.d.ts"}:: /home/src/projects/project/packages/package1/dist/index.d.ts created +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.d.ts created +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist/index.d.ts updated +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/dist updated +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/tsconfig.tsbuildinfo updated +Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}:: /home/src/projects/project/node_modules/package1/tsconfig.tsbuildinfo.readable.baseline.txt updated Before request //// [/home/src/projects/project/packages/package1/tsconfig.tsbuildinfo] file written with same contents //// [/home/src/projects/project/packages/package1/tsconfig.tsbuildinfo.readable.baseline.txt] file written with same contents @@ -1084,7 +1084,7 @@ Info seq [hh:mm:ss:mss] request: "command": "watchChange", "arguments": [ { - "id": 9, + "id": 7, "created": [ "/home/src/projects/project/node_modules/package1/dist", "/home/src/projects/project/node_modules/package1/dist/index.js", @@ -1092,7 +1092,7 @@ Info seq [hh:mm:ss:mss] request: ] }, { - "id": 3, + "id": 9, "created": [ "/home/src/projects/project/packages/package1/dist/index.d.ts" ] @@ -1239,37 +1239,37 @@ After running Timeout callback:: count: 0 PolledWatches:: /home/src/projects/project/packages/package1/dist/index.d.ts: - {"event":{"id":3,"path":"/home/src/projects/project/packages/package1/dist/index.d.ts"}} + {"event":{"id":9,"path":"/home/src/projects/project/packages/package1/dist/index.d.ts"}} /home/src/projects/project/packages/package1/package.json: - {"event":{"id":10,"path":"/home/src/projects/project/packages/package1/package.json"}} + {"event":{"id":8,"path":"/home/src/projects/project/packages/package1/package.json"}} /home/src/projects/project/packages/package2/package.json: {"event":{"id":15,"path":"/home/src/projects/project/packages/package2/package.json"}} /home/src/projects/project/packages/package2/tsconfig.json: {"event":{"id":1,"path":"/home/src/projects/project/packages/package2/tsconfig.json"}} /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts: - {"event":{"id":4,"path":"/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts"}} + {"event":{"id":10,"path":"/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts"}} FsWatchesRecursive:: /home/src/projects/node_modules/@types: {"event":{"id":14,"path":"/home/src/projects/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/node_modules: - {"event":{"id":8,"path":"/home/src/projects/project/node_modules","recursive":true}} + {"event":{"id":6,"path":"/home/src/projects/project/node_modules","recursive":true}} /home/src/projects/project/node_modules/@types: {"event":{"id":13,"path":"/home/src/projects/project/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/node_modules/package1: - {"event":{"id":9,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}} + {"event":{"id":7,"path":"/home/src/projects/project/node_modules/package1","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/node_modules: - {"event":{"id":7,"path":"/home/src/projects/project/packages/node_modules","recursive":true}} + {"event":{"id":5,"path":"/home/src/projects/project/packages/node_modules","recursive":true}} /home/src/projects/project/packages/node_modules/@types: {"event":{"id":12,"path":"/home/src/projects/project/packages/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/package2: {"event":{"id":2,"path":"/home/src/projects/project/packages/package2","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/package2/node_modules: - {"event":{"id":6,"path":"/home/src/projects/project/packages/package2/node_modules","recursive":true}} + {"event":{"id":4,"path":"/home/src/projects/project/packages/package2/node_modules","recursive":true}} /home/src/projects/project/packages/package2/node_modules/@types: {"event":{"id":11,"path":"/home/src/projects/project/packages/package2/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/project/packages/package2/src: - {"event":{"id":5,"path":"/home/src/projects/project/packages/package2/src","recursive":true,"ignoreUpdate":true}} + {"event":{"id":3,"path":"/home/src/projects/project/packages/package2/src","recursive":true,"ignoreUpdate":true}} FsWatchesRecursive *deleted*:: /home/src/projects/node_modules: diff --git a/tests/baselines/reference/tsserver/symLinks/monorepo-style-sibling-packages-symlinked-package1-built.js b/tests/baselines/reference/tsserver/symLinks/monorepo-style-sibling-packages-symlinked-package1-built.js index d08e42ef20226..9eede5b843b1a 100644 --- a/tests/baselines/reference/tsserver/symLinks/monorepo-style-sibling-packages-symlinked-package1-built.js +++ b/tests/baselines/reference/tsserver/symLinks/monorepo-style-sibling-packages-symlinked-package1-built.js @@ -175,8 +175,6 @@ Info seq [hh:mm:ss:mss] File '/home/src/projects/project/node_modules/package1/ Info seq [hh:mm:ss:mss] 'package.json' does not have a 'peerDependencies' field. Info seq [hh:mm:ss:mss] Resolving real path for '/home/src/projects/project/node_modules/package1/dist/index.d.ts', result '/home/src/projects/project/packages/package1/dist/index.d.ts'. Info seq [hh:mm:ss:mss] ======== Module name 'package1' was successfully resolved to '/home/src/projects/project/packages/package1/dist/index.d.ts' with Package ID 'package1/dist/index.d.ts@1.0.0'. ======== -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package1/dist/index.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/src 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/src 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/node_modules 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations @@ -188,6 +186,8 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/package1 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/package1 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package1/package.json 2000 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package1/dist/index.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/symLinks/monorepo-style-sibling-packages-symlinked.js b/tests/baselines/reference/tsserver/symLinks/monorepo-style-sibling-packages-symlinked.js index 9da274af0f85c..49f926f87dc8b 100644 --- a/tests/baselines/reference/tsserver/symLinks/monorepo-style-sibling-packages-symlinked.js +++ b/tests/baselines/reference/tsserver/symLinks/monorepo-style-sibling-packages-symlinked.js @@ -198,7 +198,6 @@ Info seq [hh:mm:ss:mss] Directory '/home/src/node_modules' does not exist, skip Info seq [hh:mm:ss:mss] Directory '/home/node_modules' does not exist, skipping all lookups in it. Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. Info seq [hh:mm:ss:mss] ======== Module name 'package1' was not resolved. ======== -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/src 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/src 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/node_modules 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations @@ -212,6 +211,7 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package1/package.json 2000 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.es2016.full.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/package2/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-Linux-canUseWatchEvents.js b/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-Linux-canUseWatchEvents.js index dfaa1e34ae12f..a4c1f588ab2e7 100644 --- a/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-Linux-canUseWatchEvents.js +++ b/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-Linux-canUseWatchEvents.js @@ -150,18 +150,6 @@ Info seq [hh:mm:ss:mss] event: Custom watchDirectory:: Added:: {"id":2,"path":"/home/src/projects/b/2/b-impl/b/src","recursive":true,"ignoreUpdate":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Config: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/b/2/b-impl/b/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] event: - { - "seq": 0, - "type": "event", - "event": "createFileWatcher", - "body": { - "id": 3, - "path": "/home/src/tslibs/TS/Lib/lib.d.ts" - } - } -Custom watchFile:: Added:: {"id":3,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"} Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations @@ -171,12 +159,12 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createDirectoryWatcher", "body": { - "id": 4, + "id": 3, "path": "/home/src/projects/b/2/b-impl/b/node_modules", "recursive": true } } -Custom watchDirectory:: Added:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true} +Custom watchDirectory:: Added:: {"id":3,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: @@ -185,13 +173,13 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createDirectoryWatcher", "body": { - "id": 5, + "id": 4, "path": "/home/src/projects/b/2/b-impl/b/node_modules/a", "recursive": true, "ignoreUpdate": true } } -Custom watchDirectory:: Added:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true} +Custom watchDirectory:: Added:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: @@ -200,12 +188,12 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createDirectoryWatcher", "body": { - "id": 6, + "id": 5, "path": "/home/src/projects/b/2/b-impl/node_modules", "recursive": true } } -Custom watchDirectory:: Added:: {"id":6,"path":"/home/src/projects/b/2/b-impl/node_modules","recursive":true} +Custom watchDirectory:: Added:: {"id":5,"path":"/home/src/projects/b/2/b-impl/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: @@ -214,12 +202,12 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createDirectoryWatcher", "body": { - "id": 7, + "id": 6, "path": "/home/src/projects/b/2/node_modules", "recursive": true } } -Custom watchDirectory:: Added:: {"id":7,"path":"/home/src/projects/b/2/node_modules","recursive":true} +Custom watchDirectory:: Added:: {"id":6,"path":"/home/src/projects/b/2/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: @@ -228,12 +216,12 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createDirectoryWatcher", "body": { - "id": 8, + "id": 7, "path": "/home/src/projects/b/node_modules", "recursive": true } } -Custom watchDirectory:: Added:: {"id":8,"path":"/home/src/projects/b/node_modules","recursive":true} +Custom watchDirectory:: Added:: {"id":7,"path":"/home/src/projects/b/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: @@ -242,12 +230,12 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createDirectoryWatcher", "body": { - "id": 9, + "id": 8, "path": "/home/src/projects/node_modules", "recursive": true } } -Custom watchDirectory:: Added:: {"id":9,"path":"/home/src/projects/node_modules","recursive":true} +Custom watchDirectory:: Added:: {"id":8,"path":"/home/src/projects/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] event: @@ -256,11 +244,23 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createFileWatcher", "body": { - "id": 10, + "id": 9, "path": "/home/src/projects/a/1/a-impl/a/package.json" } } -Custom watchFile:: Added:: {"id":10,"path":"/home/src/projects/a/1/a-impl/a/package.json"} +Custom watchFile:: Added:: {"id":9,"path":"/home/src/projects/a/1/a-impl/a/package.json"} +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "createFileWatcher", + "body": { + "id": 10, + "path": "/home/src/tslibs/TS/Lib/lib.d.ts" + } + } +Custom watchFile:: Added:: {"id":10,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"} Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/@types 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] event: { @@ -434,35 +434,35 @@ After request PolledWatches:: /home/src/projects/a/1/a-impl/a/package.json: *new* - {"event":{"id":10,"path":"/home/src/projects/a/1/a-impl/a/package.json"}} + {"event":{"id":9,"path":"/home/src/projects/a/1/a-impl/a/package.json"}} /home/src/projects/b/2/b-impl/b/tsconfig.json: *new* {"event":{"id":1,"path":"/home/src/projects/b/2/b-impl/b/tsconfig.json"}} /home/src/tslibs/TS/Lib/lib.d.ts: *new* - {"event":{"id":3,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"}} + {"event":{"id":10,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"}} FsWatchesRecursive:: /home/src/projects/b/2/b-impl/b/node_modules: *new* - {"event":{"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true}} + {"event":{"id":3,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true}} /home/src/projects/b/2/b-impl/b/node_modules/@types: *new* {"event":{"id":11,"path":"/home/src/projects/b/2/b-impl/b/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/b/2/b-impl/b/node_modules/a: *new* - {"event":{"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}} + {"event":{"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}} /home/src/projects/b/2/b-impl/b/src: *new* {"event":{"id":2,"path":"/home/src/projects/b/2/b-impl/b/src","recursive":true,"ignoreUpdate":true}} /home/src/projects/b/2/b-impl/node_modules: *new* - {"event":{"id":6,"path":"/home/src/projects/b/2/b-impl/node_modules","recursive":true}} + {"event":{"id":5,"path":"/home/src/projects/b/2/b-impl/node_modules","recursive":true}} /home/src/projects/b/2/b-impl/node_modules/@types: *new* {"event":{"id":12,"path":"/home/src/projects/b/2/b-impl/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/b/2/node_modules: *new* - {"event":{"id":7,"path":"/home/src/projects/b/2/node_modules","recursive":true}} + {"event":{"id":6,"path":"/home/src/projects/b/2/node_modules","recursive":true}} /home/src/projects/b/2/node_modules/@types: *new* {"event":{"id":13,"path":"/home/src/projects/b/2/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/b/node_modules: *new* - {"event":{"id":8,"path":"/home/src/projects/b/node_modules","recursive":true}} + {"event":{"id":7,"path":"/home/src/projects/b/node_modules","recursive":true}} /home/src/projects/b/node_modules/@types: *new* {"event":{"id":14,"path":"/home/src/projects/b/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/node_modules: *new* - {"event":{"id":9,"path":"/home/src/projects/node_modules","recursive":true}} + {"event":{"id":8,"path":"/home/src/projects/node_modules","recursive":true}} /home/src/projects/node_modules/@types: *new* {"event":{"id":15,"path":"/home/src/projects/node_modules/@types","recursive":true,"ignoreUpdate":true}} @@ -861,26 +861,26 @@ Info seq [hh:mm:ss:mss] event: After running Immedidate callback:: count: 0 Build dependencies -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib created -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib updated -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/a.js created -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/a.js updated -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib updated -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/a.d.ts created -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/a.d.ts updated -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib updated -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/index.js created -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/index.js updated -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib updated -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/index.d.ts created -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/index.d.ts updated -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib updated -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/tsconfig.tsbuildinfo created -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/tsconfig.tsbuildinfo updated -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib updated -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt created -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt updated -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib updated +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib created +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib updated +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/a.js created +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/a.js updated +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib updated +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/a.d.ts created +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/a.d.ts updated +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib updated +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/index.js created +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/index.js updated +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib updated +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/index.d.ts created +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/index.d.ts updated +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib updated +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/tsconfig.tsbuildinfo created +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/tsconfig.tsbuildinfo updated +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib updated +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt created +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt updated +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib updated Before request //// [/home/src/projects/c/3/c-impl/c/lib/c.js] Inode:: 146 "use strict"; @@ -985,7 +985,7 @@ Info seq [hh:mm:ss:mss] request: { "command": "watchChange", "arguments": { - "id": 5, + "id": 4, "created": [ "/home/src/projects/b/2/b-impl/b/node_modules/a/lib", "/home/src/projects/b/2/b-impl/b/node_modules/a/lib/a.js", @@ -1077,46 +1077,47 @@ Info seq [hh:mm:ss:mss] event: } Custom watchDirectory:: Added:: {"id":17,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/a.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", - "event": "createFileWatcher", + "event": "createDirectoryWatcher", "body": { "id": 18, - "path": "/home/src/projects/a/1/a-impl/a/lib/a.d.ts" + "path": "/home/src/projects/a/1/a-impl/a/lib/node_modules", + "recursive": true } } -Custom watchFile:: Added:: {"id":18,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"} -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 500 undefined WatchType: Closed Script info +Custom watchDirectory:: Added:: {"id":18,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", - "event": "createFileWatcher", + "event": "createDirectoryWatcher", "body": { "id": 19, - "path": "/home/src/projects/c/3/c-impl/c/lib/index.d.ts" + "path": "/home/src/projects/a/1/a-impl/a/node_modules", + "recursive": true } } -Custom watchFile:: Added:: {"id":19,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"} -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Added:: {"id":19,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", - "event": "createDirectoryWatcher", + "event": "createFileWatcher", "body": { "id": 20, - "path": "/home/src/projects/c/3/c-impl/c/lib", - "recursive": false, - "ignoreUpdate": true + "path": "/home/src/projects/c/3/c-impl/c/package.json" } } -Custom watchDirectory:: Added:: {"id":20,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 500 undefined WatchType: Closed Script info +Custom watchFile:: Added:: {"id":20,"path":"/home/src/projects/c/3/c-impl/c/package.json"} +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/a.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -1124,25 +1125,23 @@ Info seq [hh:mm:ss:mss] event: "event": "createFileWatcher", "body": { "id": 21, - "path": "/home/src/projects/c/3/c-impl/c/lib/c.d.ts" + "path": "/home/src/projects/a/1/a-impl/a/lib/a.d.ts" } } -Custom watchFile:: Added:: {"id":21,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"} -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchFile:: Added:: {"id":21,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"} +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", - "event": "createDirectoryWatcher", + "event": "createFileWatcher", "body": { "id": 22, - "path": "/home/src/projects/a/1/a-impl/a/lib/node_modules", - "recursive": true + "path": "/home/src/projects/c/3/c-impl/c/lib/index.d.ts" } } -Custom watchDirectory:: Added:: {"id":22,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchFile:: Added:: {"id":22,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"} +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -1150,13 +1149,14 @@ Info seq [hh:mm:ss:mss] event: "event": "createDirectoryWatcher", "body": { "id": 23, - "path": "/home/src/projects/a/1/a-impl/a/node_modules", - "recursive": true + "path": "/home/src/projects/c/3/c-impl/c/lib", + "recursive": false, + "ignoreUpdate": true } } -Custom watchDirectory:: Added:: {"id":23,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution +Custom watchDirectory:: Added:: {"id":23,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -1164,10 +1164,10 @@ Info seq [hh:mm:ss:mss] event: "event": "createFileWatcher", "body": { "id": 24, - "path": "/home/src/projects/c/3/c-impl/c/package.json" + "path": "/home/src/projects/c/3/c-impl/c/lib/c.d.ts" } } -Custom watchFile:: Added:: {"id":24,"path":"/home/src/projects/c/3/c-impl/c/package.json"} +Custom watchFile:: Added:: {"id":24,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"} Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { @@ -1175,10 +1175,10 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "closeFileWatcher", "body": { - "id": 5 + "id": 4 } } -Custom watchDirectory:: Close:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true} +Custom watchDirectory:: Close:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: @@ -1187,10 +1187,10 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "closeFileWatcher", "body": { - "id": 6 + "id": 5 } } -Custom watchDirectory:: Close:: {"id":6,"path":"/home/src/projects/b/2/b-impl/node_modules","recursive":true} +Custom watchDirectory:: Close:: {"id":5,"path":"/home/src/projects/b/2/b-impl/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: @@ -1199,10 +1199,10 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "closeFileWatcher", "body": { - "id": 7 + "id": 6 } } -Custom watchDirectory:: Close:: {"id":7,"path":"/home/src/projects/b/2/node_modules","recursive":true} +Custom watchDirectory:: Close:: {"id":6,"path":"/home/src/projects/b/2/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: @@ -1211,10 +1211,10 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "closeFileWatcher", "body": { - "id": 8 + "id": 7 } } -Custom watchDirectory:: Close:: {"id":8,"path":"/home/src/projects/b/node_modules","recursive":true} +Custom watchDirectory:: Close:: {"id":7,"path":"/home/src/projects/b/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: @@ -1223,10 +1223,10 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "closeFileWatcher", "body": { - "id": 9 + "id": 8 } } -Custom watchDirectory:: Close:: {"id":9,"path":"/home/src/projects/node_modules","recursive":true} +Custom watchDirectory:: Close:: {"id":8,"path":"/home/src/projects/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/b/2/b-impl/b/tsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/b/2/b-impl/b/tsconfig.json' (Configured) @@ -1286,35 +1286,35 @@ After running Timeout callback:: count: 0 PolledWatches:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts: *new* - {"event":{"id":18,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}} + {"event":{"id":21,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}} /home/src/projects/a/1/a-impl/a/lib/index.d.ts: *new* {"event":{"id":16,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"}} /home/src/projects/a/1/a-impl/a/package.json: - {"event":{"id":10,"path":"/home/src/projects/a/1/a-impl/a/package.json"}} + {"event":{"id":9,"path":"/home/src/projects/a/1/a-impl/a/package.json"}} /home/src/projects/b/2/b-impl/b/tsconfig.json: {"event":{"id":1,"path":"/home/src/projects/b/2/b-impl/b/tsconfig.json"}} /home/src/projects/c/3/c-impl/c/lib/c.d.ts: *new* - {"event":{"id":21,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}} + {"event":{"id":24,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}} /home/src/projects/c/3/c-impl/c/lib/index.d.ts: *new* - {"event":{"id":19,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}} + {"event":{"id":22,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}} /home/src/projects/c/3/c-impl/c/package.json: *new* - {"event":{"id":24,"path":"/home/src/projects/c/3/c-impl/c/package.json"}} + {"event":{"id":20,"path":"/home/src/projects/c/3/c-impl/c/package.json"}} /home/src/tslibs/TS/Lib/lib.d.ts: - {"event":{"id":3,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"}} + {"event":{"id":10,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"}} FsWatches:: /home/src/projects/a/1/a-impl/a/lib: *new* {"event":{"id":17,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}} /home/src/projects/c/3/c-impl/c/lib: *new* - {"event":{"id":20,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}} + {"event":{"id":23,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}} FsWatchesRecursive:: /home/src/projects/a/1/a-impl/a/lib/node_modules: *new* - {"event":{"id":22,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true}} + {"event":{"id":18,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true}} /home/src/projects/a/1/a-impl/a/node_modules: *new* - {"event":{"id":23,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true}} + {"event":{"id":19,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true}} /home/src/projects/b/2/b-impl/b/node_modules: - {"event":{"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true}} + {"event":{"id":3,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true}} /home/src/projects/b/2/b-impl/b/node_modules/@types: {"event":{"id":11,"path":"/home/src/projects/b/2/b-impl/b/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/b/2/b-impl/b/src: @@ -1330,15 +1330,15 @@ FsWatchesRecursive:: FsWatchesRecursive *deleted*:: /home/src/projects/b/2/b-impl/b/node_modules/a: - {"event":{"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}} + {"event":{"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}} /home/src/projects/b/2/b-impl/node_modules: - {"event":{"id":6,"path":"/home/src/projects/b/2/b-impl/node_modules","recursive":true}} + {"event":{"id":5,"path":"/home/src/projects/b/2/b-impl/node_modules","recursive":true}} /home/src/projects/b/2/node_modules: - {"event":{"id":7,"path":"/home/src/projects/b/2/node_modules","recursive":true}} + {"event":{"id":6,"path":"/home/src/projects/b/2/node_modules","recursive":true}} /home/src/projects/b/node_modules: - {"event":{"id":8,"path":"/home/src/projects/b/node_modules","recursive":true}} + {"event":{"id":7,"path":"/home/src/projects/b/node_modules","recursive":true}} /home/src/projects/node_modules: - {"event":{"id":9,"path":"/home/src/projects/node_modules","recursive":true}} + {"event":{"id":8,"path":"/home/src/projects/node_modules","recursive":true}} Projects:: /home/src/projects/b/2/b-impl/b/tsconfig.json (Configured) *changed* @@ -1714,15 +1714,15 @@ Info seq [hh:mm:ss:mss] event: After running Immedidate callback:: count: 0 Clean dependencies build -Custom watchFile:: Triggered:: {"id":21,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/c.d.ts deleted -Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/c.d.ts deleted -Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/c.js deleted -Custom watchFile:: Triggered:: {"id":19,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/index.d.ts deleted -Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/index.d.ts deleted -Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/index.js deleted -Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo deleted -Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo.readable.baseline.txt deleted -Custom watchFile:: Triggered:: {"id":18,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts deleted +Custom watchFile:: Triggered:: {"id":24,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/c.d.ts deleted +Custom watchDirectory:: Triggered Ignored:: {"id":23,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/c.d.ts deleted +Custom watchDirectory:: Triggered Ignored:: {"id":23,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/c.js deleted +Custom watchFile:: Triggered:: {"id":22,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/index.d.ts deleted +Custom watchDirectory:: Triggered Ignored:: {"id":23,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/index.d.ts deleted +Custom watchDirectory:: Triggered Ignored:: {"id":23,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/index.js deleted +Custom watchDirectory:: Triggered Ignored:: {"id":23,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo deleted +Custom watchDirectory:: Triggered Ignored:: {"id":23,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo.readable.baseline.txt deleted +Custom watchFile:: Triggered:: {"id":21,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts deleted Custom watchDirectory:: Triggered Ignored:: {"id":17,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts deleted Custom watchDirectory:: Triggered Ignored:: {"id":17,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/a/1/a-impl/a/lib/a.js deleted Custom watchFile:: Triggered:: {"id":16,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"}:: /home/src/projects/a/1/a-impl/a/lib/index.d.ts deleted @@ -1749,13 +1749,13 @@ Info seq [hh:mm:ss:mss] request: "command": "watchChange", "arguments": [ { - "id": 21, + "id": 24, "deleted": [ "/home/src/projects/c/3/c-impl/c/lib/c.d.ts" ] }, { - "id": 20, + "id": 23, "deleted": [ "/home/src/projects/c/3/c-impl/c/lib/c.d.ts", "/home/src/projects/c/3/c-impl/c/lib/c.js", @@ -1766,13 +1766,13 @@ Info seq [hh:mm:ss:mss] request: ] }, { - "id": 19, + "id": 22, "deleted": [ "/home/src/projects/c/3/c-impl/c/lib/index.d.ts" ] }, { - "id": 18, + "id": 21, "deleted": [ "/home/src/projects/a/1/a-impl/a/lib/a.d.ts" ] @@ -1976,54 +1976,54 @@ Info seq [hh:mm:ss:mss] event: } Custom watchDirectory:: Added:: {"id":29,"path":"/home/src/projects/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", "event": "closeFileWatcher", "body": { - "id": 17 + "id": 23 } } -Custom watchDirectory:: Close:: {"id":17,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Close:: {"id":23,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", "event": "closeFileWatcher", "body": { - "id": 20 + "id": 17 } } -Custom watchDirectory:: Close:: {"id":20,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Close:: {"id":17,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", "event": "closeFileWatcher", "body": { - "id": 22 + "id": 19 } } -Custom watchDirectory:: Close:: {"id":22,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Close:: {"id":19,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", "event": "closeFileWatcher", "body": { - "id": 23 + "id": 18 } } -Custom watchDirectory:: Close:: {"id":23,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Close:: {"id":18,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] event: { @@ -2031,10 +2031,10 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "closeFileWatcher", "body": { - "id": 24 + "id": 20 } } -Custom watchFile:: Close:: {"id":24,"path":"/home/src/projects/c/3/c-impl/c/package.json"} +Custom watchFile:: Close:: {"id":20,"path":"/home/src/projects/c/3/c-impl/c/package.json"} Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/b/2/b-impl/b/tsconfig.json projectStateVersion: 3 projectProgramVersion: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/b/2/b-impl/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2081,33 +2081,33 @@ After running Timeout callback:: count: 0 PolledWatches:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts: - {"event":{"id":18,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}} + {"event":{"id":21,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}} /home/src/projects/a/1/a-impl/a/lib/index.d.ts: {"event":{"id":16,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"}} /home/src/projects/a/1/a-impl/a/package.json: - {"event":{"id":10,"path":"/home/src/projects/a/1/a-impl/a/package.json"}} + {"event":{"id":9,"path":"/home/src/projects/a/1/a-impl/a/package.json"}} /home/src/projects/b/2/b-impl/b/tsconfig.json: {"event":{"id":1,"path":"/home/src/projects/b/2/b-impl/b/tsconfig.json"}} /home/src/projects/c/3/c-impl/c/lib/c.d.ts: - {"event":{"id":21,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}} + {"event":{"id":24,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}} /home/src/projects/c/3/c-impl/c/lib/index.d.ts: - {"event":{"id":19,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}} + {"event":{"id":22,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}} /home/src/tslibs/TS/Lib/lib.d.ts: - {"event":{"id":3,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"}} + {"event":{"id":10,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"}} PolledWatches *deleted*:: /home/src/projects/c/3/c-impl/c/package.json: - {"event":{"id":24,"path":"/home/src/projects/c/3/c-impl/c/package.json"}} + {"event":{"id":20,"path":"/home/src/projects/c/3/c-impl/c/package.json"}} FsWatches *deleted*:: /home/src/projects/a/1/a-impl/a/lib: {"event":{"id":17,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}} /home/src/projects/c/3/c-impl/c/lib: - {"event":{"id":20,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}} + {"event":{"id":23,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}} FsWatchesRecursive:: /home/src/projects/b/2/b-impl/b/node_modules: - {"event":{"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true}} + {"event":{"id":3,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true}} /home/src/projects/b/2/b-impl/b/node_modules/@types: {"event":{"id":11,"path":"/home/src/projects/b/2/b-impl/b/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/b/2/b-impl/b/node_modules/a: *new* @@ -2133,9 +2133,9 @@ FsWatchesRecursive:: FsWatchesRecursive *deleted*:: /home/src/projects/a/1/a-impl/a/lib/node_modules: - {"event":{"id":22,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true}} + {"event":{"id":18,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true}} /home/src/projects/a/1/a-impl/a/node_modules: - {"event":{"id":23,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true}} + {"event":{"id":19,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true}} Projects:: /home/src/projects/b/2/b-impl/b/tsconfig.json (Configured) *changed* @@ -2270,14 +2270,14 @@ Info seq [hh:mm:ss:mss] event: After running Immedidate callback:: count: 0 Build dependencies -Custom watchFile:: Triggered:: {"id":21,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/c.d.ts created -Custom watchFile:: Triggered:: {"id":19,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/index.d.ts created +Custom watchFile:: Triggered:: {"id":24,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/c.d.ts created +Custom watchFile:: Triggered:: {"id":22,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/index.d.ts created Custom watchDirectory:: Triggered Ignored:: {"id":25,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib created Custom watchDirectory:: Triggered Ignored:: {"id":25,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib updated Custom watchDirectory:: Triggered Ignored:: {"id":25,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/a.js created Custom watchDirectory:: Triggered Ignored:: {"id":25,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/a.js updated Custom watchDirectory:: Triggered Ignored:: {"id":25,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib updated -Custom watchFile:: Triggered:: {"id":18,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts created +Custom watchFile:: Triggered:: {"id":21,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts created Custom watchDirectory:: Triggered Ignored:: {"id":25,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/a.d.ts created Custom watchDirectory:: Triggered Ignored:: {"id":25,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/a.d.ts updated Custom watchDirectory:: Triggered Ignored:: {"id":25,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib updated @@ -2399,13 +2399,13 @@ Info seq [hh:mm:ss:mss] request: "command": "watchChange", "arguments": [ { - "id": 21, + "id": 24, "created": [ "/home/src/projects/c/3/c-impl/c/lib/c.d.ts" ] }, { - "id": 19, + "id": 22, "created": [ "/home/src/projects/c/3/c-impl/c/lib/index.d.ts" ] @@ -2423,7 +2423,7 @@ Info seq [hh:mm:ss:mss] request: ] }, { - "id": 18, + "id": 21, "created": [ "/home/src/projects/a/1/a-impl/a/lib/a.d.ts" ] @@ -2541,7 +2541,7 @@ Info seq [hh:mm:ss:mss] event: } Custom watchDirectory:: Added:: {"id":30,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -2549,14 +2549,13 @@ Info seq [hh:mm:ss:mss] event: "event": "createDirectoryWatcher", "body": { "id": 31, - "path": "/home/src/projects/c/3/c-impl/c/lib", - "recursive": false, - "ignoreUpdate": true + "path": "/home/src/projects/a/1/a-impl/a/lib/node_modules", + "recursive": true } } -Custom watchDirectory:: Added:: {"id":31,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Added:: {"id":31,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -2564,38 +2563,39 @@ Info seq [hh:mm:ss:mss] event: "event": "createDirectoryWatcher", "body": { "id": 32, - "path": "/home/src/projects/a/1/a-impl/a/lib/node_modules", + "path": "/home/src/projects/a/1/a-impl/a/node_modules", "recursive": true } } -Custom watchDirectory:: Added:: {"id":32,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Added:: {"id":32,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", - "event": "createDirectoryWatcher", + "event": "createFileWatcher", "body": { "id": 33, - "path": "/home/src/projects/a/1/a-impl/a/node_modules", - "recursive": true + "path": "/home/src/projects/c/3/c-impl/c/package.json" } } -Custom watchDirectory:: Added:: {"id":33,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution +Custom watchFile:: Added:: {"id":33,"path":"/home/src/projects/c/3/c-impl/c/package.json"} +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", - "event": "createFileWatcher", + "event": "createDirectoryWatcher", "body": { "id": 34, - "path": "/home/src/projects/c/3/c-impl/c/package.json" + "path": "/home/src/projects/c/3/c-impl/c/lib", + "recursive": false, + "ignoreUpdate": true } } -Custom watchFile:: Added:: {"id":34,"path":"/home/src/projects/c/3/c-impl/c/package.json"} +Custom watchDirectory:: Added:: {"id":34,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { @@ -2714,35 +2714,35 @@ After running Timeout callback:: count: 0 PolledWatches:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts: - {"event":{"id":18,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}} + {"event":{"id":21,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}} /home/src/projects/a/1/a-impl/a/lib/index.d.ts: {"event":{"id":16,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"}} /home/src/projects/a/1/a-impl/a/package.json: - {"event":{"id":10,"path":"/home/src/projects/a/1/a-impl/a/package.json"}} + {"event":{"id":9,"path":"/home/src/projects/a/1/a-impl/a/package.json"}} /home/src/projects/b/2/b-impl/b/tsconfig.json: {"event":{"id":1,"path":"/home/src/projects/b/2/b-impl/b/tsconfig.json"}} /home/src/projects/c/3/c-impl/c/lib/c.d.ts: - {"event":{"id":21,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}} + {"event":{"id":24,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}} /home/src/projects/c/3/c-impl/c/lib/index.d.ts: - {"event":{"id":19,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}} + {"event":{"id":22,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}} /home/src/projects/c/3/c-impl/c/package.json: *new* - {"event":{"id":34,"path":"/home/src/projects/c/3/c-impl/c/package.json"}} + {"event":{"id":33,"path":"/home/src/projects/c/3/c-impl/c/package.json"}} /home/src/tslibs/TS/Lib/lib.d.ts: - {"event":{"id":3,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"}} + {"event":{"id":10,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"}} FsWatches:: /home/src/projects/a/1/a-impl/a/lib: *new* {"event":{"id":30,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}} /home/src/projects/c/3/c-impl/c/lib: *new* - {"event":{"id":31,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}} + {"event":{"id":34,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}} FsWatchesRecursive:: /home/src/projects/a/1/a-impl/a/lib/node_modules: *new* - {"event":{"id":32,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true}} + {"event":{"id":31,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true}} /home/src/projects/a/1/a-impl/a/node_modules: *new* - {"event":{"id":33,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true}} + {"event":{"id":32,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true}} /home/src/projects/b/2/b-impl/b/node_modules: - {"event":{"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true}} + {"event":{"id":3,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true}} /home/src/projects/b/2/b-impl/b/node_modules/@types: {"event":{"id":11,"path":"/home/src/projects/b/2/b-impl/b/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/b/2/b-impl/b/src: diff --git a/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-Linux.js b/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-Linux.js index e6273033d86a0..fb7e7c626e91f 100644 --- a/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-Linux.js +++ b/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-Linux.js @@ -126,7 +126,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Config: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Config: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/b/2/b-impl/b/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations @@ -142,6 +141,7 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/@types 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/@types 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules/@types 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Type roots @@ -868,16 +868,16 @@ Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/index.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/a.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/a.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations @@ -1562,14 +1562,14 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/project Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/b/2/b-impl/b/tsconfig.json projectStateVersion: 3 projectProgramVersion: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/b/2/b-impl/b/tsconfig.json' (Configured) @@ -2106,13 +2106,13 @@ Info seq [hh:mm:ss:mss] Running: /home/src/projects/b/2/b-impl/b/tsconfig.json Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/b/2/b-impl/b/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations diff --git a/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-MacOs-canUseWatchEvents.js b/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-MacOs-canUseWatchEvents.js index 18f98815710b7..27cd313559fd2 100644 --- a/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-MacOs-canUseWatchEvents.js +++ b/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-MacOs-canUseWatchEvents.js @@ -150,18 +150,6 @@ Info seq [hh:mm:ss:mss] event: Custom watchDirectory:: Added:: {"id":2,"path":"/home/src/projects/b/2/b-impl/b/src","recursive":true,"ignoreUpdate":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Config: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/b/2/b-impl/b/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] event: - { - "seq": 0, - "type": "event", - "event": "createFileWatcher", - "body": { - "id": 3, - "path": "/home/src/tslibs/TS/Lib/lib.d.ts" - } - } -Custom watchFile:: Added:: {"id":3,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"} Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations @@ -171,12 +159,12 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createDirectoryWatcher", "body": { - "id": 4, + "id": 3, "path": "/home/src/projects/b/2/b-impl/b/node_modules", "recursive": true } } -Custom watchDirectory:: Added:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true} +Custom watchDirectory:: Added:: {"id":3,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: @@ -185,13 +173,13 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createDirectoryWatcher", "body": { - "id": 5, + "id": 4, "path": "/home/src/projects/b/2/b-impl/b/node_modules/a", "recursive": true, "ignoreUpdate": true } } -Custom watchDirectory:: Added:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true} +Custom watchDirectory:: Added:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: @@ -200,12 +188,12 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createDirectoryWatcher", "body": { - "id": 6, + "id": 5, "path": "/home/src/projects/b/2/b-impl/node_modules", "recursive": true } } -Custom watchDirectory:: Added:: {"id":6,"path":"/home/src/projects/b/2/b-impl/node_modules","recursive":true} +Custom watchDirectory:: Added:: {"id":5,"path":"/home/src/projects/b/2/b-impl/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: @@ -214,12 +202,12 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createDirectoryWatcher", "body": { - "id": 7, + "id": 6, "path": "/home/src/projects/b/2/node_modules", "recursive": true } } -Custom watchDirectory:: Added:: {"id":7,"path":"/home/src/projects/b/2/node_modules","recursive":true} +Custom watchDirectory:: Added:: {"id":6,"path":"/home/src/projects/b/2/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: @@ -228,12 +216,12 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createDirectoryWatcher", "body": { - "id": 8, + "id": 7, "path": "/home/src/projects/b/node_modules", "recursive": true } } -Custom watchDirectory:: Added:: {"id":8,"path":"/home/src/projects/b/node_modules","recursive":true} +Custom watchDirectory:: Added:: {"id":7,"path":"/home/src/projects/b/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: @@ -242,12 +230,12 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createDirectoryWatcher", "body": { - "id": 9, + "id": 8, "path": "/home/src/projects/node_modules", "recursive": true } } -Custom watchDirectory:: Added:: {"id":9,"path":"/home/src/projects/node_modules","recursive":true} +Custom watchDirectory:: Added:: {"id":8,"path":"/home/src/projects/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] event: @@ -256,11 +244,23 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createFileWatcher", "body": { - "id": 10, + "id": 9, "path": "/home/src/projects/a/1/a-impl/a/package.json" } } -Custom watchFile:: Added:: {"id":10,"path":"/home/src/projects/a/1/a-impl/a/package.json"} +Custom watchFile:: Added:: {"id":9,"path":"/home/src/projects/a/1/a-impl/a/package.json"} +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "createFileWatcher", + "body": { + "id": 10, + "path": "/home/src/tslibs/TS/Lib/lib.d.ts" + } + } +Custom watchFile:: Added:: {"id":10,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"} Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/@types 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] event: { @@ -434,35 +434,35 @@ After request PolledWatches:: /home/src/projects/a/1/a-impl/a/package.json: *new* - {"event":{"id":10,"path":"/home/src/projects/a/1/a-impl/a/package.json"}} + {"event":{"id":9,"path":"/home/src/projects/a/1/a-impl/a/package.json"}} /home/src/projects/b/2/b-impl/b/tsconfig.json: *new* {"event":{"id":1,"path":"/home/src/projects/b/2/b-impl/b/tsconfig.json"}} /home/src/tslibs/TS/Lib/lib.d.ts: *new* - {"event":{"id":3,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"}} + {"event":{"id":10,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"}} FsWatchesRecursive:: /home/src/projects/b/2/b-impl/b/node_modules: *new* - {"event":{"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true}} + {"event":{"id":3,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true}} /home/src/projects/b/2/b-impl/b/node_modules/@types: *new* {"event":{"id":11,"path":"/home/src/projects/b/2/b-impl/b/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/b/2/b-impl/b/node_modules/a: *new* - {"event":{"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}} + {"event":{"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}} /home/src/projects/b/2/b-impl/b/src: *new* {"event":{"id":2,"path":"/home/src/projects/b/2/b-impl/b/src","recursive":true,"ignoreUpdate":true}} /home/src/projects/b/2/b-impl/node_modules: *new* - {"event":{"id":6,"path":"/home/src/projects/b/2/b-impl/node_modules","recursive":true}} + {"event":{"id":5,"path":"/home/src/projects/b/2/b-impl/node_modules","recursive":true}} /home/src/projects/b/2/b-impl/node_modules/@types: *new* {"event":{"id":12,"path":"/home/src/projects/b/2/b-impl/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/b/2/node_modules: *new* - {"event":{"id":7,"path":"/home/src/projects/b/2/node_modules","recursive":true}} + {"event":{"id":6,"path":"/home/src/projects/b/2/node_modules","recursive":true}} /home/src/projects/b/2/node_modules/@types: *new* {"event":{"id":13,"path":"/home/src/projects/b/2/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/b/node_modules: *new* - {"event":{"id":8,"path":"/home/src/projects/b/node_modules","recursive":true}} + {"event":{"id":7,"path":"/home/src/projects/b/node_modules","recursive":true}} /home/src/projects/b/node_modules/@types: *new* {"event":{"id":14,"path":"/home/src/projects/b/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/node_modules: *new* - {"event":{"id":9,"path":"/home/src/projects/node_modules","recursive":true}} + {"event":{"id":8,"path":"/home/src/projects/node_modules","recursive":true}} /home/src/projects/node_modules/@types: *new* {"event":{"id":15,"path":"/home/src/projects/node_modules/@types","recursive":true,"ignoreUpdate":true}} @@ -861,13 +861,13 @@ Info seq [hh:mm:ss:mss] event: After running Immedidate callback:: count: 0 Build dependencies -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib created -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/a.js created -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/a.d.ts created -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/index.js created -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/index.d.ts created -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/tsconfig.tsbuildinfo created -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt created +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib created +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/a.js created +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/a.d.ts created +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/index.js created +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/index.d.ts created +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/tsconfig.tsbuildinfo created +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt created Before request //// [/home/src/projects/c/3/c-impl/c/lib/c.js] Inode:: 146 "use strict"; @@ -972,7 +972,7 @@ Info seq [hh:mm:ss:mss] request: { "command": "watchChange", "arguments": { - "id": 5, + "id": 4, "created": [ "/home/src/projects/b/2/b-impl/b/node_modules/a/lib", "/home/src/projects/b/2/b-impl/b/node_modules/a/lib/a.js", @@ -1064,46 +1064,47 @@ Info seq [hh:mm:ss:mss] event: } Custom watchDirectory:: Added:: {"id":17,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/a.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", - "event": "createFileWatcher", + "event": "createDirectoryWatcher", "body": { "id": 18, - "path": "/home/src/projects/a/1/a-impl/a/lib/a.d.ts" + "path": "/home/src/projects/a/1/a-impl/a/lib/node_modules", + "recursive": true } } -Custom watchFile:: Added:: {"id":18,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"} -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 500 undefined WatchType: Closed Script info +Custom watchDirectory:: Added:: {"id":18,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", - "event": "createFileWatcher", + "event": "createDirectoryWatcher", "body": { "id": 19, - "path": "/home/src/projects/c/3/c-impl/c/lib/index.d.ts" + "path": "/home/src/projects/a/1/a-impl/a/node_modules", + "recursive": true } } -Custom watchFile:: Added:: {"id":19,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"} -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Added:: {"id":19,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", - "event": "createDirectoryWatcher", + "event": "createFileWatcher", "body": { "id": 20, - "path": "/home/src/projects/c/3/c-impl/c/lib", - "recursive": false, - "ignoreUpdate": true + "path": "/home/src/projects/c/3/c-impl/c/package.json" } } -Custom watchDirectory:: Added:: {"id":20,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 500 undefined WatchType: Closed Script info +Custom watchFile:: Added:: {"id":20,"path":"/home/src/projects/c/3/c-impl/c/package.json"} +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/a.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -1111,25 +1112,23 @@ Info seq [hh:mm:ss:mss] event: "event": "createFileWatcher", "body": { "id": 21, - "path": "/home/src/projects/c/3/c-impl/c/lib/c.d.ts" + "path": "/home/src/projects/a/1/a-impl/a/lib/a.d.ts" } } -Custom watchFile:: Added:: {"id":21,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"} -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchFile:: Added:: {"id":21,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"} +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", - "event": "createDirectoryWatcher", + "event": "createFileWatcher", "body": { "id": 22, - "path": "/home/src/projects/a/1/a-impl/a/lib/node_modules", - "recursive": true + "path": "/home/src/projects/c/3/c-impl/c/lib/index.d.ts" } } -Custom watchDirectory:: Added:: {"id":22,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchFile:: Added:: {"id":22,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"} +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -1137,13 +1136,14 @@ Info seq [hh:mm:ss:mss] event: "event": "createDirectoryWatcher", "body": { "id": 23, - "path": "/home/src/projects/a/1/a-impl/a/node_modules", - "recursive": true + "path": "/home/src/projects/c/3/c-impl/c/lib", + "recursive": false, + "ignoreUpdate": true } } -Custom watchDirectory:: Added:: {"id":23,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution +Custom watchDirectory:: Added:: {"id":23,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -1151,10 +1151,10 @@ Info seq [hh:mm:ss:mss] event: "event": "createFileWatcher", "body": { "id": 24, - "path": "/home/src/projects/c/3/c-impl/c/package.json" + "path": "/home/src/projects/c/3/c-impl/c/lib/c.d.ts" } } -Custom watchFile:: Added:: {"id":24,"path":"/home/src/projects/c/3/c-impl/c/package.json"} +Custom watchFile:: Added:: {"id":24,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"} Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { @@ -1162,10 +1162,10 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "closeFileWatcher", "body": { - "id": 5 + "id": 4 } } -Custom watchDirectory:: Close:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true} +Custom watchDirectory:: Close:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: @@ -1174,10 +1174,10 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "closeFileWatcher", "body": { - "id": 6 + "id": 5 } } -Custom watchDirectory:: Close:: {"id":6,"path":"/home/src/projects/b/2/b-impl/node_modules","recursive":true} +Custom watchDirectory:: Close:: {"id":5,"path":"/home/src/projects/b/2/b-impl/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: @@ -1186,10 +1186,10 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "closeFileWatcher", "body": { - "id": 7 + "id": 6 } } -Custom watchDirectory:: Close:: {"id":7,"path":"/home/src/projects/b/2/node_modules","recursive":true} +Custom watchDirectory:: Close:: {"id":6,"path":"/home/src/projects/b/2/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: @@ -1198,10 +1198,10 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "closeFileWatcher", "body": { - "id": 8 + "id": 7 } } -Custom watchDirectory:: Close:: {"id":8,"path":"/home/src/projects/b/node_modules","recursive":true} +Custom watchDirectory:: Close:: {"id":7,"path":"/home/src/projects/b/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: @@ -1210,10 +1210,10 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "closeFileWatcher", "body": { - "id": 9 + "id": 8 } } -Custom watchDirectory:: Close:: {"id":9,"path":"/home/src/projects/node_modules","recursive":true} +Custom watchDirectory:: Close:: {"id":8,"path":"/home/src/projects/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/b/2/b-impl/b/tsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/b/2/b-impl/b/tsconfig.json' (Configured) @@ -1273,35 +1273,35 @@ After running Timeout callback:: count: 0 PolledWatches:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts: *new* - {"event":{"id":18,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}} + {"event":{"id":21,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}} /home/src/projects/a/1/a-impl/a/lib/index.d.ts: *new* {"event":{"id":16,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"}} /home/src/projects/a/1/a-impl/a/package.json: - {"event":{"id":10,"path":"/home/src/projects/a/1/a-impl/a/package.json"}} + {"event":{"id":9,"path":"/home/src/projects/a/1/a-impl/a/package.json"}} /home/src/projects/b/2/b-impl/b/tsconfig.json: {"event":{"id":1,"path":"/home/src/projects/b/2/b-impl/b/tsconfig.json"}} /home/src/projects/c/3/c-impl/c/lib/c.d.ts: *new* - {"event":{"id":21,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}} + {"event":{"id":24,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}} /home/src/projects/c/3/c-impl/c/lib/index.d.ts: *new* - {"event":{"id":19,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}} + {"event":{"id":22,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}} /home/src/projects/c/3/c-impl/c/package.json: *new* - {"event":{"id":24,"path":"/home/src/projects/c/3/c-impl/c/package.json"}} + {"event":{"id":20,"path":"/home/src/projects/c/3/c-impl/c/package.json"}} /home/src/tslibs/TS/Lib/lib.d.ts: - {"event":{"id":3,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"}} + {"event":{"id":10,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"}} FsWatches:: /home/src/projects/a/1/a-impl/a/lib: *new* {"event":{"id":17,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}} /home/src/projects/c/3/c-impl/c/lib: *new* - {"event":{"id":20,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}} + {"event":{"id":23,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}} FsWatchesRecursive:: /home/src/projects/a/1/a-impl/a/lib/node_modules: *new* - {"event":{"id":22,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true}} + {"event":{"id":18,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true}} /home/src/projects/a/1/a-impl/a/node_modules: *new* - {"event":{"id":23,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true}} + {"event":{"id":19,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true}} /home/src/projects/b/2/b-impl/b/node_modules: - {"event":{"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true}} + {"event":{"id":3,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true}} /home/src/projects/b/2/b-impl/b/node_modules/@types: {"event":{"id":11,"path":"/home/src/projects/b/2/b-impl/b/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/b/2/b-impl/b/src: @@ -1317,15 +1317,15 @@ FsWatchesRecursive:: FsWatchesRecursive *deleted*:: /home/src/projects/b/2/b-impl/b/node_modules/a: - {"event":{"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}} + {"event":{"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}} /home/src/projects/b/2/b-impl/node_modules: - {"event":{"id":6,"path":"/home/src/projects/b/2/b-impl/node_modules","recursive":true}} + {"event":{"id":5,"path":"/home/src/projects/b/2/b-impl/node_modules","recursive":true}} /home/src/projects/b/2/node_modules: - {"event":{"id":7,"path":"/home/src/projects/b/2/node_modules","recursive":true}} + {"event":{"id":6,"path":"/home/src/projects/b/2/node_modules","recursive":true}} /home/src/projects/b/node_modules: - {"event":{"id":8,"path":"/home/src/projects/b/node_modules","recursive":true}} + {"event":{"id":7,"path":"/home/src/projects/b/node_modules","recursive":true}} /home/src/projects/node_modules: - {"event":{"id":9,"path":"/home/src/projects/node_modules","recursive":true}} + {"event":{"id":8,"path":"/home/src/projects/node_modules","recursive":true}} Projects:: /home/src/projects/b/2/b-impl/b/tsconfig.json (Configured) *changed* @@ -1701,15 +1701,15 @@ Info seq [hh:mm:ss:mss] event: After running Immedidate callback:: count: 0 Clean dependencies build -Custom watchFile:: Triggered:: {"id":21,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/c.d.ts deleted -Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/c.d.ts deleted -Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/c.js deleted -Custom watchFile:: Triggered:: {"id":19,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/index.d.ts deleted -Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/index.d.ts deleted -Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/index.js deleted -Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo deleted -Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo.readable.baseline.txt deleted -Custom watchFile:: Triggered:: {"id":18,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts deleted +Custom watchFile:: Triggered:: {"id":24,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/c.d.ts deleted +Custom watchDirectory:: Triggered Ignored:: {"id":23,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/c.d.ts deleted +Custom watchDirectory:: Triggered Ignored:: {"id":23,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/c.js deleted +Custom watchFile:: Triggered:: {"id":22,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/index.d.ts deleted +Custom watchDirectory:: Triggered Ignored:: {"id":23,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/index.d.ts deleted +Custom watchDirectory:: Triggered Ignored:: {"id":23,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/index.js deleted +Custom watchDirectory:: Triggered Ignored:: {"id":23,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo deleted +Custom watchDirectory:: Triggered Ignored:: {"id":23,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo.readable.baseline.txt deleted +Custom watchFile:: Triggered:: {"id":21,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts deleted Custom watchDirectory:: Triggered Ignored:: {"id":17,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts deleted Custom watchDirectory:: Triggered Ignored:: {"id":17,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/a/1/a-impl/a/lib/a.js deleted Custom watchFile:: Triggered:: {"id":16,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"}:: /home/src/projects/a/1/a-impl/a/lib/index.d.ts deleted @@ -1736,13 +1736,13 @@ Info seq [hh:mm:ss:mss] request: "command": "watchChange", "arguments": [ { - "id": 21, + "id": 24, "deleted": [ "/home/src/projects/c/3/c-impl/c/lib/c.d.ts" ] }, { - "id": 20, + "id": 23, "deleted": [ "/home/src/projects/c/3/c-impl/c/lib/c.d.ts", "/home/src/projects/c/3/c-impl/c/lib/c.js", @@ -1753,13 +1753,13 @@ Info seq [hh:mm:ss:mss] request: ] }, { - "id": 19, + "id": 22, "deleted": [ "/home/src/projects/c/3/c-impl/c/lib/index.d.ts" ] }, { - "id": 18, + "id": 21, "deleted": [ "/home/src/projects/a/1/a-impl/a/lib/a.d.ts" ] @@ -1963,54 +1963,54 @@ Info seq [hh:mm:ss:mss] event: } Custom watchDirectory:: Added:: {"id":29,"path":"/home/src/projects/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", "event": "closeFileWatcher", "body": { - "id": 17 + "id": 23 } } -Custom watchDirectory:: Close:: {"id":17,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Close:: {"id":23,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", "event": "closeFileWatcher", "body": { - "id": 20 + "id": 17 } } -Custom watchDirectory:: Close:: {"id":20,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Close:: {"id":17,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", "event": "closeFileWatcher", "body": { - "id": 22 + "id": 19 } } -Custom watchDirectory:: Close:: {"id":22,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Close:: {"id":19,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", "event": "closeFileWatcher", "body": { - "id": 23 + "id": 18 } } -Custom watchDirectory:: Close:: {"id":23,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Close:: {"id":18,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] event: { @@ -2018,10 +2018,10 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "closeFileWatcher", "body": { - "id": 24 + "id": 20 } } -Custom watchFile:: Close:: {"id":24,"path":"/home/src/projects/c/3/c-impl/c/package.json"} +Custom watchFile:: Close:: {"id":20,"path":"/home/src/projects/c/3/c-impl/c/package.json"} Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/b/2/b-impl/b/tsconfig.json projectStateVersion: 3 projectProgramVersion: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/b/2/b-impl/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2068,33 +2068,33 @@ After running Timeout callback:: count: 0 PolledWatches:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts: - {"event":{"id":18,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}} + {"event":{"id":21,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}} /home/src/projects/a/1/a-impl/a/lib/index.d.ts: {"event":{"id":16,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"}} /home/src/projects/a/1/a-impl/a/package.json: - {"event":{"id":10,"path":"/home/src/projects/a/1/a-impl/a/package.json"}} + {"event":{"id":9,"path":"/home/src/projects/a/1/a-impl/a/package.json"}} /home/src/projects/b/2/b-impl/b/tsconfig.json: {"event":{"id":1,"path":"/home/src/projects/b/2/b-impl/b/tsconfig.json"}} /home/src/projects/c/3/c-impl/c/lib/c.d.ts: - {"event":{"id":21,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}} + {"event":{"id":24,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}} /home/src/projects/c/3/c-impl/c/lib/index.d.ts: - {"event":{"id":19,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}} + {"event":{"id":22,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}} /home/src/tslibs/TS/Lib/lib.d.ts: - {"event":{"id":3,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"}} + {"event":{"id":10,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"}} PolledWatches *deleted*:: /home/src/projects/c/3/c-impl/c/package.json: - {"event":{"id":24,"path":"/home/src/projects/c/3/c-impl/c/package.json"}} + {"event":{"id":20,"path":"/home/src/projects/c/3/c-impl/c/package.json"}} FsWatches *deleted*:: /home/src/projects/a/1/a-impl/a/lib: {"event":{"id":17,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}} /home/src/projects/c/3/c-impl/c/lib: - {"event":{"id":20,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}} + {"event":{"id":23,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}} FsWatchesRecursive:: /home/src/projects/b/2/b-impl/b/node_modules: - {"event":{"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true}} + {"event":{"id":3,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true}} /home/src/projects/b/2/b-impl/b/node_modules/@types: {"event":{"id":11,"path":"/home/src/projects/b/2/b-impl/b/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/b/2/b-impl/b/node_modules/a: *new* @@ -2120,9 +2120,9 @@ FsWatchesRecursive:: FsWatchesRecursive *deleted*:: /home/src/projects/a/1/a-impl/a/lib/node_modules: - {"event":{"id":22,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true}} + {"event":{"id":18,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true}} /home/src/projects/a/1/a-impl/a/node_modules: - {"event":{"id":23,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true}} + {"event":{"id":19,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true}} Projects:: /home/src/projects/b/2/b-impl/b/tsconfig.json (Configured) *changed* @@ -2257,11 +2257,11 @@ Info seq [hh:mm:ss:mss] event: After running Immedidate callback:: count: 0 Build dependencies -Custom watchFile:: Triggered:: {"id":21,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/c.d.ts created -Custom watchFile:: Triggered:: {"id":19,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/index.d.ts created +Custom watchFile:: Triggered:: {"id":24,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/c.d.ts created +Custom watchFile:: Triggered:: {"id":22,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/index.d.ts created Custom watchDirectory:: Triggered Ignored:: {"id":25,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib created Custom watchDirectory:: Triggered Ignored:: {"id":25,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/a.js created -Custom watchFile:: Triggered:: {"id":18,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts created +Custom watchFile:: Triggered:: {"id":21,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts created Custom watchDirectory:: Triggered Ignored:: {"id":25,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/a.d.ts created Custom watchDirectory:: Triggered Ignored:: {"id":25,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/index.js created Custom watchFile:: Triggered:: {"id":16,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"}:: /home/src/projects/a/1/a-impl/a/lib/index.d.ts created @@ -2373,13 +2373,13 @@ Info seq [hh:mm:ss:mss] request: "command": "watchChange", "arguments": [ { - "id": 21, + "id": 24, "created": [ "/home/src/projects/c/3/c-impl/c/lib/c.d.ts" ] }, { - "id": 19, + "id": 22, "created": [ "/home/src/projects/c/3/c-impl/c/lib/index.d.ts" ] @@ -2397,7 +2397,7 @@ Info seq [hh:mm:ss:mss] request: ] }, { - "id": 18, + "id": 21, "created": [ "/home/src/projects/a/1/a-impl/a/lib/a.d.ts" ] @@ -2515,7 +2515,7 @@ Info seq [hh:mm:ss:mss] event: } Custom watchDirectory:: Added:: {"id":30,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -2523,14 +2523,13 @@ Info seq [hh:mm:ss:mss] event: "event": "createDirectoryWatcher", "body": { "id": 31, - "path": "/home/src/projects/c/3/c-impl/c/lib", - "recursive": false, - "ignoreUpdate": true + "path": "/home/src/projects/a/1/a-impl/a/lib/node_modules", + "recursive": true } } -Custom watchDirectory:: Added:: {"id":31,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Added:: {"id":31,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -2538,38 +2537,39 @@ Info seq [hh:mm:ss:mss] event: "event": "createDirectoryWatcher", "body": { "id": 32, - "path": "/home/src/projects/a/1/a-impl/a/lib/node_modules", + "path": "/home/src/projects/a/1/a-impl/a/node_modules", "recursive": true } } -Custom watchDirectory:: Added:: {"id":32,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Added:: {"id":32,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", - "event": "createDirectoryWatcher", + "event": "createFileWatcher", "body": { "id": 33, - "path": "/home/src/projects/a/1/a-impl/a/node_modules", - "recursive": true + "path": "/home/src/projects/c/3/c-impl/c/package.json" } } -Custom watchDirectory:: Added:: {"id":33,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution +Custom watchFile:: Added:: {"id":33,"path":"/home/src/projects/c/3/c-impl/c/package.json"} +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", - "event": "createFileWatcher", + "event": "createDirectoryWatcher", "body": { "id": 34, - "path": "/home/src/projects/c/3/c-impl/c/package.json" + "path": "/home/src/projects/c/3/c-impl/c/lib", + "recursive": false, + "ignoreUpdate": true } } -Custom watchFile:: Added:: {"id":34,"path":"/home/src/projects/c/3/c-impl/c/package.json"} +Custom watchDirectory:: Added:: {"id":34,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { @@ -2688,35 +2688,35 @@ After running Timeout callback:: count: 0 PolledWatches:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts: - {"event":{"id":18,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}} + {"event":{"id":21,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}} /home/src/projects/a/1/a-impl/a/lib/index.d.ts: {"event":{"id":16,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"}} /home/src/projects/a/1/a-impl/a/package.json: - {"event":{"id":10,"path":"/home/src/projects/a/1/a-impl/a/package.json"}} + {"event":{"id":9,"path":"/home/src/projects/a/1/a-impl/a/package.json"}} /home/src/projects/b/2/b-impl/b/tsconfig.json: {"event":{"id":1,"path":"/home/src/projects/b/2/b-impl/b/tsconfig.json"}} /home/src/projects/c/3/c-impl/c/lib/c.d.ts: - {"event":{"id":21,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}} + {"event":{"id":24,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}} /home/src/projects/c/3/c-impl/c/lib/index.d.ts: - {"event":{"id":19,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}} + {"event":{"id":22,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}} /home/src/projects/c/3/c-impl/c/package.json: *new* - {"event":{"id":34,"path":"/home/src/projects/c/3/c-impl/c/package.json"}} + {"event":{"id":33,"path":"/home/src/projects/c/3/c-impl/c/package.json"}} /home/src/tslibs/TS/Lib/lib.d.ts: - {"event":{"id":3,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"}} + {"event":{"id":10,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"}} FsWatches:: /home/src/projects/a/1/a-impl/a/lib: *new* {"event":{"id":30,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}} /home/src/projects/c/3/c-impl/c/lib: *new* - {"event":{"id":31,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}} + {"event":{"id":34,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}} FsWatchesRecursive:: /home/src/projects/a/1/a-impl/a/lib/node_modules: *new* - {"event":{"id":32,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true}} + {"event":{"id":31,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true}} /home/src/projects/a/1/a-impl/a/node_modules: *new* - {"event":{"id":33,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true}} + {"event":{"id":32,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true}} /home/src/projects/b/2/b-impl/b/node_modules: - {"event":{"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true}} + {"event":{"id":3,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true}} /home/src/projects/b/2/b-impl/b/node_modules/@types: {"event":{"id":11,"path":"/home/src/projects/b/2/b-impl/b/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/b/2/b-impl/b/src: diff --git a/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-MacOs.js b/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-MacOs.js index 7f8a2caccf775..600c200d518cf 100644 --- a/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-MacOs.js +++ b/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-MacOs.js @@ -126,7 +126,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Config: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Config: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/b/2/b-impl/b/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations @@ -142,6 +141,7 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/@types 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/@types 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules/@types 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Type roots @@ -829,16 +829,16 @@ Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/index.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/a.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/a.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations @@ -1539,14 +1539,14 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/project Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/b/2/b-impl/b/tsconfig.json projectStateVersion: 3 projectProgramVersion: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/b/2/b-impl/b/tsconfig.json' (Configured) @@ -2036,13 +2036,13 @@ Info seq [hh:mm:ss:mss] Running: /home/src/projects/b/2/b-impl/b/tsconfig.json Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/b/2/b-impl/b/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations diff --git a/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-Windows-canUseWatchEvents.js b/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-Windows-canUseWatchEvents.js index 1d34cc8c3710a..c0cb890ae3593 100644 --- a/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-Windows-canUseWatchEvents.js +++ b/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-Windows-canUseWatchEvents.js @@ -150,18 +150,6 @@ Info seq [hh:mm:ss:mss] event: Custom watchDirectory:: Added:: {"id":2,"path":"/home/src/projects/b/2/b-impl/b/src","recursive":true,"ignoreUpdate":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Config: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/b/2/b-impl/b/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] event: - { - "seq": 0, - "type": "event", - "event": "createFileWatcher", - "body": { - "id": 3, - "path": "/home/src/tslibs/TS/Lib/lib.d.ts" - } - } -Custom watchFile:: Added:: {"id":3,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"} Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations @@ -171,12 +159,12 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createDirectoryWatcher", "body": { - "id": 4, + "id": 3, "path": "/home/src/projects/b/2/b-impl/b/node_modules", "recursive": true } } -Custom watchDirectory:: Added:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true} +Custom watchDirectory:: Added:: {"id":3,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: @@ -185,13 +173,13 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createDirectoryWatcher", "body": { - "id": 5, + "id": 4, "path": "/home/src/projects/b/2/b-impl/b/node_modules/a", "recursive": true, "ignoreUpdate": true } } -Custom watchDirectory:: Added:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true} +Custom watchDirectory:: Added:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: @@ -200,12 +188,12 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createDirectoryWatcher", "body": { - "id": 6, + "id": 5, "path": "/home/src/projects/b/2/b-impl/node_modules", "recursive": true } } -Custom watchDirectory:: Added:: {"id":6,"path":"/home/src/projects/b/2/b-impl/node_modules","recursive":true} +Custom watchDirectory:: Added:: {"id":5,"path":"/home/src/projects/b/2/b-impl/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: @@ -214,12 +202,12 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createDirectoryWatcher", "body": { - "id": 7, + "id": 6, "path": "/home/src/projects/b/2/node_modules", "recursive": true } } -Custom watchDirectory:: Added:: {"id":7,"path":"/home/src/projects/b/2/node_modules","recursive":true} +Custom watchDirectory:: Added:: {"id":6,"path":"/home/src/projects/b/2/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: @@ -228,12 +216,12 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createDirectoryWatcher", "body": { - "id": 8, + "id": 7, "path": "/home/src/projects/b/node_modules", "recursive": true } } -Custom watchDirectory:: Added:: {"id":8,"path":"/home/src/projects/b/node_modules","recursive":true} +Custom watchDirectory:: Added:: {"id":7,"path":"/home/src/projects/b/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: @@ -242,12 +230,12 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createDirectoryWatcher", "body": { - "id": 9, + "id": 8, "path": "/home/src/projects/node_modules", "recursive": true } } -Custom watchDirectory:: Added:: {"id":9,"path":"/home/src/projects/node_modules","recursive":true} +Custom watchDirectory:: Added:: {"id":8,"path":"/home/src/projects/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] event: @@ -256,11 +244,23 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "createFileWatcher", "body": { - "id": 10, + "id": 9, "path": "/home/src/projects/a/1/a-impl/a/package.json" } } -Custom watchFile:: Added:: {"id":10,"path":"/home/src/projects/a/1/a-impl/a/package.json"} +Custom watchFile:: Added:: {"id":9,"path":"/home/src/projects/a/1/a-impl/a/package.json"} +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "createFileWatcher", + "body": { + "id": 10, + "path": "/home/src/tslibs/TS/Lib/lib.d.ts" + } + } +Custom watchFile:: Added:: {"id":10,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"} Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/@types 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] event: { @@ -434,35 +434,35 @@ After request PolledWatches:: /home/src/projects/a/1/a-impl/a/package.json: *new* - {"event":{"id":10,"path":"/home/src/projects/a/1/a-impl/a/package.json"}} + {"event":{"id":9,"path":"/home/src/projects/a/1/a-impl/a/package.json"}} /home/src/projects/b/2/b-impl/b/tsconfig.json: *new* {"event":{"id":1,"path":"/home/src/projects/b/2/b-impl/b/tsconfig.json"}} /home/src/tslibs/TS/Lib/lib.d.ts: *new* - {"event":{"id":3,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"}} + {"event":{"id":10,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"}} FsWatchesRecursive:: /home/src/projects/b/2/b-impl/b/node_modules: *new* - {"event":{"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true}} + {"event":{"id":3,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true}} /home/src/projects/b/2/b-impl/b/node_modules/@types: *new* {"event":{"id":11,"path":"/home/src/projects/b/2/b-impl/b/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/b/2/b-impl/b/node_modules/a: *new* - {"event":{"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}} + {"event":{"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}} /home/src/projects/b/2/b-impl/b/src: *new* {"event":{"id":2,"path":"/home/src/projects/b/2/b-impl/b/src","recursive":true,"ignoreUpdate":true}} /home/src/projects/b/2/b-impl/node_modules: *new* - {"event":{"id":6,"path":"/home/src/projects/b/2/b-impl/node_modules","recursive":true}} + {"event":{"id":5,"path":"/home/src/projects/b/2/b-impl/node_modules","recursive":true}} /home/src/projects/b/2/b-impl/node_modules/@types: *new* {"event":{"id":12,"path":"/home/src/projects/b/2/b-impl/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/b/2/node_modules: *new* - {"event":{"id":7,"path":"/home/src/projects/b/2/node_modules","recursive":true}} + {"event":{"id":6,"path":"/home/src/projects/b/2/node_modules","recursive":true}} /home/src/projects/b/2/node_modules/@types: *new* {"event":{"id":13,"path":"/home/src/projects/b/2/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/b/node_modules: *new* - {"event":{"id":8,"path":"/home/src/projects/b/node_modules","recursive":true}} + {"event":{"id":7,"path":"/home/src/projects/b/node_modules","recursive":true}} /home/src/projects/b/node_modules/@types: *new* {"event":{"id":14,"path":"/home/src/projects/b/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/node_modules: *new* - {"event":{"id":9,"path":"/home/src/projects/node_modules","recursive":true}} + {"event":{"id":8,"path":"/home/src/projects/node_modules","recursive":true}} /home/src/projects/node_modules/@types: *new* {"event":{"id":15,"path":"/home/src/projects/node_modules/@types","recursive":true,"ignoreUpdate":true}} @@ -861,26 +861,26 @@ Info seq [hh:mm:ss:mss] event: After running Immedidate callback:: count: 0 Build dependencies -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib created -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib updated -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/a.js created -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/a.js updated -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib updated -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/a.d.ts created -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/a.d.ts updated -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib updated -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/index.js created -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/index.js updated -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib updated -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/index.d.ts created -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/index.d.ts updated -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib updated -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/tsconfig.tsbuildinfo created -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/tsconfig.tsbuildinfo updated -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib updated -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt created -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt updated -Custom watchDirectory:: Triggered Ignored:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib updated +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib created +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib updated +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/a.js created +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/a.js updated +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib updated +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/a.d.ts created +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/a.d.ts updated +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib updated +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/index.js created +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/index.js updated +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib updated +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/index.d.ts created +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/index.d.ts updated +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib updated +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/tsconfig.tsbuildinfo created +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/tsconfig.tsbuildinfo updated +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib updated +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt created +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt updated +Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib updated Before request //// [/home/src/projects/c/3/c-impl/c/lib/c.js] "use strict"; @@ -985,7 +985,7 @@ Info seq [hh:mm:ss:mss] request: { "command": "watchChange", "arguments": { - "id": 5, + "id": 4, "created": [ "/home/src/projects/b/2/b-impl/b/node_modules/a/lib", "/home/src/projects/b/2/b-impl/b/node_modules/a/lib/a.js", @@ -1077,46 +1077,47 @@ Info seq [hh:mm:ss:mss] event: } Custom watchDirectory:: Added:: {"id":17,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/a.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", - "event": "createFileWatcher", + "event": "createDirectoryWatcher", "body": { "id": 18, - "path": "/home/src/projects/a/1/a-impl/a/lib/a.d.ts" + "path": "/home/src/projects/a/1/a-impl/a/lib/node_modules", + "recursive": true } } -Custom watchFile:: Added:: {"id":18,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"} -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 500 undefined WatchType: Closed Script info +Custom watchDirectory:: Added:: {"id":18,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", - "event": "createFileWatcher", + "event": "createDirectoryWatcher", "body": { "id": 19, - "path": "/home/src/projects/c/3/c-impl/c/lib/index.d.ts" + "path": "/home/src/projects/a/1/a-impl/a/node_modules", + "recursive": true } } -Custom watchFile:: Added:: {"id":19,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"} -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Added:: {"id":19,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", - "event": "createDirectoryWatcher", + "event": "createFileWatcher", "body": { "id": 20, - "path": "/home/src/projects/c/3/c-impl/c/lib", - "recursive": false, - "ignoreUpdate": true + "path": "/home/src/projects/c/3/c-impl/c/package.json" } } -Custom watchDirectory:: Added:: {"id":20,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 500 undefined WatchType: Closed Script info +Custom watchFile:: Added:: {"id":20,"path":"/home/src/projects/c/3/c-impl/c/package.json"} +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/a.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -1124,25 +1125,23 @@ Info seq [hh:mm:ss:mss] event: "event": "createFileWatcher", "body": { "id": 21, - "path": "/home/src/projects/c/3/c-impl/c/lib/c.d.ts" + "path": "/home/src/projects/a/1/a-impl/a/lib/a.d.ts" } } -Custom watchFile:: Added:: {"id":21,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"} -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchFile:: Added:: {"id":21,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"} +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", - "event": "createDirectoryWatcher", + "event": "createFileWatcher", "body": { "id": 22, - "path": "/home/src/projects/a/1/a-impl/a/lib/node_modules", - "recursive": true + "path": "/home/src/projects/c/3/c-impl/c/lib/index.d.ts" } } -Custom watchDirectory:: Added:: {"id":22,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchFile:: Added:: {"id":22,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"} +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -1150,13 +1149,14 @@ Info seq [hh:mm:ss:mss] event: "event": "createDirectoryWatcher", "body": { "id": 23, - "path": "/home/src/projects/a/1/a-impl/a/node_modules", - "recursive": true + "path": "/home/src/projects/c/3/c-impl/c/lib", + "recursive": false, + "ignoreUpdate": true } } -Custom watchDirectory:: Added:: {"id":23,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution +Custom watchDirectory:: Added:: {"id":23,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -1164,10 +1164,10 @@ Info seq [hh:mm:ss:mss] event: "event": "createFileWatcher", "body": { "id": 24, - "path": "/home/src/projects/c/3/c-impl/c/package.json" + "path": "/home/src/projects/c/3/c-impl/c/lib/c.d.ts" } } -Custom watchFile:: Added:: {"id":24,"path":"/home/src/projects/c/3/c-impl/c/package.json"} +Custom watchFile:: Added:: {"id":24,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"} Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { @@ -1175,10 +1175,10 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "closeFileWatcher", "body": { - "id": 5 + "id": 4 } } -Custom watchDirectory:: Close:: {"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true} +Custom watchDirectory:: Close:: {"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: @@ -1187,10 +1187,10 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "closeFileWatcher", "body": { - "id": 6 + "id": 5 } } -Custom watchDirectory:: Close:: {"id":6,"path":"/home/src/projects/b/2/b-impl/node_modules","recursive":true} +Custom watchDirectory:: Close:: {"id":5,"path":"/home/src/projects/b/2/b-impl/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: @@ -1199,10 +1199,10 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "closeFileWatcher", "body": { - "id": 7 + "id": 6 } } -Custom watchDirectory:: Close:: {"id":7,"path":"/home/src/projects/b/2/node_modules","recursive":true} +Custom watchDirectory:: Close:: {"id":6,"path":"/home/src/projects/b/2/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: @@ -1211,10 +1211,10 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "closeFileWatcher", "body": { - "id": 8 + "id": 7 } } -Custom watchDirectory:: Close:: {"id":8,"path":"/home/src/projects/b/node_modules","recursive":true} +Custom watchDirectory:: Close:: {"id":7,"path":"/home/src/projects/b/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: @@ -1223,10 +1223,10 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "closeFileWatcher", "body": { - "id": 9 + "id": 8 } } -Custom watchDirectory:: Close:: {"id":9,"path":"/home/src/projects/node_modules","recursive":true} +Custom watchDirectory:: Close:: {"id":8,"path":"/home/src/projects/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/b/2/b-impl/b/tsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/b/2/b-impl/b/tsconfig.json' (Configured) @@ -1286,35 +1286,35 @@ After running Timeout callback:: count: 0 PolledWatches:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts: *new* - {"event":{"id":18,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}} + {"event":{"id":21,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}} /home/src/projects/a/1/a-impl/a/lib/index.d.ts: *new* {"event":{"id":16,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"}} /home/src/projects/a/1/a-impl/a/package.json: - {"event":{"id":10,"path":"/home/src/projects/a/1/a-impl/a/package.json"}} + {"event":{"id":9,"path":"/home/src/projects/a/1/a-impl/a/package.json"}} /home/src/projects/b/2/b-impl/b/tsconfig.json: {"event":{"id":1,"path":"/home/src/projects/b/2/b-impl/b/tsconfig.json"}} /home/src/projects/c/3/c-impl/c/lib/c.d.ts: *new* - {"event":{"id":21,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}} + {"event":{"id":24,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}} /home/src/projects/c/3/c-impl/c/lib/index.d.ts: *new* - {"event":{"id":19,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}} + {"event":{"id":22,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}} /home/src/projects/c/3/c-impl/c/package.json: *new* - {"event":{"id":24,"path":"/home/src/projects/c/3/c-impl/c/package.json"}} + {"event":{"id":20,"path":"/home/src/projects/c/3/c-impl/c/package.json"}} /home/src/tslibs/TS/Lib/lib.d.ts: - {"event":{"id":3,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"}} + {"event":{"id":10,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"}} FsWatches:: /home/src/projects/a/1/a-impl/a/lib: *new* {"event":{"id":17,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}} /home/src/projects/c/3/c-impl/c/lib: *new* - {"event":{"id":20,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}} + {"event":{"id":23,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}} FsWatchesRecursive:: /home/src/projects/a/1/a-impl/a/lib/node_modules: *new* - {"event":{"id":22,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true}} + {"event":{"id":18,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true}} /home/src/projects/a/1/a-impl/a/node_modules: *new* - {"event":{"id":23,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true}} + {"event":{"id":19,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true}} /home/src/projects/b/2/b-impl/b/node_modules: - {"event":{"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true}} + {"event":{"id":3,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true}} /home/src/projects/b/2/b-impl/b/node_modules/@types: {"event":{"id":11,"path":"/home/src/projects/b/2/b-impl/b/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/b/2/b-impl/b/src: @@ -1330,15 +1330,15 @@ FsWatchesRecursive:: FsWatchesRecursive *deleted*:: /home/src/projects/b/2/b-impl/b/node_modules/a: - {"event":{"id":5,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}} + {"event":{"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}} /home/src/projects/b/2/b-impl/node_modules: - {"event":{"id":6,"path":"/home/src/projects/b/2/b-impl/node_modules","recursive":true}} + {"event":{"id":5,"path":"/home/src/projects/b/2/b-impl/node_modules","recursive":true}} /home/src/projects/b/2/node_modules: - {"event":{"id":7,"path":"/home/src/projects/b/2/node_modules","recursive":true}} + {"event":{"id":6,"path":"/home/src/projects/b/2/node_modules","recursive":true}} /home/src/projects/b/node_modules: - {"event":{"id":8,"path":"/home/src/projects/b/node_modules","recursive":true}} + {"event":{"id":7,"path":"/home/src/projects/b/node_modules","recursive":true}} /home/src/projects/node_modules: - {"event":{"id":9,"path":"/home/src/projects/node_modules","recursive":true}} + {"event":{"id":8,"path":"/home/src/projects/node_modules","recursive":true}} Projects:: /home/src/projects/b/2/b-impl/b/tsconfig.json (Configured) *changed* @@ -1714,15 +1714,15 @@ Info seq [hh:mm:ss:mss] event: After running Immedidate callback:: count: 0 Clean dependencies build -Custom watchFile:: Triggered:: {"id":21,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/c.d.ts deleted -Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/c.d.ts deleted -Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/c.js deleted -Custom watchFile:: Triggered:: {"id":19,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/index.d.ts deleted -Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/index.d.ts deleted -Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/index.js deleted -Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo deleted -Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo.readable.baseline.txt deleted -Custom watchFile:: Triggered:: {"id":18,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts deleted +Custom watchFile:: Triggered:: {"id":24,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/c.d.ts deleted +Custom watchDirectory:: Triggered Ignored:: {"id":23,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/c.d.ts deleted +Custom watchDirectory:: Triggered Ignored:: {"id":23,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/c.js deleted +Custom watchFile:: Triggered:: {"id":22,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/index.d.ts deleted +Custom watchDirectory:: Triggered Ignored:: {"id":23,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/index.d.ts deleted +Custom watchDirectory:: Triggered Ignored:: {"id":23,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/index.js deleted +Custom watchDirectory:: Triggered Ignored:: {"id":23,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo deleted +Custom watchDirectory:: Triggered Ignored:: {"id":23,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo.readable.baseline.txt deleted +Custom watchFile:: Triggered:: {"id":21,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts deleted Custom watchDirectory:: Triggered Ignored:: {"id":17,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts deleted Custom watchDirectory:: Triggered Ignored:: {"id":17,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/a/1/a-impl/a/lib/a.js deleted Custom watchFile:: Triggered:: {"id":16,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"}:: /home/src/projects/a/1/a-impl/a/lib/index.d.ts deleted @@ -1749,13 +1749,13 @@ Info seq [hh:mm:ss:mss] request: "command": "watchChange", "arguments": [ { - "id": 21, + "id": 24, "deleted": [ "/home/src/projects/c/3/c-impl/c/lib/c.d.ts" ] }, { - "id": 20, + "id": 23, "deleted": [ "/home/src/projects/c/3/c-impl/c/lib/c.d.ts", "/home/src/projects/c/3/c-impl/c/lib/c.js", @@ -1766,13 +1766,13 @@ Info seq [hh:mm:ss:mss] request: ] }, { - "id": 19, + "id": 22, "deleted": [ "/home/src/projects/c/3/c-impl/c/lib/index.d.ts" ] }, { - "id": 18, + "id": 21, "deleted": [ "/home/src/projects/a/1/a-impl/a/lib/a.d.ts" ] @@ -1976,54 +1976,54 @@ Info seq [hh:mm:ss:mss] event: } Custom watchDirectory:: Added:: {"id":29,"path":"/home/src/projects/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", "event": "closeFileWatcher", "body": { - "id": 17 + "id": 23 } } -Custom watchDirectory:: Close:: {"id":17,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Close:: {"id":23,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", "event": "closeFileWatcher", "body": { - "id": 20 + "id": 17 } } -Custom watchDirectory:: Close:: {"id":20,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Close:: {"id":17,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", "event": "closeFileWatcher", "body": { - "id": 22 + "id": 19 } } -Custom watchDirectory:: Close:: {"id":22,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Close:: {"id":19,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", "event": "closeFileWatcher", "body": { - "id": 23 + "id": 18 } } -Custom watchDirectory:: Close:: {"id":23,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Close:: {"id":18,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] event: { @@ -2031,10 +2031,10 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "closeFileWatcher", "body": { - "id": 24 + "id": 20 } } -Custom watchFile:: Close:: {"id":24,"path":"/home/src/projects/c/3/c-impl/c/package.json"} +Custom watchFile:: Close:: {"id":20,"path":"/home/src/projects/c/3/c-impl/c/package.json"} Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/b/2/b-impl/b/tsconfig.json projectStateVersion: 3 projectProgramVersion: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/b/2/b-impl/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -2081,33 +2081,33 @@ After running Timeout callback:: count: 0 PolledWatches:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts: - {"event":{"id":18,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}} + {"event":{"id":21,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}} /home/src/projects/a/1/a-impl/a/lib/index.d.ts: {"event":{"id":16,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"}} /home/src/projects/a/1/a-impl/a/package.json: - {"event":{"id":10,"path":"/home/src/projects/a/1/a-impl/a/package.json"}} + {"event":{"id":9,"path":"/home/src/projects/a/1/a-impl/a/package.json"}} /home/src/projects/b/2/b-impl/b/tsconfig.json: {"event":{"id":1,"path":"/home/src/projects/b/2/b-impl/b/tsconfig.json"}} /home/src/projects/c/3/c-impl/c/lib/c.d.ts: - {"event":{"id":21,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}} + {"event":{"id":24,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}} /home/src/projects/c/3/c-impl/c/lib/index.d.ts: - {"event":{"id":19,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}} + {"event":{"id":22,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}} /home/src/tslibs/TS/Lib/lib.d.ts: - {"event":{"id":3,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"}} + {"event":{"id":10,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"}} PolledWatches *deleted*:: /home/src/projects/c/3/c-impl/c/package.json: - {"event":{"id":24,"path":"/home/src/projects/c/3/c-impl/c/package.json"}} + {"event":{"id":20,"path":"/home/src/projects/c/3/c-impl/c/package.json"}} FsWatches *deleted*:: /home/src/projects/a/1/a-impl/a/lib: {"event":{"id":17,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}} /home/src/projects/c/3/c-impl/c/lib: - {"event":{"id":20,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}} + {"event":{"id":23,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}} FsWatchesRecursive:: /home/src/projects/b/2/b-impl/b/node_modules: - {"event":{"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true}} + {"event":{"id":3,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true}} /home/src/projects/b/2/b-impl/b/node_modules/@types: {"event":{"id":11,"path":"/home/src/projects/b/2/b-impl/b/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/b/2/b-impl/b/node_modules/a: *new* @@ -2133,9 +2133,9 @@ FsWatchesRecursive:: FsWatchesRecursive *deleted*:: /home/src/projects/a/1/a-impl/a/lib/node_modules: - {"event":{"id":22,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true}} + {"event":{"id":18,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true}} /home/src/projects/a/1/a-impl/a/node_modules: - {"event":{"id":23,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true}} + {"event":{"id":19,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true}} Projects:: /home/src/projects/b/2/b-impl/b/tsconfig.json (Configured) *changed* @@ -2270,14 +2270,14 @@ Info seq [hh:mm:ss:mss] event: After running Immedidate callback:: count: 0 Build dependencies -Custom watchFile:: Triggered:: {"id":21,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/c.d.ts created -Custom watchFile:: Triggered:: {"id":19,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/index.d.ts created +Custom watchFile:: Triggered:: {"id":24,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/c.d.ts created +Custom watchFile:: Triggered:: {"id":22,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/index.d.ts created Custom watchDirectory:: Triggered Ignored:: {"id":25,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib created Custom watchDirectory:: Triggered Ignored:: {"id":25,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib updated Custom watchDirectory:: Triggered Ignored:: {"id":25,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/a.js created Custom watchDirectory:: Triggered Ignored:: {"id":25,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/a.js updated Custom watchDirectory:: Triggered Ignored:: {"id":25,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib updated -Custom watchFile:: Triggered:: {"id":18,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts created +Custom watchFile:: Triggered:: {"id":21,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts created Custom watchDirectory:: Triggered Ignored:: {"id":25,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/a.d.ts created Custom watchDirectory:: Triggered Ignored:: {"id":25,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/a.d.ts updated Custom watchDirectory:: Triggered Ignored:: {"id":25,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib updated @@ -2399,13 +2399,13 @@ Info seq [hh:mm:ss:mss] request: "command": "watchChange", "arguments": [ { - "id": 21, + "id": 24, "created": [ "/home/src/projects/c/3/c-impl/c/lib/c.d.ts" ] }, { - "id": 19, + "id": 22, "created": [ "/home/src/projects/c/3/c-impl/c/lib/index.d.ts" ] @@ -2423,7 +2423,7 @@ Info seq [hh:mm:ss:mss] request: ] }, { - "id": 18, + "id": 21, "created": [ "/home/src/projects/a/1/a-impl/a/lib/a.d.ts" ] @@ -2541,7 +2541,7 @@ Info seq [hh:mm:ss:mss] event: } Custom watchDirectory:: Added:: {"id":30,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -2549,14 +2549,13 @@ Info seq [hh:mm:ss:mss] event: "event": "createDirectoryWatcher", "body": { "id": 31, - "path": "/home/src/projects/c/3/c-impl/c/lib", - "recursive": false, - "ignoreUpdate": true + "path": "/home/src/projects/a/1/a-impl/a/lib/node_modules", + "recursive": true } } -Custom watchDirectory:: Added:: {"id":31,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Added:: {"id":31,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -2564,38 +2563,39 @@ Info seq [hh:mm:ss:mss] event: "event": "createDirectoryWatcher", "body": { "id": 32, - "path": "/home/src/projects/a/1/a-impl/a/lib/node_modules", + "path": "/home/src/projects/a/1/a-impl/a/node_modules", "recursive": true } } -Custom watchDirectory:: Added:: {"id":32,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Added:: {"id":32,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", - "event": "createDirectoryWatcher", + "event": "createFileWatcher", "body": { "id": 33, - "path": "/home/src/projects/a/1/a-impl/a/node_modules", - "recursive": true + "path": "/home/src/projects/c/3/c-impl/c/package.json" } } -Custom watchDirectory:: Added:: {"id":33,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution +Custom watchFile:: Added:: {"id":33,"path":"/home/src/projects/c/3/c-impl/c/package.json"} +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", - "event": "createFileWatcher", + "event": "createDirectoryWatcher", "body": { "id": 34, - "path": "/home/src/projects/c/3/c-impl/c/package.json" + "path": "/home/src/projects/c/3/c-impl/c/lib", + "recursive": false, + "ignoreUpdate": true } } -Custom watchFile:: Added:: {"id":34,"path":"/home/src/projects/c/3/c-impl/c/package.json"} +Custom watchDirectory:: Added:: {"id":34,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { @@ -2714,35 +2714,35 @@ After running Timeout callback:: count: 0 PolledWatches:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts: - {"event":{"id":18,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}} + {"event":{"id":21,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}} /home/src/projects/a/1/a-impl/a/lib/index.d.ts: {"event":{"id":16,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"}} /home/src/projects/a/1/a-impl/a/package.json: - {"event":{"id":10,"path":"/home/src/projects/a/1/a-impl/a/package.json"}} + {"event":{"id":9,"path":"/home/src/projects/a/1/a-impl/a/package.json"}} /home/src/projects/b/2/b-impl/b/tsconfig.json: {"event":{"id":1,"path":"/home/src/projects/b/2/b-impl/b/tsconfig.json"}} /home/src/projects/c/3/c-impl/c/lib/c.d.ts: - {"event":{"id":21,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}} + {"event":{"id":24,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}} /home/src/projects/c/3/c-impl/c/lib/index.d.ts: - {"event":{"id":19,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}} + {"event":{"id":22,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}} /home/src/projects/c/3/c-impl/c/package.json: *new* - {"event":{"id":34,"path":"/home/src/projects/c/3/c-impl/c/package.json"}} + {"event":{"id":33,"path":"/home/src/projects/c/3/c-impl/c/package.json"}} /home/src/tslibs/TS/Lib/lib.d.ts: - {"event":{"id":3,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"}} + {"event":{"id":10,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"}} FsWatches:: /home/src/projects/a/1/a-impl/a/lib: *new* {"event":{"id":30,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}} /home/src/projects/c/3/c-impl/c/lib: *new* - {"event":{"id":31,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}} + {"event":{"id":34,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}} FsWatchesRecursive:: /home/src/projects/a/1/a-impl/a/lib/node_modules: *new* - {"event":{"id":32,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true}} + {"event":{"id":31,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true}} /home/src/projects/a/1/a-impl/a/node_modules: *new* - {"event":{"id":33,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true}} + {"event":{"id":32,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true}} /home/src/projects/b/2/b-impl/b/node_modules: - {"event":{"id":4,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true}} + {"event":{"id":3,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true}} /home/src/projects/b/2/b-impl/b/node_modules/@types: {"event":{"id":11,"path":"/home/src/projects/b/2/b-impl/b/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/b/2/b-impl/b/src: diff --git a/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-Windows.js b/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-Windows.js index 3914e813c5074..7dab0e911a88b 100644 --- a/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-Windows.js +++ b/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-Windows.js @@ -126,7 +126,6 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Config: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Config: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/b/2/b-impl/b/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations @@ -142,6 +141,7 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/@types 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/@types 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules/@types 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Type roots @@ -829,16 +829,16 @@ Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/index.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/a.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/a.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations @@ -1485,14 +1485,14 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/project Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/b/2/b-impl/b/tsconfig.json projectStateVersion: 3 projectProgramVersion: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/b/2/b-impl/b/tsconfig.json' (Configured) @@ -1920,13 +1920,13 @@ Info seq [hh:mm:ss:mss] Running: /home/src/projects/b/2/b-impl/b/tsconfig.json Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/b/2/b-impl/b/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations diff --git a/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-built-Linux-canUseWatchEvents.js b/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-built-Linux-canUseWatchEvents.js index 27319b19ef171..22f9d99d73c26 100644 --- a/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-built-Linux-canUseWatchEvents.js +++ b/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-built-Linux-canUseWatchEvents.js @@ -248,34 +248,35 @@ Info seq [hh:mm:ss:mss] event: Custom watchDirectory:: Added:: {"id":2,"path":"/home/src/projects/b/2/b-impl/b/src","recursive":true,"ignoreUpdate":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Config: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/b/2/b-impl/b/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/index.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", - "event": "createFileWatcher", + "event": "createDirectoryWatcher", "body": { "id": 3, - "path": "/home/src/projects/a/1/a-impl/a/lib/index.d.ts" + "path": "/home/src/projects/b/2/b-impl/b/node_modules", + "recursive": true } } -Custom watchFile:: Added:: {"id":3,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"} -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Added:: {"id":3,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", - "event": "createDirectoryWatcher", + "event": "createFileWatcher", "body": { "id": 4, - "path": "/home/src/projects/a/1/a-impl/a/lib", - "recursive": false, - "ignoreUpdate": true + "path": "/home/src/projects/a/1/a-impl/a/package.json" } } -Custom watchDirectory:: Added:: {"id":4,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/a.d.ts 500 undefined WatchType: Closed Script info +Custom watchFile:: Added:: {"id":4,"path":"/home/src/projects/a/1/a-impl/a/package.json"} +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/index.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -283,23 +284,26 @@ Info seq [hh:mm:ss:mss] event: "event": "createFileWatcher", "body": { "id": 5, - "path": "/home/src/projects/a/1/a-impl/a/lib/a.d.ts" + "path": "/home/src/projects/a/1/a-impl/a/lib/index.d.ts" } } -Custom watchFile:: Added:: {"id":5,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"} -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 500 undefined WatchType: Closed Script info +Custom watchFile:: Added:: {"id":5,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"} +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", - "event": "createFileWatcher", + "event": "createDirectoryWatcher", "body": { "id": 6, - "path": "/home/src/projects/c/3/c-impl/c/lib/index.d.ts" + "path": "/home/src/projects/a/1/a-impl/a/lib", + "recursive": false, + "ignoreUpdate": true } } -Custom watchFile:: Added:: {"id":6,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"} -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Added:: {"id":6,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -307,26 +311,27 @@ Info seq [hh:mm:ss:mss] event: "event": "createDirectoryWatcher", "body": { "id": 7, - "path": "/home/src/projects/c/3/c-impl/c/lib", - "recursive": false, - "ignoreUpdate": true + "path": "/home/src/projects/a/1/a-impl/a/lib/node_modules", + "recursive": true } } -Custom watchDirectory:: Added:: {"id":7,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 500 undefined WatchType: Closed Script info +Custom watchDirectory:: Added:: {"id":7,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", - "event": "createFileWatcher", + "event": "createDirectoryWatcher", "body": { "id": 8, - "path": "/home/src/projects/c/3/c-impl/c/lib/c.d.ts" + "path": "/home/src/projects/a/1/a-impl/a/node_modules", + "recursive": true } } -Custom watchFile:: Added:: {"id":8,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"} -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info +Custom watchDirectory:: Added:: {"id":8,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -334,27 +339,23 @@ Info seq [hh:mm:ss:mss] event: "event": "createFileWatcher", "body": { "id": 9, - "path": "/home/src/tslibs/TS/Lib/lib.d.ts" + "path": "/home/src/projects/c/3/c-impl/c/package.json" } } -Custom watchFile:: Added:: {"id":9,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"} -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchFile:: Added:: {"id":9,"path":"/home/src/projects/c/3/c-impl/c/package.json"} +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/a.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", - "event": "createDirectoryWatcher", + "event": "createFileWatcher", "body": { "id": 10, - "path": "/home/src/projects/b/2/b-impl/b/node_modules", - "recursive": true + "path": "/home/src/projects/a/1/a-impl/a/lib/a.d.ts" } } -Custom watchDirectory:: Added:: {"id":10,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution +Custom watchFile:: Added:: {"id":10,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"} +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -362,11 +363,11 @@ Info seq [hh:mm:ss:mss] event: "event": "createFileWatcher", "body": { "id": 11, - "path": "/home/src/projects/a/1/a-impl/a/package.json" + "path": "/home/src/projects/c/3/c-impl/c/lib/index.d.ts" } } -Custom watchFile:: Added:: {"id":11,"path":"/home/src/projects/a/1/a-impl/a/package.json"} -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchFile:: Added:: {"id":11,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"} +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -374,27 +375,26 @@ Info seq [hh:mm:ss:mss] event: "event": "createDirectoryWatcher", "body": { "id": 12, - "path": "/home/src/projects/a/1/a-impl/a/lib/node_modules", - "recursive": true + "path": "/home/src/projects/c/3/c-impl/c/lib", + "recursive": false, + "ignoreUpdate": true } } -Custom watchDirectory:: Added:: {"id":12,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Added:: {"id":12,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", - "event": "createDirectoryWatcher", + "event": "createFileWatcher", "body": { "id": 13, - "path": "/home/src/projects/a/1/a-impl/a/node_modules", - "recursive": true + "path": "/home/src/projects/c/3/c-impl/c/lib/c.d.ts" } } -Custom watchDirectory:: Added:: {"id":13,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution +Custom watchFile:: Added:: {"id":13,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"} +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -402,10 +402,10 @@ Info seq [hh:mm:ss:mss] event: "event": "createFileWatcher", "body": { "id": 14, - "path": "/home/src/projects/c/3/c-impl/c/package.json" + "path": "/home/src/tslibs/TS/Lib/lib.d.ts" } } -Custom watchFile:: Added:: {"id":14,"path":"/home/src/projects/c/3/c-impl/c/package.json"} +Custom watchFile:: Added:: {"id":14,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"} Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/@types 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] event: { @@ -591,35 +591,35 @@ After request PolledWatches:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts: *new* - {"event":{"id":5,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}} + {"event":{"id":10,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}} /home/src/projects/a/1/a-impl/a/lib/index.d.ts: *new* - {"event":{"id":3,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"}} + {"event":{"id":5,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"}} /home/src/projects/a/1/a-impl/a/package.json: *new* - {"event":{"id":11,"path":"/home/src/projects/a/1/a-impl/a/package.json"}} + {"event":{"id":4,"path":"/home/src/projects/a/1/a-impl/a/package.json"}} /home/src/projects/b/2/b-impl/b/tsconfig.json: *new* {"event":{"id":1,"path":"/home/src/projects/b/2/b-impl/b/tsconfig.json"}} /home/src/projects/c/3/c-impl/c/lib/c.d.ts: *new* - {"event":{"id":8,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}} + {"event":{"id":13,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}} /home/src/projects/c/3/c-impl/c/lib/index.d.ts: *new* - {"event":{"id":6,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}} + {"event":{"id":11,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}} /home/src/projects/c/3/c-impl/c/package.json: *new* - {"event":{"id":14,"path":"/home/src/projects/c/3/c-impl/c/package.json"}} + {"event":{"id":9,"path":"/home/src/projects/c/3/c-impl/c/package.json"}} /home/src/tslibs/TS/Lib/lib.d.ts: *new* - {"event":{"id":9,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"}} + {"event":{"id":14,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"}} FsWatches:: /home/src/projects/a/1/a-impl/a/lib: *new* - {"event":{"id":4,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}} + {"event":{"id":6,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}} /home/src/projects/c/3/c-impl/c/lib: *new* - {"event":{"id":7,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}} + {"event":{"id":12,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}} FsWatchesRecursive:: /home/src/projects/a/1/a-impl/a/lib/node_modules: *new* - {"event":{"id":12,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true}} + {"event":{"id":7,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true}} /home/src/projects/a/1/a-impl/a/node_modules: *new* - {"event":{"id":13,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true}} + {"event":{"id":8,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true}} /home/src/projects/b/2/b-impl/b/node_modules: *new* - {"event":{"id":10,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true}} + {"event":{"id":3,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true}} /home/src/projects/b/2/b-impl/b/node_modules/@types: *new* {"event":{"id":15,"path":"/home/src/projects/b/2/b-impl/b/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/b/2/b-impl/b/src: *new* @@ -1234,22 +1234,22 @@ Info seq [hh:mm:ss:mss] event: After running Immedidate callback:: count: 0 Clean dependencies build -Custom watchFile:: Triggered:: {"id":8,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/c.d.ts deleted -Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/c.d.ts deleted -Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/c.js deleted -Custom watchFile:: Triggered:: {"id":6,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/index.d.ts deleted -Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/index.d.ts deleted -Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/index.js deleted -Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo deleted -Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo.readable.baseline.txt deleted -Custom watchFile:: Triggered:: {"id":5,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts deleted -Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts deleted -Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/a/1/a-impl/a/lib/a.js deleted -Custom watchFile:: Triggered:: {"id":3,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"}:: /home/src/projects/a/1/a-impl/a/lib/index.d.ts deleted -Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/a/1/a-impl/a/lib/index.d.ts deleted -Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/a/1/a-impl/a/lib/index.js deleted -Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo deleted -Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt deleted +Custom watchFile:: Triggered:: {"id":13,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/c.d.ts deleted +Custom watchDirectory:: Triggered Ignored:: {"id":12,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/c.d.ts deleted +Custom watchDirectory:: Triggered Ignored:: {"id":12,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/c.js deleted +Custom watchFile:: Triggered:: {"id":11,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/index.d.ts deleted +Custom watchDirectory:: Triggered Ignored:: {"id":12,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/index.d.ts deleted +Custom watchDirectory:: Triggered Ignored:: {"id":12,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/index.js deleted +Custom watchDirectory:: Triggered Ignored:: {"id":12,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo deleted +Custom watchDirectory:: Triggered Ignored:: {"id":12,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo.readable.baseline.txt deleted +Custom watchFile:: Triggered:: {"id":10,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts deleted +Custom watchDirectory:: Triggered Ignored:: {"id":6,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts deleted +Custom watchDirectory:: Triggered Ignored:: {"id":6,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/a/1/a-impl/a/lib/a.js deleted +Custom watchFile:: Triggered:: {"id":5,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"}:: /home/src/projects/a/1/a-impl/a/lib/index.d.ts deleted +Custom watchDirectory:: Triggered Ignored:: {"id":6,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/a/1/a-impl/a/lib/index.d.ts deleted +Custom watchDirectory:: Triggered Ignored:: {"id":6,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/a/1/a-impl/a/lib/index.js deleted +Custom watchDirectory:: Triggered Ignored:: {"id":6,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo deleted +Custom watchDirectory:: Triggered Ignored:: {"id":6,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt deleted Before request //// [/home/src/projects/c/3/c-impl/c/lib/c.js] deleted //// [/home/src/projects/c/3/c-impl/c/lib/c.d.ts] deleted @@ -1269,13 +1269,13 @@ Info seq [hh:mm:ss:mss] request: "command": "watchChange", "arguments": [ { - "id": 8, + "id": 13, "deleted": [ "/home/src/projects/c/3/c-impl/c/lib/c.d.ts" ] }, { - "id": 7, + "id": 12, "deleted": [ "/home/src/projects/c/3/c-impl/c/lib/c.d.ts", "/home/src/projects/c/3/c-impl/c/lib/c.js", @@ -1286,19 +1286,19 @@ Info seq [hh:mm:ss:mss] request: ] }, { - "id": 6, + "id": 11, "deleted": [ "/home/src/projects/c/3/c-impl/c/lib/index.d.ts" ] }, { - "id": 5, + "id": 10, "deleted": [ "/home/src/projects/a/1/a-impl/a/lib/a.d.ts" ] }, { - "id": 4, + "id": 6, "deleted": [ "/home/src/projects/a/1/a-impl/a/lib/a.d.ts", "/home/src/projects/a/1/a-impl/a/lib/a.js", @@ -1309,7 +1309,7 @@ Info seq [hh:mm:ss:mss] request: ] }, { - "id": 3, + "id": 5, "deleted": [ "/home/src/projects/a/1/a-impl/a/lib/index.d.ts" ] @@ -1497,54 +1497,54 @@ Info seq [hh:mm:ss:mss] event: } Custom watchDirectory:: Added:: {"id":24,"path":"/home/src/projects/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", "event": "closeFileWatcher", "body": { - "id": 4 + "id": 12 } } -Custom watchDirectory:: Close:: {"id":4,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Close:: {"id":12,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", "event": "closeFileWatcher", "body": { - "id": 7 + "id": 6 } } -Custom watchDirectory:: Close:: {"id":7,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Close:: {"id":6,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", "event": "closeFileWatcher", "body": { - "id": 12 + "id": 8 } } -Custom watchDirectory:: Close:: {"id":12,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Close:: {"id":8,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", "event": "closeFileWatcher", "body": { - "id": 13 + "id": 7 } } -Custom watchDirectory:: Close:: {"id":13,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Close:: {"id":7,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] event: { @@ -1552,10 +1552,10 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "closeFileWatcher", "body": { - "id": 14 + "id": 9 } } -Custom watchFile:: Close:: {"id":14,"path":"/home/src/projects/c/3/c-impl/c/package.json"} +Custom watchFile:: Close:: {"id":9,"path":"/home/src/projects/c/3/c-impl/c/package.json"} Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/b/2/b-impl/b/tsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/b/2/b-impl/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1602,33 +1602,33 @@ After running Timeout callback:: count: 0 PolledWatches:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts: - {"event":{"id":5,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}} + {"event":{"id":10,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}} /home/src/projects/a/1/a-impl/a/lib/index.d.ts: - {"event":{"id":3,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"}} + {"event":{"id":5,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"}} /home/src/projects/a/1/a-impl/a/package.json: - {"event":{"id":11,"path":"/home/src/projects/a/1/a-impl/a/package.json"}} + {"event":{"id":4,"path":"/home/src/projects/a/1/a-impl/a/package.json"}} /home/src/projects/b/2/b-impl/b/tsconfig.json: {"event":{"id":1,"path":"/home/src/projects/b/2/b-impl/b/tsconfig.json"}} /home/src/projects/c/3/c-impl/c/lib/c.d.ts: - {"event":{"id":8,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}} + {"event":{"id":13,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}} /home/src/projects/c/3/c-impl/c/lib/index.d.ts: - {"event":{"id":6,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}} + {"event":{"id":11,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}} /home/src/tslibs/TS/Lib/lib.d.ts: - {"event":{"id":9,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"}} + {"event":{"id":14,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"}} PolledWatches *deleted*:: /home/src/projects/c/3/c-impl/c/package.json: - {"event":{"id":14,"path":"/home/src/projects/c/3/c-impl/c/package.json"}} + {"event":{"id":9,"path":"/home/src/projects/c/3/c-impl/c/package.json"}} FsWatches *deleted*:: /home/src/projects/a/1/a-impl/a/lib: - {"event":{"id":4,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}} + {"event":{"id":6,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}} /home/src/projects/c/3/c-impl/c/lib: - {"event":{"id":7,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}} + {"event":{"id":12,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}} FsWatchesRecursive:: /home/src/projects/b/2/b-impl/b/node_modules: - {"event":{"id":10,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true}} + {"event":{"id":3,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true}} /home/src/projects/b/2/b-impl/b/node_modules/@types: {"event":{"id":15,"path":"/home/src/projects/b/2/b-impl/b/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/b/2/b-impl/b/node_modules/a: *new* @@ -1654,9 +1654,9 @@ FsWatchesRecursive:: FsWatchesRecursive *deleted*:: /home/src/projects/a/1/a-impl/a/lib/node_modules: - {"event":{"id":12,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true}} + {"event":{"id":7,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true}} /home/src/projects/a/1/a-impl/a/node_modules: - {"event":{"id":13,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true}} + {"event":{"id":8,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true}} Projects:: /home/src/projects/b/2/b-impl/b/tsconfig.json (Configured) *changed* @@ -1792,21 +1792,21 @@ Info seq [hh:mm:ss:mss] event: After running Immedidate callback:: count: 0 Build dependencies -Custom watchFile:: Triggered:: {"id":8,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/c.d.ts created -Custom watchFile:: Triggered:: {"id":6,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/index.d.ts created +Custom watchFile:: Triggered:: {"id":13,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/c.d.ts created +Custom watchFile:: Triggered:: {"id":11,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/index.d.ts created Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib created Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib updated Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/a.js created Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/a.js updated Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib updated -Custom watchFile:: Triggered:: {"id":5,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts created +Custom watchFile:: Triggered:: {"id":10,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts created Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/a.d.ts created Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/a.d.ts updated Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib updated Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/index.js created Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/index.js updated Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib updated -Custom watchFile:: Triggered:: {"id":3,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"}:: /home/src/projects/a/1/a-impl/a/lib/index.d.ts created +Custom watchFile:: Triggered:: {"id":5,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"}:: /home/src/projects/a/1/a-impl/a/lib/index.d.ts created Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/index.d.ts created Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/index.d.ts updated Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib updated @@ -1921,13 +1921,13 @@ Info seq [hh:mm:ss:mss] request: "command": "watchChange", "arguments": [ { - "id": 8, + "id": 13, "created": [ "/home/src/projects/c/3/c-impl/c/lib/c.d.ts" ] }, { - "id": 6, + "id": 11, "created": [ "/home/src/projects/c/3/c-impl/c/lib/index.d.ts" ] @@ -1945,13 +1945,13 @@ Info seq [hh:mm:ss:mss] request: ] }, { - "id": 5, + "id": 10, "created": [ "/home/src/projects/a/1/a-impl/a/lib/a.d.ts" ] }, { - "id": 3, + "id": 5, "created": [ "/home/src/projects/a/1/a-impl/a/lib/index.d.ts" ] @@ -2063,7 +2063,7 @@ Info seq [hh:mm:ss:mss] event: } Custom watchDirectory:: Added:: {"id":25,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -2071,14 +2071,13 @@ Info seq [hh:mm:ss:mss] event: "event": "createDirectoryWatcher", "body": { "id": 26, - "path": "/home/src/projects/c/3/c-impl/c/lib", - "recursive": false, - "ignoreUpdate": true + "path": "/home/src/projects/a/1/a-impl/a/lib/node_modules", + "recursive": true } } -Custom watchDirectory:: Added:: {"id":26,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Added:: {"id":26,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -2086,38 +2085,39 @@ Info seq [hh:mm:ss:mss] event: "event": "createDirectoryWatcher", "body": { "id": 27, - "path": "/home/src/projects/a/1/a-impl/a/lib/node_modules", + "path": "/home/src/projects/a/1/a-impl/a/node_modules", "recursive": true } } -Custom watchDirectory:: Added:: {"id":27,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Added:: {"id":27,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", - "event": "createDirectoryWatcher", + "event": "createFileWatcher", "body": { "id": 28, - "path": "/home/src/projects/a/1/a-impl/a/node_modules", - "recursive": true + "path": "/home/src/projects/c/3/c-impl/c/package.json" } } -Custom watchDirectory:: Added:: {"id":28,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution +Custom watchFile:: Added:: {"id":28,"path":"/home/src/projects/c/3/c-impl/c/package.json"} +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", - "event": "createFileWatcher", + "event": "createDirectoryWatcher", "body": { "id": 29, - "path": "/home/src/projects/c/3/c-impl/c/package.json" + "path": "/home/src/projects/c/3/c-impl/c/lib", + "recursive": false, + "ignoreUpdate": true } } -Custom watchFile:: Added:: {"id":29,"path":"/home/src/projects/c/3/c-impl/c/package.json"} +Custom watchDirectory:: Added:: {"id":29,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { @@ -2236,35 +2236,35 @@ After running Timeout callback:: count: 0 PolledWatches:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts: - {"event":{"id":5,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}} + {"event":{"id":10,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}} /home/src/projects/a/1/a-impl/a/lib/index.d.ts: - {"event":{"id":3,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"}} + {"event":{"id":5,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"}} /home/src/projects/a/1/a-impl/a/package.json: - {"event":{"id":11,"path":"/home/src/projects/a/1/a-impl/a/package.json"}} + {"event":{"id":4,"path":"/home/src/projects/a/1/a-impl/a/package.json"}} /home/src/projects/b/2/b-impl/b/tsconfig.json: {"event":{"id":1,"path":"/home/src/projects/b/2/b-impl/b/tsconfig.json"}} /home/src/projects/c/3/c-impl/c/lib/c.d.ts: - {"event":{"id":8,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}} + {"event":{"id":13,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}} /home/src/projects/c/3/c-impl/c/lib/index.d.ts: - {"event":{"id":6,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}} + {"event":{"id":11,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}} /home/src/projects/c/3/c-impl/c/package.json: *new* - {"event":{"id":29,"path":"/home/src/projects/c/3/c-impl/c/package.json"}} + {"event":{"id":28,"path":"/home/src/projects/c/3/c-impl/c/package.json"}} /home/src/tslibs/TS/Lib/lib.d.ts: - {"event":{"id":9,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"}} + {"event":{"id":14,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"}} FsWatches:: /home/src/projects/a/1/a-impl/a/lib: *new* {"event":{"id":25,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}} /home/src/projects/c/3/c-impl/c/lib: *new* - {"event":{"id":26,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}} + {"event":{"id":29,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}} FsWatchesRecursive:: /home/src/projects/a/1/a-impl/a/lib/node_modules: *new* - {"event":{"id":27,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true}} + {"event":{"id":26,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true}} /home/src/projects/a/1/a-impl/a/node_modules: *new* - {"event":{"id":28,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true}} + {"event":{"id":27,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true}} /home/src/projects/b/2/b-impl/b/node_modules: - {"event":{"id":10,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true}} + {"event":{"id":3,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true}} /home/src/projects/b/2/b-impl/b/node_modules/@types: {"event":{"id":15,"path":"/home/src/projects/b/2/b-impl/b/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/b/2/b-impl/b/src: diff --git a/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-built-Linux.js b/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-built-Linux.js index 0bcaa950b6998..6f4319f65b655 100644 --- a/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-built-Linux.js +++ b/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-built-Linux.js @@ -224,25 +224,25 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Config: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Config: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/b/2/b-impl/b/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/index.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/a.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/index.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/a.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/@types 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/@types 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules/@types 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Type roots @@ -1193,14 +1193,14 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/project Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/b/2/b-impl/b/tsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/b/2/b-impl/b/tsconfig.json' (Configured) @@ -1738,13 +1738,13 @@ Info seq [hh:mm:ss:mss] Running: /home/src/projects/b/2/b-impl/b/tsconfig.json Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/b/2/b-impl/b/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations diff --git a/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-built-MacOs-canUseWatchEvents.js b/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-built-MacOs-canUseWatchEvents.js index ef70f2ba307d0..874d28821efe4 100644 --- a/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-built-MacOs-canUseWatchEvents.js +++ b/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-built-MacOs-canUseWatchEvents.js @@ -248,34 +248,35 @@ Info seq [hh:mm:ss:mss] event: Custom watchDirectory:: Added:: {"id":2,"path":"/home/src/projects/b/2/b-impl/b/src","recursive":true,"ignoreUpdate":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Config: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/b/2/b-impl/b/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/index.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", - "event": "createFileWatcher", + "event": "createDirectoryWatcher", "body": { "id": 3, - "path": "/home/src/projects/a/1/a-impl/a/lib/index.d.ts" + "path": "/home/src/projects/b/2/b-impl/b/node_modules", + "recursive": true } } -Custom watchFile:: Added:: {"id":3,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"} -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Added:: {"id":3,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", - "event": "createDirectoryWatcher", + "event": "createFileWatcher", "body": { "id": 4, - "path": "/home/src/projects/a/1/a-impl/a/lib", - "recursive": false, - "ignoreUpdate": true + "path": "/home/src/projects/a/1/a-impl/a/package.json" } } -Custom watchDirectory:: Added:: {"id":4,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/a.d.ts 500 undefined WatchType: Closed Script info +Custom watchFile:: Added:: {"id":4,"path":"/home/src/projects/a/1/a-impl/a/package.json"} +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/index.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -283,23 +284,26 @@ Info seq [hh:mm:ss:mss] event: "event": "createFileWatcher", "body": { "id": 5, - "path": "/home/src/projects/a/1/a-impl/a/lib/a.d.ts" + "path": "/home/src/projects/a/1/a-impl/a/lib/index.d.ts" } } -Custom watchFile:: Added:: {"id":5,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"} -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 500 undefined WatchType: Closed Script info +Custom watchFile:: Added:: {"id":5,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"} +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", - "event": "createFileWatcher", + "event": "createDirectoryWatcher", "body": { "id": 6, - "path": "/home/src/projects/c/3/c-impl/c/lib/index.d.ts" + "path": "/home/src/projects/a/1/a-impl/a/lib", + "recursive": false, + "ignoreUpdate": true } } -Custom watchFile:: Added:: {"id":6,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"} -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Added:: {"id":6,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -307,26 +311,27 @@ Info seq [hh:mm:ss:mss] event: "event": "createDirectoryWatcher", "body": { "id": 7, - "path": "/home/src/projects/c/3/c-impl/c/lib", - "recursive": false, - "ignoreUpdate": true + "path": "/home/src/projects/a/1/a-impl/a/lib/node_modules", + "recursive": true } } -Custom watchDirectory:: Added:: {"id":7,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 500 undefined WatchType: Closed Script info +Custom watchDirectory:: Added:: {"id":7,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", - "event": "createFileWatcher", + "event": "createDirectoryWatcher", "body": { "id": 8, - "path": "/home/src/projects/c/3/c-impl/c/lib/c.d.ts" + "path": "/home/src/projects/a/1/a-impl/a/node_modules", + "recursive": true } } -Custom watchFile:: Added:: {"id":8,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"} -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info +Custom watchDirectory:: Added:: {"id":8,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -334,27 +339,23 @@ Info seq [hh:mm:ss:mss] event: "event": "createFileWatcher", "body": { "id": 9, - "path": "/home/src/tslibs/TS/Lib/lib.d.ts" + "path": "/home/src/projects/c/3/c-impl/c/package.json" } } -Custom watchFile:: Added:: {"id":9,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"} -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchFile:: Added:: {"id":9,"path":"/home/src/projects/c/3/c-impl/c/package.json"} +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/a.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", - "event": "createDirectoryWatcher", + "event": "createFileWatcher", "body": { "id": 10, - "path": "/home/src/projects/b/2/b-impl/b/node_modules", - "recursive": true + "path": "/home/src/projects/a/1/a-impl/a/lib/a.d.ts" } } -Custom watchDirectory:: Added:: {"id":10,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution +Custom watchFile:: Added:: {"id":10,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"} +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -362,11 +363,11 @@ Info seq [hh:mm:ss:mss] event: "event": "createFileWatcher", "body": { "id": 11, - "path": "/home/src/projects/a/1/a-impl/a/package.json" + "path": "/home/src/projects/c/3/c-impl/c/lib/index.d.ts" } } -Custom watchFile:: Added:: {"id":11,"path":"/home/src/projects/a/1/a-impl/a/package.json"} -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchFile:: Added:: {"id":11,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"} +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -374,27 +375,26 @@ Info seq [hh:mm:ss:mss] event: "event": "createDirectoryWatcher", "body": { "id": 12, - "path": "/home/src/projects/a/1/a-impl/a/lib/node_modules", - "recursive": true + "path": "/home/src/projects/c/3/c-impl/c/lib", + "recursive": false, + "ignoreUpdate": true } } -Custom watchDirectory:: Added:: {"id":12,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Added:: {"id":12,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", - "event": "createDirectoryWatcher", + "event": "createFileWatcher", "body": { "id": 13, - "path": "/home/src/projects/a/1/a-impl/a/node_modules", - "recursive": true + "path": "/home/src/projects/c/3/c-impl/c/lib/c.d.ts" } } -Custom watchDirectory:: Added:: {"id":13,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution +Custom watchFile:: Added:: {"id":13,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"} +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -402,10 +402,10 @@ Info seq [hh:mm:ss:mss] event: "event": "createFileWatcher", "body": { "id": 14, - "path": "/home/src/projects/c/3/c-impl/c/package.json" + "path": "/home/src/tslibs/TS/Lib/lib.d.ts" } } -Custom watchFile:: Added:: {"id":14,"path":"/home/src/projects/c/3/c-impl/c/package.json"} +Custom watchFile:: Added:: {"id":14,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"} Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/@types 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] event: { @@ -591,35 +591,35 @@ After request PolledWatches:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts: *new* - {"event":{"id":5,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}} + {"event":{"id":10,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}} /home/src/projects/a/1/a-impl/a/lib/index.d.ts: *new* - {"event":{"id":3,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"}} + {"event":{"id":5,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"}} /home/src/projects/a/1/a-impl/a/package.json: *new* - {"event":{"id":11,"path":"/home/src/projects/a/1/a-impl/a/package.json"}} + {"event":{"id":4,"path":"/home/src/projects/a/1/a-impl/a/package.json"}} /home/src/projects/b/2/b-impl/b/tsconfig.json: *new* {"event":{"id":1,"path":"/home/src/projects/b/2/b-impl/b/tsconfig.json"}} /home/src/projects/c/3/c-impl/c/lib/c.d.ts: *new* - {"event":{"id":8,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}} + {"event":{"id":13,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}} /home/src/projects/c/3/c-impl/c/lib/index.d.ts: *new* - {"event":{"id":6,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}} + {"event":{"id":11,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}} /home/src/projects/c/3/c-impl/c/package.json: *new* - {"event":{"id":14,"path":"/home/src/projects/c/3/c-impl/c/package.json"}} + {"event":{"id":9,"path":"/home/src/projects/c/3/c-impl/c/package.json"}} /home/src/tslibs/TS/Lib/lib.d.ts: *new* - {"event":{"id":9,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"}} + {"event":{"id":14,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"}} FsWatches:: /home/src/projects/a/1/a-impl/a/lib: *new* - {"event":{"id":4,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}} + {"event":{"id":6,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}} /home/src/projects/c/3/c-impl/c/lib: *new* - {"event":{"id":7,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}} + {"event":{"id":12,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}} FsWatchesRecursive:: /home/src/projects/a/1/a-impl/a/lib/node_modules: *new* - {"event":{"id":12,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true}} + {"event":{"id":7,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true}} /home/src/projects/a/1/a-impl/a/node_modules: *new* - {"event":{"id":13,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true}} + {"event":{"id":8,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true}} /home/src/projects/b/2/b-impl/b/node_modules: *new* - {"event":{"id":10,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true}} + {"event":{"id":3,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true}} /home/src/projects/b/2/b-impl/b/node_modules/@types: *new* {"event":{"id":15,"path":"/home/src/projects/b/2/b-impl/b/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/b/2/b-impl/b/src: *new* @@ -1234,22 +1234,22 @@ Info seq [hh:mm:ss:mss] event: After running Immedidate callback:: count: 0 Clean dependencies build -Custom watchFile:: Triggered:: {"id":8,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/c.d.ts deleted -Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/c.d.ts deleted -Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/c.js deleted -Custom watchFile:: Triggered:: {"id":6,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/index.d.ts deleted -Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/index.d.ts deleted -Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/index.js deleted -Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo deleted -Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo.readable.baseline.txt deleted -Custom watchFile:: Triggered:: {"id":5,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts deleted -Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts deleted -Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/a/1/a-impl/a/lib/a.js deleted -Custom watchFile:: Triggered:: {"id":3,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"}:: /home/src/projects/a/1/a-impl/a/lib/index.d.ts deleted -Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/a/1/a-impl/a/lib/index.d.ts deleted -Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/a/1/a-impl/a/lib/index.js deleted -Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo deleted -Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt deleted +Custom watchFile:: Triggered:: {"id":13,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/c.d.ts deleted +Custom watchDirectory:: Triggered Ignored:: {"id":12,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/c.d.ts deleted +Custom watchDirectory:: Triggered Ignored:: {"id":12,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/c.js deleted +Custom watchFile:: Triggered:: {"id":11,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/index.d.ts deleted +Custom watchDirectory:: Triggered Ignored:: {"id":12,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/index.d.ts deleted +Custom watchDirectory:: Triggered Ignored:: {"id":12,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/index.js deleted +Custom watchDirectory:: Triggered Ignored:: {"id":12,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo deleted +Custom watchDirectory:: Triggered Ignored:: {"id":12,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo.readable.baseline.txt deleted +Custom watchFile:: Triggered:: {"id":10,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts deleted +Custom watchDirectory:: Triggered Ignored:: {"id":6,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts deleted +Custom watchDirectory:: Triggered Ignored:: {"id":6,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/a/1/a-impl/a/lib/a.js deleted +Custom watchFile:: Triggered:: {"id":5,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"}:: /home/src/projects/a/1/a-impl/a/lib/index.d.ts deleted +Custom watchDirectory:: Triggered Ignored:: {"id":6,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/a/1/a-impl/a/lib/index.d.ts deleted +Custom watchDirectory:: Triggered Ignored:: {"id":6,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/a/1/a-impl/a/lib/index.js deleted +Custom watchDirectory:: Triggered Ignored:: {"id":6,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo deleted +Custom watchDirectory:: Triggered Ignored:: {"id":6,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt deleted Before request //// [/home/src/projects/c/3/c-impl/c/lib/c.js] deleted //// [/home/src/projects/c/3/c-impl/c/lib/c.d.ts] deleted @@ -1269,13 +1269,13 @@ Info seq [hh:mm:ss:mss] request: "command": "watchChange", "arguments": [ { - "id": 8, + "id": 13, "deleted": [ "/home/src/projects/c/3/c-impl/c/lib/c.d.ts" ] }, { - "id": 7, + "id": 12, "deleted": [ "/home/src/projects/c/3/c-impl/c/lib/c.d.ts", "/home/src/projects/c/3/c-impl/c/lib/c.js", @@ -1286,19 +1286,19 @@ Info seq [hh:mm:ss:mss] request: ] }, { - "id": 6, + "id": 11, "deleted": [ "/home/src/projects/c/3/c-impl/c/lib/index.d.ts" ] }, { - "id": 5, + "id": 10, "deleted": [ "/home/src/projects/a/1/a-impl/a/lib/a.d.ts" ] }, { - "id": 4, + "id": 6, "deleted": [ "/home/src/projects/a/1/a-impl/a/lib/a.d.ts", "/home/src/projects/a/1/a-impl/a/lib/a.js", @@ -1309,7 +1309,7 @@ Info seq [hh:mm:ss:mss] request: ] }, { - "id": 3, + "id": 5, "deleted": [ "/home/src/projects/a/1/a-impl/a/lib/index.d.ts" ] @@ -1497,54 +1497,54 @@ Info seq [hh:mm:ss:mss] event: } Custom watchDirectory:: Added:: {"id":24,"path":"/home/src/projects/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", "event": "closeFileWatcher", "body": { - "id": 4 + "id": 12 } } -Custom watchDirectory:: Close:: {"id":4,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Close:: {"id":12,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", "event": "closeFileWatcher", "body": { - "id": 7 + "id": 6 } } -Custom watchDirectory:: Close:: {"id":7,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Close:: {"id":6,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", "event": "closeFileWatcher", "body": { - "id": 12 + "id": 8 } } -Custom watchDirectory:: Close:: {"id":12,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Close:: {"id":8,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", "event": "closeFileWatcher", "body": { - "id": 13 + "id": 7 } } -Custom watchDirectory:: Close:: {"id":13,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Close:: {"id":7,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] event: { @@ -1552,10 +1552,10 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "closeFileWatcher", "body": { - "id": 14 + "id": 9 } } -Custom watchFile:: Close:: {"id":14,"path":"/home/src/projects/c/3/c-impl/c/package.json"} +Custom watchFile:: Close:: {"id":9,"path":"/home/src/projects/c/3/c-impl/c/package.json"} Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/b/2/b-impl/b/tsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/b/2/b-impl/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1602,33 +1602,33 @@ After running Timeout callback:: count: 0 PolledWatches:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts: - {"event":{"id":5,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}} + {"event":{"id":10,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}} /home/src/projects/a/1/a-impl/a/lib/index.d.ts: - {"event":{"id":3,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"}} + {"event":{"id":5,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"}} /home/src/projects/a/1/a-impl/a/package.json: - {"event":{"id":11,"path":"/home/src/projects/a/1/a-impl/a/package.json"}} + {"event":{"id":4,"path":"/home/src/projects/a/1/a-impl/a/package.json"}} /home/src/projects/b/2/b-impl/b/tsconfig.json: {"event":{"id":1,"path":"/home/src/projects/b/2/b-impl/b/tsconfig.json"}} /home/src/projects/c/3/c-impl/c/lib/c.d.ts: - {"event":{"id":8,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}} + {"event":{"id":13,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}} /home/src/projects/c/3/c-impl/c/lib/index.d.ts: - {"event":{"id":6,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}} + {"event":{"id":11,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}} /home/src/tslibs/TS/Lib/lib.d.ts: - {"event":{"id":9,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"}} + {"event":{"id":14,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"}} PolledWatches *deleted*:: /home/src/projects/c/3/c-impl/c/package.json: - {"event":{"id":14,"path":"/home/src/projects/c/3/c-impl/c/package.json"}} + {"event":{"id":9,"path":"/home/src/projects/c/3/c-impl/c/package.json"}} FsWatches *deleted*:: /home/src/projects/a/1/a-impl/a/lib: - {"event":{"id":4,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}} + {"event":{"id":6,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}} /home/src/projects/c/3/c-impl/c/lib: - {"event":{"id":7,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}} + {"event":{"id":12,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}} FsWatchesRecursive:: /home/src/projects/b/2/b-impl/b/node_modules: - {"event":{"id":10,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true}} + {"event":{"id":3,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true}} /home/src/projects/b/2/b-impl/b/node_modules/@types: {"event":{"id":15,"path":"/home/src/projects/b/2/b-impl/b/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/b/2/b-impl/b/node_modules/a: *new* @@ -1654,9 +1654,9 @@ FsWatchesRecursive:: FsWatchesRecursive *deleted*:: /home/src/projects/a/1/a-impl/a/lib/node_modules: - {"event":{"id":12,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true}} + {"event":{"id":7,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true}} /home/src/projects/a/1/a-impl/a/node_modules: - {"event":{"id":13,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true}} + {"event":{"id":8,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true}} Projects:: /home/src/projects/b/2/b-impl/b/tsconfig.json (Configured) *changed* @@ -1792,14 +1792,14 @@ Info seq [hh:mm:ss:mss] event: After running Immedidate callback:: count: 0 Build dependencies -Custom watchFile:: Triggered:: {"id":8,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/c.d.ts created -Custom watchFile:: Triggered:: {"id":6,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/index.d.ts created +Custom watchFile:: Triggered:: {"id":13,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/c.d.ts created +Custom watchFile:: Triggered:: {"id":11,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/index.d.ts created Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib created Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/a.js created -Custom watchFile:: Triggered:: {"id":5,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts created +Custom watchFile:: Triggered:: {"id":10,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts created Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/a.d.ts created Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/index.js created -Custom watchFile:: Triggered:: {"id":3,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"}:: /home/src/projects/a/1/a-impl/a/lib/index.d.ts created +Custom watchFile:: Triggered:: {"id":5,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"}:: /home/src/projects/a/1/a-impl/a/lib/index.d.ts created Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/index.d.ts created Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/tsconfig.tsbuildinfo created Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt created @@ -1908,13 +1908,13 @@ Info seq [hh:mm:ss:mss] request: "command": "watchChange", "arguments": [ { - "id": 8, + "id": 13, "created": [ "/home/src/projects/c/3/c-impl/c/lib/c.d.ts" ] }, { - "id": 6, + "id": 11, "created": [ "/home/src/projects/c/3/c-impl/c/lib/index.d.ts" ] @@ -1932,13 +1932,13 @@ Info seq [hh:mm:ss:mss] request: ] }, { - "id": 5, + "id": 10, "created": [ "/home/src/projects/a/1/a-impl/a/lib/a.d.ts" ] }, { - "id": 3, + "id": 5, "created": [ "/home/src/projects/a/1/a-impl/a/lib/index.d.ts" ] @@ -2050,7 +2050,7 @@ Info seq [hh:mm:ss:mss] event: } Custom watchDirectory:: Added:: {"id":25,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -2058,14 +2058,13 @@ Info seq [hh:mm:ss:mss] event: "event": "createDirectoryWatcher", "body": { "id": 26, - "path": "/home/src/projects/c/3/c-impl/c/lib", - "recursive": false, - "ignoreUpdate": true + "path": "/home/src/projects/a/1/a-impl/a/lib/node_modules", + "recursive": true } } -Custom watchDirectory:: Added:: {"id":26,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Added:: {"id":26,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -2073,38 +2072,39 @@ Info seq [hh:mm:ss:mss] event: "event": "createDirectoryWatcher", "body": { "id": 27, - "path": "/home/src/projects/a/1/a-impl/a/lib/node_modules", + "path": "/home/src/projects/a/1/a-impl/a/node_modules", "recursive": true } } -Custom watchDirectory:: Added:: {"id":27,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Added:: {"id":27,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", - "event": "createDirectoryWatcher", + "event": "createFileWatcher", "body": { "id": 28, - "path": "/home/src/projects/a/1/a-impl/a/node_modules", - "recursive": true + "path": "/home/src/projects/c/3/c-impl/c/package.json" } } -Custom watchDirectory:: Added:: {"id":28,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution +Custom watchFile:: Added:: {"id":28,"path":"/home/src/projects/c/3/c-impl/c/package.json"} +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", - "event": "createFileWatcher", + "event": "createDirectoryWatcher", "body": { "id": 29, - "path": "/home/src/projects/c/3/c-impl/c/package.json" + "path": "/home/src/projects/c/3/c-impl/c/lib", + "recursive": false, + "ignoreUpdate": true } } -Custom watchFile:: Added:: {"id":29,"path":"/home/src/projects/c/3/c-impl/c/package.json"} +Custom watchDirectory:: Added:: {"id":29,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { @@ -2223,35 +2223,35 @@ After running Timeout callback:: count: 0 PolledWatches:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts: - {"event":{"id":5,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}} + {"event":{"id":10,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}} /home/src/projects/a/1/a-impl/a/lib/index.d.ts: - {"event":{"id":3,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"}} + {"event":{"id":5,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"}} /home/src/projects/a/1/a-impl/a/package.json: - {"event":{"id":11,"path":"/home/src/projects/a/1/a-impl/a/package.json"}} + {"event":{"id":4,"path":"/home/src/projects/a/1/a-impl/a/package.json"}} /home/src/projects/b/2/b-impl/b/tsconfig.json: {"event":{"id":1,"path":"/home/src/projects/b/2/b-impl/b/tsconfig.json"}} /home/src/projects/c/3/c-impl/c/lib/c.d.ts: - {"event":{"id":8,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}} + {"event":{"id":13,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}} /home/src/projects/c/3/c-impl/c/lib/index.d.ts: - {"event":{"id":6,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}} + {"event":{"id":11,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}} /home/src/projects/c/3/c-impl/c/package.json: *new* - {"event":{"id":29,"path":"/home/src/projects/c/3/c-impl/c/package.json"}} + {"event":{"id":28,"path":"/home/src/projects/c/3/c-impl/c/package.json"}} /home/src/tslibs/TS/Lib/lib.d.ts: - {"event":{"id":9,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"}} + {"event":{"id":14,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"}} FsWatches:: /home/src/projects/a/1/a-impl/a/lib: *new* {"event":{"id":25,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}} /home/src/projects/c/3/c-impl/c/lib: *new* - {"event":{"id":26,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}} + {"event":{"id":29,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}} FsWatchesRecursive:: /home/src/projects/a/1/a-impl/a/lib/node_modules: *new* - {"event":{"id":27,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true}} + {"event":{"id":26,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true}} /home/src/projects/a/1/a-impl/a/node_modules: *new* - {"event":{"id":28,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true}} + {"event":{"id":27,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true}} /home/src/projects/b/2/b-impl/b/node_modules: - {"event":{"id":10,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true}} + {"event":{"id":3,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true}} /home/src/projects/b/2/b-impl/b/node_modules/@types: {"event":{"id":15,"path":"/home/src/projects/b/2/b-impl/b/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/b/2/b-impl/b/src: diff --git a/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-built-MacOs.js b/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-built-MacOs.js index d362cde5d2786..caa3374fe4b3b 100644 --- a/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-built-MacOs.js +++ b/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-built-MacOs.js @@ -224,25 +224,25 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Config: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Config: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/b/2/b-impl/b/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/index.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/a.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/index.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/a.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/@types 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/@types 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules/@types 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Type roots @@ -1225,14 +1225,14 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/project Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/b/2/b-impl/b/tsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/b/2/b-impl/b/tsconfig.json' (Configured) @@ -1723,13 +1723,13 @@ Info seq [hh:mm:ss:mss] Running: /home/src/projects/b/2/b-impl/b/tsconfig.json Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/b/2/b-impl/b/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations diff --git a/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-built-Windows-canUseWatchEvents.js b/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-built-Windows-canUseWatchEvents.js index 5abbe06efa05f..d6e6cb7680cc1 100644 --- a/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-built-Windows-canUseWatchEvents.js +++ b/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-built-Windows-canUseWatchEvents.js @@ -248,34 +248,35 @@ Info seq [hh:mm:ss:mss] event: Custom watchDirectory:: Added:: {"id":2,"path":"/home/src/projects/b/2/b-impl/b/src","recursive":true,"ignoreUpdate":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Config: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/b/2/b-impl/b/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/index.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", - "event": "createFileWatcher", + "event": "createDirectoryWatcher", "body": { "id": 3, - "path": "/home/src/projects/a/1/a-impl/a/lib/index.d.ts" + "path": "/home/src/projects/b/2/b-impl/b/node_modules", + "recursive": true } } -Custom watchFile:: Added:: {"id":3,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"} -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Added:: {"id":3,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", - "event": "createDirectoryWatcher", + "event": "createFileWatcher", "body": { "id": 4, - "path": "/home/src/projects/a/1/a-impl/a/lib", - "recursive": false, - "ignoreUpdate": true + "path": "/home/src/projects/a/1/a-impl/a/package.json" } } -Custom watchDirectory:: Added:: {"id":4,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/a.d.ts 500 undefined WatchType: Closed Script info +Custom watchFile:: Added:: {"id":4,"path":"/home/src/projects/a/1/a-impl/a/package.json"} +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/index.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -283,23 +284,26 @@ Info seq [hh:mm:ss:mss] event: "event": "createFileWatcher", "body": { "id": 5, - "path": "/home/src/projects/a/1/a-impl/a/lib/a.d.ts" + "path": "/home/src/projects/a/1/a-impl/a/lib/index.d.ts" } } -Custom watchFile:: Added:: {"id":5,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"} -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 500 undefined WatchType: Closed Script info +Custom watchFile:: Added:: {"id":5,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"} +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", - "event": "createFileWatcher", + "event": "createDirectoryWatcher", "body": { "id": 6, - "path": "/home/src/projects/c/3/c-impl/c/lib/index.d.ts" + "path": "/home/src/projects/a/1/a-impl/a/lib", + "recursive": false, + "ignoreUpdate": true } } -Custom watchFile:: Added:: {"id":6,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"} -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Added:: {"id":6,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -307,26 +311,27 @@ Info seq [hh:mm:ss:mss] event: "event": "createDirectoryWatcher", "body": { "id": 7, - "path": "/home/src/projects/c/3/c-impl/c/lib", - "recursive": false, - "ignoreUpdate": true + "path": "/home/src/projects/a/1/a-impl/a/lib/node_modules", + "recursive": true } } -Custom watchDirectory:: Added:: {"id":7,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 500 undefined WatchType: Closed Script info +Custom watchDirectory:: Added:: {"id":7,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", - "event": "createFileWatcher", + "event": "createDirectoryWatcher", "body": { "id": 8, - "path": "/home/src/projects/c/3/c-impl/c/lib/c.d.ts" + "path": "/home/src/projects/a/1/a-impl/a/node_modules", + "recursive": true } } -Custom watchFile:: Added:: {"id":8,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"} -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info +Custom watchDirectory:: Added:: {"id":8,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -334,27 +339,23 @@ Info seq [hh:mm:ss:mss] event: "event": "createFileWatcher", "body": { "id": 9, - "path": "/home/src/tslibs/TS/Lib/lib.d.ts" + "path": "/home/src/projects/c/3/c-impl/c/package.json" } } -Custom watchFile:: Added:: {"id":9,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"} -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchFile:: Added:: {"id":9,"path":"/home/src/projects/c/3/c-impl/c/package.json"} +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/a.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", - "event": "createDirectoryWatcher", + "event": "createFileWatcher", "body": { "id": 10, - "path": "/home/src/projects/b/2/b-impl/b/node_modules", - "recursive": true + "path": "/home/src/projects/a/1/a-impl/a/lib/a.d.ts" } } -Custom watchDirectory:: Added:: {"id":10,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution +Custom watchFile:: Added:: {"id":10,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"} +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -362,11 +363,11 @@ Info seq [hh:mm:ss:mss] event: "event": "createFileWatcher", "body": { "id": 11, - "path": "/home/src/projects/a/1/a-impl/a/package.json" + "path": "/home/src/projects/c/3/c-impl/c/lib/index.d.ts" } } -Custom watchFile:: Added:: {"id":11,"path":"/home/src/projects/a/1/a-impl/a/package.json"} -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchFile:: Added:: {"id":11,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"} +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -374,27 +375,26 @@ Info seq [hh:mm:ss:mss] event: "event": "createDirectoryWatcher", "body": { "id": 12, - "path": "/home/src/projects/a/1/a-impl/a/lib/node_modules", - "recursive": true + "path": "/home/src/projects/c/3/c-impl/c/lib", + "recursive": false, + "ignoreUpdate": true } } -Custom watchDirectory:: Added:: {"id":12,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Added:: {"id":12,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", - "event": "createDirectoryWatcher", + "event": "createFileWatcher", "body": { "id": 13, - "path": "/home/src/projects/a/1/a-impl/a/node_modules", - "recursive": true + "path": "/home/src/projects/c/3/c-impl/c/lib/c.d.ts" } } -Custom watchDirectory:: Added:: {"id":13,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution +Custom watchFile:: Added:: {"id":13,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"} +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -402,10 +402,10 @@ Info seq [hh:mm:ss:mss] event: "event": "createFileWatcher", "body": { "id": 14, - "path": "/home/src/projects/c/3/c-impl/c/package.json" + "path": "/home/src/tslibs/TS/Lib/lib.d.ts" } } -Custom watchFile:: Added:: {"id":14,"path":"/home/src/projects/c/3/c-impl/c/package.json"} +Custom watchFile:: Added:: {"id":14,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"} Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/@types 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] event: { @@ -591,35 +591,35 @@ After request PolledWatches:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts: *new* - {"event":{"id":5,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}} + {"event":{"id":10,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}} /home/src/projects/a/1/a-impl/a/lib/index.d.ts: *new* - {"event":{"id":3,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"}} + {"event":{"id":5,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"}} /home/src/projects/a/1/a-impl/a/package.json: *new* - {"event":{"id":11,"path":"/home/src/projects/a/1/a-impl/a/package.json"}} + {"event":{"id":4,"path":"/home/src/projects/a/1/a-impl/a/package.json"}} /home/src/projects/b/2/b-impl/b/tsconfig.json: *new* {"event":{"id":1,"path":"/home/src/projects/b/2/b-impl/b/tsconfig.json"}} /home/src/projects/c/3/c-impl/c/lib/c.d.ts: *new* - {"event":{"id":8,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}} + {"event":{"id":13,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}} /home/src/projects/c/3/c-impl/c/lib/index.d.ts: *new* - {"event":{"id":6,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}} + {"event":{"id":11,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}} /home/src/projects/c/3/c-impl/c/package.json: *new* - {"event":{"id":14,"path":"/home/src/projects/c/3/c-impl/c/package.json"}} + {"event":{"id":9,"path":"/home/src/projects/c/3/c-impl/c/package.json"}} /home/src/tslibs/TS/Lib/lib.d.ts: *new* - {"event":{"id":9,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"}} + {"event":{"id":14,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"}} FsWatches:: /home/src/projects/a/1/a-impl/a/lib: *new* - {"event":{"id":4,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}} + {"event":{"id":6,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}} /home/src/projects/c/3/c-impl/c/lib: *new* - {"event":{"id":7,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}} + {"event":{"id":12,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}} FsWatchesRecursive:: /home/src/projects/a/1/a-impl/a/lib/node_modules: *new* - {"event":{"id":12,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true}} + {"event":{"id":7,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true}} /home/src/projects/a/1/a-impl/a/node_modules: *new* - {"event":{"id":13,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true}} + {"event":{"id":8,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true}} /home/src/projects/b/2/b-impl/b/node_modules: *new* - {"event":{"id":10,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true}} + {"event":{"id":3,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true}} /home/src/projects/b/2/b-impl/b/node_modules/@types: *new* {"event":{"id":15,"path":"/home/src/projects/b/2/b-impl/b/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/b/2/b-impl/b/src: *new* @@ -1234,22 +1234,22 @@ Info seq [hh:mm:ss:mss] event: After running Immedidate callback:: count: 0 Clean dependencies build -Custom watchFile:: Triggered:: {"id":8,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/c.d.ts deleted -Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/c.d.ts deleted -Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/c.js deleted -Custom watchFile:: Triggered:: {"id":6,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/index.d.ts deleted -Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/index.d.ts deleted -Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/index.js deleted -Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo deleted -Custom watchDirectory:: Triggered Ignored:: {"id":7,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo.readable.baseline.txt deleted -Custom watchFile:: Triggered:: {"id":5,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts deleted -Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts deleted -Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/a/1/a-impl/a/lib/a.js deleted -Custom watchFile:: Triggered:: {"id":3,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"}:: /home/src/projects/a/1/a-impl/a/lib/index.d.ts deleted -Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/a/1/a-impl/a/lib/index.d.ts deleted -Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/a/1/a-impl/a/lib/index.js deleted -Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo deleted -Custom watchDirectory:: Triggered Ignored:: {"id":4,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt deleted +Custom watchFile:: Triggered:: {"id":13,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/c.d.ts deleted +Custom watchDirectory:: Triggered Ignored:: {"id":12,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/c.d.ts deleted +Custom watchDirectory:: Triggered Ignored:: {"id":12,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/c.js deleted +Custom watchFile:: Triggered:: {"id":11,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/index.d.ts deleted +Custom watchDirectory:: Triggered Ignored:: {"id":12,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/index.d.ts deleted +Custom watchDirectory:: Triggered Ignored:: {"id":12,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/index.js deleted +Custom watchDirectory:: Triggered Ignored:: {"id":12,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo deleted +Custom watchDirectory:: Triggered Ignored:: {"id":12,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo.readable.baseline.txt deleted +Custom watchFile:: Triggered:: {"id":10,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts deleted +Custom watchDirectory:: Triggered Ignored:: {"id":6,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts deleted +Custom watchDirectory:: Triggered Ignored:: {"id":6,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/a/1/a-impl/a/lib/a.js deleted +Custom watchFile:: Triggered:: {"id":5,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"}:: /home/src/projects/a/1/a-impl/a/lib/index.d.ts deleted +Custom watchDirectory:: Triggered Ignored:: {"id":6,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/a/1/a-impl/a/lib/index.d.ts deleted +Custom watchDirectory:: Triggered Ignored:: {"id":6,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/a/1/a-impl/a/lib/index.js deleted +Custom watchDirectory:: Triggered Ignored:: {"id":6,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo deleted +Custom watchDirectory:: Triggered Ignored:: {"id":6,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}:: /home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt deleted Before request //// [/home/src/projects/c/3/c-impl/c/lib/c.js] deleted //// [/home/src/projects/c/3/c-impl/c/lib/c.d.ts] deleted @@ -1269,13 +1269,13 @@ Info seq [hh:mm:ss:mss] request: "command": "watchChange", "arguments": [ { - "id": 8, + "id": 13, "deleted": [ "/home/src/projects/c/3/c-impl/c/lib/c.d.ts" ] }, { - "id": 7, + "id": 12, "deleted": [ "/home/src/projects/c/3/c-impl/c/lib/c.d.ts", "/home/src/projects/c/3/c-impl/c/lib/c.js", @@ -1286,19 +1286,19 @@ Info seq [hh:mm:ss:mss] request: ] }, { - "id": 6, + "id": 11, "deleted": [ "/home/src/projects/c/3/c-impl/c/lib/index.d.ts" ] }, { - "id": 5, + "id": 10, "deleted": [ "/home/src/projects/a/1/a-impl/a/lib/a.d.ts" ] }, { - "id": 4, + "id": 6, "deleted": [ "/home/src/projects/a/1/a-impl/a/lib/a.d.ts", "/home/src/projects/a/1/a-impl/a/lib/a.js", @@ -1309,7 +1309,7 @@ Info seq [hh:mm:ss:mss] request: ] }, { - "id": 3, + "id": 5, "deleted": [ "/home/src/projects/a/1/a-impl/a/lib/index.d.ts" ] @@ -1497,54 +1497,54 @@ Info seq [hh:mm:ss:mss] event: } Custom watchDirectory:: Added:: {"id":24,"path":"/home/src/projects/node_modules","recursive":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", "event": "closeFileWatcher", "body": { - "id": 4 + "id": 12 } } -Custom watchDirectory:: Close:: {"id":4,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Close:: {"id":12,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", "event": "closeFileWatcher", "body": { - "id": 7 + "id": 6 } } -Custom watchDirectory:: Close:: {"id":7,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Close:: {"id":6,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", "event": "closeFileWatcher", "body": { - "id": 12 + "id": 8 } } -Custom watchDirectory:: Close:: {"id":12,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Close:: {"id":8,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", "event": "closeFileWatcher", "body": { - "id": 13 + "id": 7 } } -Custom watchDirectory:: Close:: {"id":13,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Close:: {"id":7,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] event: { @@ -1552,10 +1552,10 @@ Info seq [hh:mm:ss:mss] event: "type": "event", "event": "closeFileWatcher", "body": { - "id": 14 + "id": 9 } } -Custom watchFile:: Close:: {"id":14,"path":"/home/src/projects/c/3/c-impl/c/package.json"} +Custom watchFile:: Close:: {"id":9,"path":"/home/src/projects/c/3/c-impl/c/package.json"} Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/b/2/b-impl/b/tsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/b/2/b-impl/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -1602,33 +1602,33 @@ After running Timeout callback:: count: 0 PolledWatches:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts: - {"event":{"id":5,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}} + {"event":{"id":10,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}} /home/src/projects/a/1/a-impl/a/lib/index.d.ts: - {"event":{"id":3,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"}} + {"event":{"id":5,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"}} /home/src/projects/a/1/a-impl/a/package.json: - {"event":{"id":11,"path":"/home/src/projects/a/1/a-impl/a/package.json"}} + {"event":{"id":4,"path":"/home/src/projects/a/1/a-impl/a/package.json"}} /home/src/projects/b/2/b-impl/b/tsconfig.json: {"event":{"id":1,"path":"/home/src/projects/b/2/b-impl/b/tsconfig.json"}} /home/src/projects/c/3/c-impl/c/lib/c.d.ts: - {"event":{"id":8,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}} + {"event":{"id":13,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}} /home/src/projects/c/3/c-impl/c/lib/index.d.ts: - {"event":{"id":6,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}} + {"event":{"id":11,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}} /home/src/tslibs/TS/Lib/lib.d.ts: - {"event":{"id":9,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"}} + {"event":{"id":14,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"}} PolledWatches *deleted*:: /home/src/projects/c/3/c-impl/c/package.json: - {"event":{"id":14,"path":"/home/src/projects/c/3/c-impl/c/package.json"}} + {"event":{"id":9,"path":"/home/src/projects/c/3/c-impl/c/package.json"}} FsWatches *deleted*:: /home/src/projects/a/1/a-impl/a/lib: - {"event":{"id":4,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}} + {"event":{"id":6,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}} /home/src/projects/c/3/c-impl/c/lib: - {"event":{"id":7,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}} + {"event":{"id":12,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}} FsWatchesRecursive:: /home/src/projects/b/2/b-impl/b/node_modules: - {"event":{"id":10,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true}} + {"event":{"id":3,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true}} /home/src/projects/b/2/b-impl/b/node_modules/@types: {"event":{"id":15,"path":"/home/src/projects/b/2/b-impl/b/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/b/2/b-impl/b/node_modules/a: *new* @@ -1654,9 +1654,9 @@ FsWatchesRecursive:: FsWatchesRecursive *deleted*:: /home/src/projects/a/1/a-impl/a/lib/node_modules: - {"event":{"id":12,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true}} + {"event":{"id":7,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true}} /home/src/projects/a/1/a-impl/a/node_modules: - {"event":{"id":13,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true}} + {"event":{"id":8,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true}} Projects:: /home/src/projects/b/2/b-impl/b/tsconfig.json (Configured) *changed* @@ -1792,21 +1792,21 @@ Info seq [hh:mm:ss:mss] event: After running Immedidate callback:: count: 0 Build dependencies -Custom watchFile:: Triggered:: {"id":8,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/c.d.ts created -Custom watchFile:: Triggered:: {"id":6,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/index.d.ts created +Custom watchFile:: Triggered:: {"id":13,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/c.d.ts created +Custom watchFile:: Triggered:: {"id":11,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}:: /home/src/projects/c/3/c-impl/c/lib/index.d.ts created Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib created Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib updated Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/a.js created Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/a.js updated Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib updated -Custom watchFile:: Triggered:: {"id":5,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts created +Custom watchFile:: Triggered:: {"id":10,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts created Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/a.d.ts created Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/a.d.ts updated Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib updated Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/index.js created Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/index.js updated Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib updated -Custom watchFile:: Triggered:: {"id":3,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"}:: /home/src/projects/a/1/a-impl/a/lib/index.d.ts created +Custom watchFile:: Triggered:: {"id":5,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"}:: /home/src/projects/a/1/a-impl/a/lib/index.d.ts created Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/index.d.ts created Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib/index.d.ts updated Custom watchDirectory:: Triggered Ignored:: {"id":20,"path":"/home/src/projects/b/2/b-impl/b/node_modules/a","recursive":true,"ignoreUpdate":true}:: /home/src/projects/b/2/b-impl/b/node_modules/a/lib updated @@ -1921,13 +1921,13 @@ Info seq [hh:mm:ss:mss] request: "command": "watchChange", "arguments": [ { - "id": 8, + "id": 13, "created": [ "/home/src/projects/c/3/c-impl/c/lib/c.d.ts" ] }, { - "id": 6, + "id": 11, "created": [ "/home/src/projects/c/3/c-impl/c/lib/index.d.ts" ] @@ -1945,13 +1945,13 @@ Info seq [hh:mm:ss:mss] request: ] }, { - "id": 5, + "id": 10, "created": [ "/home/src/projects/a/1/a-impl/a/lib/a.d.ts" ] }, { - "id": 3, + "id": 5, "created": [ "/home/src/projects/a/1/a-impl/a/lib/index.d.ts" ] @@ -2063,7 +2063,7 @@ Info seq [hh:mm:ss:mss] event: } Custom watchDirectory:: Added:: {"id":25,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true} Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -2071,14 +2071,13 @@ Info seq [hh:mm:ss:mss] event: "event": "createDirectoryWatcher", "body": { "id": 26, - "path": "/home/src/projects/c/3/c-impl/c/lib", - "recursive": false, - "ignoreUpdate": true + "path": "/home/src/projects/a/1/a-impl/a/lib/node_modules", + "recursive": true } } -Custom watchDirectory:: Added:: {"id":26,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Added:: {"id":26,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, @@ -2086,38 +2085,39 @@ Info seq [hh:mm:ss:mss] event: "event": "createDirectoryWatcher", "body": { "id": 27, - "path": "/home/src/projects/a/1/a-impl/a/lib/node_modules", + "path": "/home/src/projects/a/1/a-impl/a/node_modules", "recursive": true } } -Custom watchDirectory:: Added:: {"id":27,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Custom watchDirectory:: Added:: {"id":27,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", - "event": "createDirectoryWatcher", + "event": "createFileWatcher", "body": { "id": 28, - "path": "/home/src/projects/a/1/a-impl/a/node_modules", - "recursive": true + "path": "/home/src/projects/c/3/c-impl/c/package.json" } } -Custom watchDirectory:: Added:: {"id":28,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true} -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution +Custom watchFile:: Added:: {"id":28,"path":"/home/src/projects/c/3/c-impl/c/package.json"} +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { "seq": 0, "type": "event", - "event": "createFileWatcher", + "event": "createDirectoryWatcher", "body": { "id": 29, - "path": "/home/src/projects/c/3/c-impl/c/package.json" + "path": "/home/src/projects/c/3/c-impl/c/lib", + "recursive": false, + "ignoreUpdate": true } } -Custom watchFile:: Added:: {"id":29,"path":"/home/src/projects/c/3/c-impl/c/package.json"} +Custom watchDirectory:: Added:: {"id":29,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true} +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib 0 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] event: { @@ -2236,35 +2236,35 @@ After running Timeout callback:: count: 0 PolledWatches:: /home/src/projects/a/1/a-impl/a/lib/a.d.ts: - {"event":{"id":5,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}} + {"event":{"id":10,"path":"/home/src/projects/a/1/a-impl/a/lib/a.d.ts"}} /home/src/projects/a/1/a-impl/a/lib/index.d.ts: - {"event":{"id":3,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"}} + {"event":{"id":5,"path":"/home/src/projects/a/1/a-impl/a/lib/index.d.ts"}} /home/src/projects/a/1/a-impl/a/package.json: - {"event":{"id":11,"path":"/home/src/projects/a/1/a-impl/a/package.json"}} + {"event":{"id":4,"path":"/home/src/projects/a/1/a-impl/a/package.json"}} /home/src/projects/b/2/b-impl/b/tsconfig.json: {"event":{"id":1,"path":"/home/src/projects/b/2/b-impl/b/tsconfig.json"}} /home/src/projects/c/3/c-impl/c/lib/c.d.ts: - {"event":{"id":8,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}} + {"event":{"id":13,"path":"/home/src/projects/c/3/c-impl/c/lib/c.d.ts"}} /home/src/projects/c/3/c-impl/c/lib/index.d.ts: - {"event":{"id":6,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}} + {"event":{"id":11,"path":"/home/src/projects/c/3/c-impl/c/lib/index.d.ts"}} /home/src/projects/c/3/c-impl/c/package.json: *new* - {"event":{"id":29,"path":"/home/src/projects/c/3/c-impl/c/package.json"}} + {"event":{"id":28,"path":"/home/src/projects/c/3/c-impl/c/package.json"}} /home/src/tslibs/TS/Lib/lib.d.ts: - {"event":{"id":9,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"}} + {"event":{"id":14,"path":"/home/src/tslibs/TS/Lib/lib.d.ts"}} FsWatches:: /home/src/projects/a/1/a-impl/a/lib: *new* {"event":{"id":25,"path":"/home/src/projects/a/1/a-impl/a/lib","recursive":false,"ignoreUpdate":true}} /home/src/projects/c/3/c-impl/c/lib: *new* - {"event":{"id":26,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}} + {"event":{"id":29,"path":"/home/src/projects/c/3/c-impl/c/lib","recursive":false,"ignoreUpdate":true}} FsWatchesRecursive:: /home/src/projects/a/1/a-impl/a/lib/node_modules: *new* - {"event":{"id":27,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true}} + {"event":{"id":26,"path":"/home/src/projects/a/1/a-impl/a/lib/node_modules","recursive":true}} /home/src/projects/a/1/a-impl/a/node_modules: *new* - {"event":{"id":28,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true}} + {"event":{"id":27,"path":"/home/src/projects/a/1/a-impl/a/node_modules","recursive":true}} /home/src/projects/b/2/b-impl/b/node_modules: - {"event":{"id":10,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true}} + {"event":{"id":3,"path":"/home/src/projects/b/2/b-impl/b/node_modules","recursive":true}} /home/src/projects/b/2/b-impl/b/node_modules/@types: {"event":{"id":15,"path":"/home/src/projects/b/2/b-impl/b/node_modules/@types","recursive":true,"ignoreUpdate":true}} /home/src/projects/b/2/b-impl/b/src: diff --git a/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-built-Windows.js b/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-built-Windows.js index 816ef7bdb079c..f00905a8322c0 100644 --- a/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-built-Windows.js +++ b/tests/baselines/reference/tsserver/symLinks/packages-outside-project-folder-built-Windows.js @@ -224,25 +224,25 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Config: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Config: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/b/2/b-impl/b/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/index.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/a.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/index.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/a.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/index.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/lib/c.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/@types 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/@types 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules/@types 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Type roots @@ -1171,14 +1171,14 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/project Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/c 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/b/2/b-impl/b/tsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/b/2/b-impl/b/tsconfig.json' (Configured) @@ -1607,13 +1607,13 @@ Info seq [hh:mm:ss:mss] Running: /home/src/projects/b/2/b-impl/b/tsconfig.json Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/b/2/b-impl/b/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/lib/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/a/1/a-impl/a/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/c/3/c-impl/c/package.json 2000 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/c 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/b/node_modules/a 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/b/2/b-impl/node_modules 1 undefined Project: /home/src/projects/b/2/b-impl/b/tsconfig.json WatchType: Failed Lookup Locations diff --git a/tests/baselines/reference/tsserver/symLinks/rename-in-common-file-renames-all-project.js b/tests/baselines/reference/tsserver/symLinks/rename-in-common-file-renames-all-project.js index 0fc8285977b22..53f6c1bade5d5 100644 --- a/tests/baselines/reference/tsserver/symLinks/rename-in-common-file-renames-all-project.js +++ b/tests/baselines/reference/tsserver/symLinks/rename-in-common-file-renames-all-project.js @@ -267,8 +267,6 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/username/projec Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/username/projects/b/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/b/node_modules/@types 1 undefined Project: /users/username/projects/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/b/node_modules/@types 1 undefined Project: /users/username/projects/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/node_modules/@types 1 undefined Project: /users/username/projects/b/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/node_modules/@types 1 undefined Project: /users/username/projects/b/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/username/projects/b/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/users/username/projects/b/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) diff --git a/tests/baselines/reference/tsserver/symLinks/when-not-symlink-but-differs-in-casing.js b/tests/baselines/reference/tsserver/symLinks/when-not-symlink-but-differs-in-casing.js index 1327c095a715b..0cc6232e14fdd 100644 --- a/tests/baselines/reference/tsserver/symLinks/when-not-symlink-but-differs-in-casing.js +++ b/tests/baselines/reference/tsserver/symLinks/when-not-symlink-but-differs-in-casing.js @@ -280,13 +280,12 @@ Info seq [hh:mm:ss:mss] request: Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: c:/temp/replay/axios-src/lib/core/dispatchRequest.js ProjectRootPath: undefined:: Result: undefined Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, currentDirectory: c:/temp/replay/axios-src/lib/core Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: c:/temp/replay/axios-src/lib/core/AxiosHeaders.js 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/temp/replay/axios-src/lib/core/AxiosHeaders.js 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: c:/temp/replay/axios-src/lib/core 0 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/temp/replay/axios-src/lib/core 0 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: c:/temp/replay/axios-src/lib/core/AxiosHeaders.js 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/temp/replay/axios-src/lib/core/AxiosHeaders.js 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: c:/temp/replay/axios-src/lib/core/settle.js 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/temp/replay/axios-src/lib/core/settle.js 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: c:/temp/replay/axios-src/lib/core/settle.js 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: c:/temp/replay/axios-src/lib/core/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/temp/replay/axios-src/lib/core/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: c:/temp/replay/axios-src/lib/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations @@ -297,17 +296,7 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: c:/temp/replay/no Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/temp/replay/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: c:/temp/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/temp/node_modules 1 undefined Project: /dev/null/inferredProject2* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: C:/temp/replay/axios-src/node_modules/follow-redirects/package.json 2000 undefined Project: /dev/null/inferredProject2* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: c:/temp/replay/axios-src/lib/core/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/temp/replay/axios-src/lib/core/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: c:/temp/replay/axios-src/lib/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/temp/replay/axios-src/lib/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: c:/temp/replay/axios-src/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/temp/replay/axios-src/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: c:/temp/replay/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/temp/replay/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: c:/temp/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/temp/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: c:/temp/replay/axios-src/lib/core/settle.js 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (5) @@ -347,18 +336,6 @@ Info seq [hh:mm:ss:mss] Project '/dev/null/autoImportProviderProject1*' (AutoIm Info seq [hh:mm:ss:mss] Files (1) Info seq [hh:mm:ss:mss] ----------------------------------------------- -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: c:/temp/replay/axios-src/lib/core/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: c:/temp/replay/axios-src/lib/core/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: c:/temp/replay/axios-src/lib/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: c:/temp/replay/axios-src/lib/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: c:/temp/replay/axios-src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: c:/temp/replay/axios-src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: c:/temp/replay/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: c:/temp/replay/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: c:/temp/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: c:/temp/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: C:/temp/replay/axios-src/node_modules/follow-redirects/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: C:/temp/replay/axios-src/node_modules/follow-redirects/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (5) @@ -493,20 +470,6 @@ Info seq [hh:mm:ss:mss] request: Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: c:/temp/replay/axios-src/lib/core/mergeConfig.js ProjectRootPath: undefined:: Result: undefined Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject3*, currentDirectory: c:/temp/replay/axios-src/lib/core Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject3* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: c:/temp/replay/axios-src/lib/core/AxiosHeaders.js 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/temp/replay/axios-src/lib/core/AxiosHeaders.js 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: c:/temp/replay/axios-src/lib/core 0 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/temp/replay/axios-src/lib/core 0 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: c:/temp/replay/axios-src/lib/core/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/temp/replay/axios-src/lib/core/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: c:/temp/replay/axios-src/lib/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/temp/replay/axios-src/lib/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: c:/temp/replay/axios-src/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/temp/replay/axios-src/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: c:/temp/replay/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/temp/replay/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: c:/temp/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/temp/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject3* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject3*' (Inferred) Info seq [hh:mm:ss:mss] Files (3) @@ -526,7 +489,6 @@ Info seq [hh:mm:ss:mss] ----------------------------------------------- Info seq [hh:mm:ss:mss] AutoImportProviderProject: found 1 root files in 1 dependencies 0 referenced projects in * ms Info seq [hh:mm:ss:mss] Creating AutoImportProviderProject: /dev/null/autoImportProviderProject2*, currentDirectory: c:/temp/replay/axios-src/lib/core Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/autoImportProviderProject2* -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: C:/temp/replay/axios-src/node_modules/follow-redirects/package.json 2000 undefined Project: /dev/null/autoImportProviderProject2* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/autoImportProviderProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/autoImportProviderProject2*' (AutoImportProvider) Info seq [hh:mm:ss:mss] Files (1) diff --git a/tests/baselines/reference/tsserver/symlinkCache/contains-symlinks-discovered-by-project-references-resolution-after-program-creation.js b/tests/baselines/reference/tsserver/symlinkCache/contains-symlinks-discovered-by-project-references-resolution-after-program-creation.js index 498e0aaf299f6..3fd99945f097a 100644 --- a/tests/baselines/reference/tsserver/symlinkCache/contains-symlinks-discovered-by-project-references-resolution-after-program-creation.js +++ b/tests/baselines/reference/tsserver/symlinkCache/contains-symlinks-discovered-by-project-references-resolution-after-program-creation.js @@ -110,7 +110,6 @@ Info seq [hh:mm:ss:mss] Config: /home/src/projects/project/packages/dep/tsconfi Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/dep/tsconfig.json 2000 undefined Project: /home/src/projects/project/packages/app/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/dep 1 undefined Config: /home/src/projects/project/packages/dep/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/dep 1 undefined Config: /home/src/projects/project/packages/dep/tsconfig.json WatchType: Wild card directory -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/app/dep 1 undefined Project: /home/src/projects/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/app/dep 1 undefined Project: /home/src/projects/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/app/src 1 undefined Project: /home/src/projects/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations @@ -126,6 +125,7 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /home/src/projects/project/packages/app/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/dep/package.json 2000 undefined Project: /home/src/projects/project/packages/app/tsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/app/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/app/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/app/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/app/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/node_modules/@types 1 undefined Project: /home/src/projects/project/packages/app/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/telemetry/does-nothing-for-inferred-project.js b/tests/baselines/reference/tsserver/telemetry/does-nothing-for-inferred-project.js index 85ac0ea7d9539..dbfe3934930c9 100644 --- a/tests/baselines/reference/tsserver/telemetry/does-nothing-for-inferred-project.js +++ b/tests/baselines/reference/tsserver/telemetry/does-nothing-for-inferred-project.js @@ -124,13 +124,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -170,7 +168,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -194,7 +191,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/telemetry/even-for-project-with-ts-check-in-config.js b/tests/baselines/reference/tsserver/telemetry/even-for-project-with-ts-check-in-config.js index 78d34f5e188ad..af4a7bca491bf 100644 --- a/tests/baselines/reference/tsserver/telemetry/even-for-project-with-ts-check-in-config.js +++ b/tests/baselines/reference/tsserver/telemetry/even-for-project-with-ts-check-in-config.js @@ -160,13 +160,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -208,7 +206,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -234,7 +231,6 @@ Info seq [hh:mm:ss:mss] event: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/telemetry/only-sends-an-event-once.js b/tests/baselines/reference/tsserver/telemetry/only-sends-an-event-once.js index ea04030e2b8d0..5339200bdc4c9 100644 --- a/tests/baselines/reference/tsserver/telemetry/only-sends-an-event-once.js +++ b/tests/baselines/reference/tsserver/telemetry/only-sends-an-event-once.js @@ -277,10 +277,6 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -312,10 +308,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/tsconfig.json 2000 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Config file Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/projects/project/a/a.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject1*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -429,10 +421,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /home/src/projects/project/a/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/a/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /home/src/projects/project/a/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/a/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/a/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) diff --git a/tests/baselines/reference/tsserver/telemetry/sends-event-for-inferred-project.js b/tests/baselines/reference/tsserver/telemetry/sends-event-for-inferred-project.js index 32ed70192ad59..23e2978fffdc7 100644 --- a/tests/baselines/reference/tsserver/telemetry/sends-event-for-inferred-project.js +++ b/tests/baselines/reference/tsserver/telemetry/sends-event-for-inferred-project.js @@ -128,13 +128,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -174,7 +172,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -198,7 +195,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -261,10 +257,6 @@ Info seq [hh:mm:ss:mss] request: Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /home/src/projects/project/b.js ProjectRootPath: undefined:: Result: undefined Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject2*, currentDirectory: /home/src/projects/project Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/inferredProject2*' (Inferred) Info seq [hh:mm:ss:mss] Files (2) @@ -298,12 +290,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -343,7 +333,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -367,7 +356,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/telemetry/sends-telemetry-for-file-sizes.js b/tests/baselines/reference/tsserver/telemetry/sends-telemetry-for-file-sizes.js index 33d8ece2d14fb..46a0af9370129 100644 --- a/tests/baselines/reference/tsserver/telemetry/sends-telemetry-for-file-sizes.js +++ b/tests/baselines/reference/tsserver/telemetry/sends-telemetry-for-file-sizes.js @@ -177,13 +177,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -224,7 +222,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -249,7 +246,6 @@ Info seq [hh:mm:ss:mss] event: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/telemetry/sends-telemetry-for-typeAcquisition-settings.js b/tests/baselines/reference/tsserver/telemetry/sends-telemetry-for-typeAcquisition-settings.js index 062c777402704..53ca24a3eb9d8 100644 --- a/tests/baselines/reference/tsserver/telemetry/sends-telemetry-for-typeAcquisition-settings.js +++ b/tests/baselines/reference/tsserver/telemetry/sends-telemetry-for-typeAcquisition-settings.js @@ -167,13 +167,11 @@ TI:: [hh:mm:ss:mss] Got install request ], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: ["hunter2","hunter3"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -224,7 +222,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -252,7 +249,6 @@ Info seq [hh:mm:ss:mss] event: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/textStorage/should-be-able-to-return-the-file-size-when-a-JS-file-is-too-large-to-load-into-text.js b/tests/baselines/reference/tsserver/textStorage/should-be-able-to-return-the-file-size-when-a-JS-file-is-too-large-to-load-into-text.js index 795f4502d7858..d066b46f3f0dd 100644 --- a/tests/baselines/reference/tsserver/textStorage/should-be-able-to-return-the-file-size-when-a-JS-file-is-too-large-to-load-into-text.js +++ b/tests/baselines/reference/tsserver/textStorage/should-be-able-to-return-the-file-size-when-a-JS-file-is-too-large-to-load-into-text.js @@ -146,13 +146,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project/a", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -192,7 +190,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -216,7 +213,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typeAquisition/change-after-enabling-typeAquisition-multiple-projects-with-shared-resolution.js b/tests/baselines/reference/tsserver/typeAquisition/change-after-enabling-typeAquisition-multiple-projects-with-shared-resolution.js new file mode 100644 index 0000000000000..1c67b8b12f074 --- /dev/null +++ b/tests/baselines/reference/tsserver/typeAquisition/change-after-enabling-typeAquisition-multiple-projects-with-shared-resolution.js @@ -0,0 +1,1520 @@ +Info seq [hh:mm:ss:mss] currentDirectory:: /home/src/Vscode/Projects/bin useCaseSensitiveFileNames:: false +Info seq [hh:mm:ss:mss] libs Location:: /home/src/tslibs/TS/Lib +Info seq [hh:mm:ss:mss] globalTypingsCacheLocation:: /home/src/Library/Caches/typescript +Info seq [hh:mm:ss:mss] Provided types map file "/home/src/tslibs/TS/Lib/typesMap.json" doesn't exist +Before request +//// [/users/user/projects/project1/app.js] +var x = require('bar'); + +//// [/users/user/projects/node_modules/bar/index.js] +export const x = 1 + +//// [/users/user/projects/project2/app.js] +var x = require('bar'); + +//// [/users/user/projects/project2/app2.js] +var x = require('foo'); + +//// [/users/user/projects/project2/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + } +} + +//// [/users/user/projects/project3/app.js] +var x = require('bar'); + +//// [/users/user/projects/project3/app2.js] +var x = require('foo'); + +//// [/users/user/projects/project3/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false + } +} + +//// [/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts] +export const foo = 1; + +//// [/home/src/tslibs/TS/Lib/lib.d.ts] +/// +interface Boolean {} +interface Function {} +interface CallableFunction {} +interface NewableFunction {} +interface IArguments {} +interface Number { toExponential: any; } +interface Object {} +interface RegExp {} +interface String { charAt: any; } +interface Array { length: number; [n: number]: T; } +interface ReadonlyArray {} +declare const console: { log(msg: any): void; }; + +//// [/home/src/Library/Caches/typescript/package.json] +{ "private": true } + +//// [/home/src/Library/Caches/typescript/node_modules/types-registry/index.json] +{ + "entries": { + "bar": { + "latest": "1.3.0", + "ts2.0": "1.0.0", + "ts2.1": "1.0.0", + "ts2.2": "1.2.0", + "ts2.3": "1.3.0", + "ts2.4": "1.3.0", + "ts2.5": "1.3.0", + "ts2.6": "1.3.0", + "ts2.7": "1.3.0" + }, + "foo": { + "latest": "1.3.0", + "ts2.0": "1.0.0", + "ts2.1": "1.0.0", + "ts2.2": "1.2.0", + "ts2.3": "1.3.0", + "ts2.4": "1.3.0", + "ts2.5": "1.3.0", + "ts2.6": "1.3.0", + "ts2.7": "1.3.0" + } + } +} + +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false + } +} + +//// [/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts] +export const x = 1; + + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project1/app.js" + }, + "seq": 1, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project1/jsconfig.json, currentDirectory: /users/user/projects/project1 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project1/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1 1 undefined Config: /users/user/projects/project1/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1 1 undefined Config: /users/user/projects/project1/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project1/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project1/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/node_modules/bar/index.js', result '/users/user/projects/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "a24ce251bb636300af6d4777b3f4b21687a6424baa3ae50af422af2a5b2dd7f0", + "fileStats": { + "js": 2, + "jsSize": 41, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 1, + "dtsSize": 413, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/app.js", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 1, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/users/user/projects/node_modules/@types: *new* + {"pollingInterval":500} +/users/user/projects/node_modules/bar/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/node_modules: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: *new* + {"pollingInterval":500} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: *new* + {} +/users/user/projects/project1/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/users/user/projects/node_modules: *new* + {} +/users/user/projects/project1: *new* + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/node_modules/bar/index.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project1/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* + +Before request + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project2/app.js" + }, + "seq": 2, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project2/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project2/jsconfig.json, currentDirectory: /users/user/projects/project2 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project2/jsconfig.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project2/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project2/app.js", + "/users/user/projects/project2/app2.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project2/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2 1 undefined Config: /users/user/projects/project2/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2 1 undefined Config: /users/user/projects/project2/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project2/app2.js 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project2/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'bar' was found in cache from location '/users/user/projects'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project2/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] Found 'package.json' at '/home/src/Library/Caches/typescript/package.json'. +Info seq [hh:mm:ss:mss] ======== Resolving module 'foo' from '/users/user/projects/project2/app2.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'foo' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/foo.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/foo.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'foo' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/foo.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/foo.jsx' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] ======== Module name 'foo' was not resolved. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project2/jsconfig.json'. Running extra resolution pass for module 'foo' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/bar/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/foo/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules/@types 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules/@types 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project2/app.js SVC-1-0 "var x = require('bar');" + /home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts Text-1 "export const foo = 1;" + /users/user/projects/project2/app2.js Text-1 "var x = require('foo');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + Imported via 'foo' from file 'app2.js' + app2.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: Creating typing installer + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project2/node_modules: *new* + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: *new* + {"pollingInterval":500} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: *new* + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: *new* + {} +/users/user/projects/project2/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: *new* + {} +/users/user/projects/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project2: *new* + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 0 + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts *changed* + version: Text-1 + containingProjects: 2 *changed* + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json *new* +/users/user/projects/node_modules/bar/index.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project2/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json + +TI:: [hh:mm:ss:mss] Global cache location '/home/src/Library/Caches/typescript', safe file path '/home/src/tslibs/TS/Lib/typingSafeList.json', types map path /home/src/tslibs/TS/Lib/typesMap.json +TI:: [hh:mm:ss:mss] Processing cache location '/home/src/Library/Caches/typescript' +TI:: [hh:mm:ss:mss] Trying to find '/home/src/Library/Caches/typescript/package.json'... +TI:: [hh:mm:ss:mss] Finished processing cache location '/home/src/Library/Caches/typescript' +TI:: [hh:mm:ss:mss] Npm config file: /home/src/Library/Caches/typescript/package.json +TI:: [hh:mm:ss:mss] Updating types-registry npm package... +TI:: [hh:mm:ss:mss] npm install --ignore-scripts types-registry@latest +TI:: [hh:mm:ss:mss] Updated types-registry npm package +TI:: typing installer creation complete + +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/users/user/projects/project2/app.js", + "/users/user/projects/project2/app2.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "projectRootPath": "/users/user/projects/project2", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [], + "filesToWatch": [ + "/users/user/projects/project2/bower_components", + "/users/user/projects/project2/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project2/jsconfig.json", + "files": [ + "/users/user/projects/project2/bower_components", + "/users/user/projects/project2/node_modules" + ] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/bower_components 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/bower_components 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] No new typings were requested as a result of typings discovery +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "318b0b83fbc7be458819ec932b0b673d12709d07882bd4b96f96985c09b696c4", + "fileStats": { + "js": 2, + "jsSize": 46, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 3, + "dtsSize": 453, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": true, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project2/app.js", + "configFile": "/users/user/projects/project2/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 2, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project2/bower_components: *new* + {"pollingInterval":500} +/users/user/projects/project2/node_modules: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: + {} +/users/user/projects/project2/jsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project2: + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) *changed* + projectStateVersion: 1 + projectProgramVersion: 1 *changed* + autoImportProviderHost: false *changed* + +Before request + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project3/app.js" + }, + "seq": 3, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project3/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project3/jsconfig.json, currentDirectory: /users/user/projects/project3 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/jsconfig.json 2000 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project3/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project3/app.js", + "/users/user/projects/project3/app2.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project3/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project3/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project3/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3 1 undefined Config: /users/user/projects/project3/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3 1 undefined Config: /users/user/projects/project3/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/app2.js 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project3/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project3/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'bar' was found in cache from location '/users/user/projects'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'foo' from '/users/user/projects/project3/app2.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'foo' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project3/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'foo' was found in cache from location '/users/user/projects'. +Info seq [hh:mm:ss:mss] ======== Module name 'foo' was not resolved. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules/@types 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules/@types 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project3/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project3/app.js SVC-1-0 "var x = require('bar');" + /users/user/projects/project3/app2.js Text-1 "var x = require('foo');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + app2.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project3/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "b03a661e323d76898c84af369d25377a0a5531270f5a2f1e243ca14104fd96c1", + "fileStats": { + "js": 3, + "jsSize": 64, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 1, + "dtsSize": 413, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project3/app.js", + "configFile": "/users/user/projects/project3/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 3, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project2/bower_components: + {"pollingInterval":500} +/users/user/projects/project2/node_modules: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules: *new* + {"pollingInterval":500} +/users/user/projects/project3/node_modules/@types: *new* + {"pollingInterval":500} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: + {} +/users/user/projects/project2/jsconfig.json: + {} +/users/user/projects/project3/app2.js: *new* + {} +/users/user/projects/project3/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project2: + {} +/users/user/projects/project3: *new* + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts *changed* + version: Text-1 + containingProjects: 3 *changed* + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json + /users/user/projects/project3/jsconfig.json *new* +/users/user/projects/node_modules/bar/index.js *changed* + version: Text-1 + containingProjects: 2 *changed* + /users/user/projects/project1/jsconfig.json + /users/user/projects/project3/jsconfig.json *new* +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project2/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project3/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json *default* +/users/user/projects/project3/app2.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json + +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Before running Timeout callback:: count: 2 +1: /users/user/projects/project1/jsconfig.json +2: *ensureProjectForOpenFiles* +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + } +} + + +Timeout callback:: count: 2 +1: /users/user/projects/project1/jsconfig.json *new* +2: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 2 *changed* + projectProgramVersion: 1 + dirty: true *changed* + autoImportProviderHost: undefined *changed* +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Change in config file detected" + } + } +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Resolution for module 'bar' was found in cache from location '/users/user/projects/project1'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/users/user/projects/project1/app.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "projectRootPath": "/users/user/projects/project1", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [], + "filesToWatch": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json", + "files": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] No new typings were requested as a result of typings discovery +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/jsconfig.json", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /users/user/projects/project1/app.js,/users/user/projects/project2/app.js,/users/user/projects/project3/app.js +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/users/user/projects/project1/app.js", + "/users/user/projects/project2/app.js", + "/users/user/projects/project3/app.js" + ] + } + } +After running Timeout callback:: count: 0 + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project2/bower_components: + {"pollingInterval":500} +/users/user/projects/project2/node_modules: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules: + {"pollingInterval":500} +/users/user/projects/project3/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: + {} +/users/user/projects/project2/jsconfig.json: + {} +/users/user/projects/project3/app2.js: + {} +/users/user/projects/project3/jsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project2: + {} +/users/user/projects/project3: + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 2 + projectProgramVersion: 2 *changed* + dirty: false *changed* +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts *changed* + version: Text-1 + containingProjects: 2 *changed* + /users/user/projects/project2/jsconfig.json + /users/user/projects/project1/jsconfig.json *new* +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 3 + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json + /users/user/projects/project3/jsconfig.json +/users/user/projects/node_modules/bar/index.js *changed* + version: Text-1 + containingProjects: 1 *changed* + /users/user/projects/project3/jsconfig.json + /users/user/projects/project1/jsconfig.json *deleted* +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project2/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project3/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json *default* +/users/user/projects/project3/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Before running PendingInstalls callback:: count: 0 + +After running PendingInstalls callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 diff --git a/tests/baselines/reference/tsserver/typeAquisition/change-after-enabling-typeAquisition-multiple-projects.js b/tests/baselines/reference/tsserver/typeAquisition/change-after-enabling-typeAquisition-multiple-projects.js new file mode 100644 index 0000000000000..f3e6b7e7b12f2 --- /dev/null +++ b/tests/baselines/reference/tsserver/typeAquisition/change-after-enabling-typeAquisition-multiple-projects.js @@ -0,0 +1,1613 @@ +Info seq [hh:mm:ss:mss] currentDirectory:: /home/src/Vscode/Projects/bin useCaseSensitiveFileNames:: false +Info seq [hh:mm:ss:mss] libs Location:: /home/src/tslibs/TS/Lib +Info seq [hh:mm:ss:mss] globalTypingsCacheLocation:: /home/src/Library/Caches/typescript +Info seq [hh:mm:ss:mss] Provided types map file "/home/src/tslibs/TS/Lib/typesMap.json" doesn't exist +Before request +//// [/users/user/projects/project1/app.js] +var x = require('bar'); + +//// [/users/user/projects/project1/node_modules/bar/index.js] +export const x = 1 + +//// [/users/user/projects/project2/app.js] +var x = require('bar'); + +//// [/users/user/projects/project2/app2.js] +var x = require('foo'); + +//// [/users/user/projects/project2/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + } +} + +//// [/users/user/projects/project3/app.js] +var x = require('bar'); + +//// [/users/user/projects/project3/app2.js] +var x = require('foo'); + +//// [/users/user/projects/project3/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false + } +} + +//// [/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts] +export const foo = 1; + +//// [/users/user/projects/project2/node_modules/bar/index.js] +export const x = 1 + +//// [/users/user/projects/project3/node_modules/bar/index.js] +export const x = 1 + +//// [/home/src/tslibs/TS/Lib/lib.d.ts] +/// +interface Boolean {} +interface Function {} +interface CallableFunction {} +interface NewableFunction {} +interface IArguments {} +interface Number { toExponential: any; } +interface Object {} +interface RegExp {} +interface String { charAt: any; } +interface Array { length: number; [n: number]: T; } +interface ReadonlyArray {} +declare const console: { log(msg: any): void; }; + +//// [/home/src/Library/Caches/typescript/package.json] +{ "private": true } + +//// [/home/src/Library/Caches/typescript/node_modules/types-registry/index.json] +{ + "entries": { + "bar": { + "latest": "1.3.0", + "ts2.0": "1.0.0", + "ts2.1": "1.0.0", + "ts2.2": "1.2.0", + "ts2.3": "1.3.0", + "ts2.4": "1.3.0", + "ts2.5": "1.3.0", + "ts2.6": "1.3.0", + "ts2.7": "1.3.0" + }, + "foo": { + "latest": "1.3.0", + "ts2.0": "1.0.0", + "ts2.1": "1.0.0", + "ts2.2": "1.2.0", + "ts2.3": "1.3.0", + "ts2.4": "1.3.0", + "ts2.5": "1.3.0", + "ts2.6": "1.3.0", + "ts2.7": "1.3.0" + } + } +} + +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false + } +} + +//// [/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts] +export const x = 1; + + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project1/app.js" + }, + "seq": 1, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project1/jsconfig.json, currentDirectory: /users/user/projects/project1 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project1/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1 1 undefined Config: /users/user/projects/project1/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1 1 undefined Config: /users/user/projects/project1/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project1/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/project1/node_modules/bar/index.js', result '/users/user/projects/project1/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project1/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/project1/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "a24ce251bb636300af6d4777b3f4b21687a6424baa3ae50af422af2a5b2dd7f0", + "fileStats": { + "js": 2, + "jsSize": 41, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 1, + "dtsSize": 413, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/app.js", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 1, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/users/user/projects/node_modules: *new* + {"pollingInterval":500} +/users/user/projects/node_modules/@types: *new* + {"pollingInterval":500} +/users/user/projects/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/@types: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules/bar/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/package.json: *new* + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: *new* + {} +/users/user/projects/project1/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/users/user/projects/project1: *new* + {} +/users/user/projects/project1/node_modules: *new* + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project1/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project1/node_modules/bar/index.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json + +Before request + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project2/app.js" + }, + "seq": 2, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project2/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project2/jsconfig.json, currentDirectory: /users/user/projects/project2 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project2/jsconfig.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project2/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project2/app.js", + "/users/user/projects/project2/app2.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project2/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2 1 undefined Config: /users/user/projects/project2/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2 1 undefined Config: /users/user/projects/project2/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project2/app2.js 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project2/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/project2/node_modules/bar/index.js', result '/users/user/projects/project2/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project2/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project2/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] Found 'package.json' at '/home/src/Library/Caches/typescript/package.json'. +Info seq [hh:mm:ss:mss] ======== Resolving module 'foo' from '/users/user/projects/project2/app2.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'foo' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/foo.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/foo.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'foo' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/foo.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/foo.jsx' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] ======== Module name 'foo' was not resolved. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project2/jsconfig.json'. Running extra resolution pass for module 'foo' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/bar/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/foo/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules/@types 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules/@types 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project2/app.js SVC-1-0 "var x = require('bar');" + /home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts Text-1 "export const foo = 1;" + /users/user/projects/project2/app2.js Text-1 "var x = require('foo');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + Imported via 'foo' from file 'app2.js' + app2.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: Creating typing installer + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/package.json: + {"pollingInterval":2000} +/users/user/projects/project2/node_modules/@types: *new* + {"pollingInterval":500} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: *new* + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: *new* + {} +/users/user/projects/project2/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: *new* + {} +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} +/users/user/projects/project2: *new* + {} +/users/user/projects/project2/node_modules: *new* + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 0 + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts *changed* + version: Text-1 + containingProjects: 2 *changed* + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json *new* +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project1/node_modules/bar/index.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project2/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json + +TI:: [hh:mm:ss:mss] Global cache location '/home/src/Library/Caches/typescript', safe file path '/home/src/tslibs/TS/Lib/typingSafeList.json', types map path /home/src/tslibs/TS/Lib/typesMap.json +TI:: [hh:mm:ss:mss] Processing cache location '/home/src/Library/Caches/typescript' +TI:: [hh:mm:ss:mss] Trying to find '/home/src/Library/Caches/typescript/package.json'... +TI:: [hh:mm:ss:mss] Finished processing cache location '/home/src/Library/Caches/typescript' +TI:: [hh:mm:ss:mss] Npm config file: /home/src/Library/Caches/typescript/package.json +TI:: [hh:mm:ss:mss] Updating types-registry npm package... +TI:: [hh:mm:ss:mss] npm install --ignore-scripts types-registry@latest +TI:: [hh:mm:ss:mss] Updated types-registry npm package +TI:: typing installer creation complete + +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/users/user/projects/project2/app.js", + "/users/user/projects/project2/app2.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "projectRootPath": "/users/user/projects/project2", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project2/node_modules; all files: [] +TI:: [hh:mm:ss:mss] Found package names: [] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [], + "filesToWatch": [ + "/users/user/projects/project2/bower_components", + "/users/user/projects/project2/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project2/jsconfig.json", + "files": [ + "/users/user/projects/project2/bower_components", + "/users/user/projects/project2/node_modules" + ] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/bower_components 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/bower_components 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] No new typings were requested as a result of typings discovery +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "318b0b83fbc7be458819ec932b0b673d12709d07882bd4b96f96985c09b696c4", + "fileStats": { + "js": 2, + "jsSize": 46, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 3, + "dtsSize": 453, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": true, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project2/app.js", + "configFile": "/users/user/projects/project2/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 2, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/package.json: + {"pollingInterval":2000} +/users/user/projects/project2/bower_components: *new* + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: + {} +/users/user/projects/project2/jsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} +/users/user/projects/project2: + {} +/users/user/projects/project2/node_modules: + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) *changed* + projectStateVersion: 1 + projectProgramVersion: 1 *changed* + autoImportProviderHost: false *changed* + +Before request + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project3/app.js" + }, + "seq": 3, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project3/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project3/jsconfig.json, currentDirectory: /users/user/projects/project3 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/jsconfig.json 2000 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project3/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project3/app.js", + "/users/user/projects/project3/app2.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project3/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project3/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project3/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3 1 undefined Config: /users/user/projects/project3/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3 1 undefined Config: /users/user/projects/project3/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/app2.js 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project3/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project3/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/project3/node_modules/bar/index.js', result '/users/user/projects/project3/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project3/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] ======== Resolving module 'foo' from '/users/user/projects/project3/app2.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'foo' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/foo.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/foo.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project3/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'foo' was found in cache from location '/users/user/projects'. +Info seq [hh:mm:ss:mss] ======== Module name 'foo' was not resolved. ======== +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules/package.json 2000 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/package.json 2000 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules/@types 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules/@types 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project3/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/project3/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project3/app.js SVC-1-0 "var x = require('bar');" + /users/user/projects/project3/app2.js Text-1 "var x = require('foo');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + app2.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project3/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "b03a661e323d76898c84af369d25377a0a5531270f5a2f1e243ca14104fd96c1", + "fileStats": { + "js": 3, + "jsSize": 64, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 1, + "dtsSize": 413, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project3/app.js", + "configFile": "/users/user/projects/project3/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 3, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/package.json: + {"pollingInterval":2000} +/users/user/projects/project2/bower_components: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules/@types: *new* + {"pollingInterval":500} +/users/user/projects/project3/node_modules/bar/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project3/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project3/package.json: *new* + {"pollingInterval":2000} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: + {} +/users/user/projects/project2/jsconfig.json: + {} +/users/user/projects/project3/app2.js: *new* + {} +/users/user/projects/project3/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} +/users/user/projects/project2: + {} +/users/user/projects/project2/node_modules: + {} +/users/user/projects/project3: *new* + {} +/users/user/projects/project3/node_modules: *new* + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts *changed* + version: Text-1 + containingProjects: 3 *changed* + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json + /users/user/projects/project3/jsconfig.json *new* +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project1/node_modules/bar/index.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project2/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project3/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json *default* +/users/user/projects/project3/app2.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json +/users/user/projects/project3/node_modules/bar/index.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json + +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Before running Timeout callback:: count: 2 +1: /users/user/projects/project1/jsconfig.json +2: *ensureProjectForOpenFiles* +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + } +} + + +Timeout callback:: count: 2 +1: /users/user/projects/project1/jsconfig.json *new* +2: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 2 *changed* + projectProgramVersion: 1 + dirty: true *changed* + autoImportProviderHost: undefined *changed* +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Change in config file detected" + } + } +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Resolution for module 'bar' was found in cache from location '/users/user/projects/project1'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project1/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project1/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project1/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/users/user/projects/project1/app.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "projectRootPath": "/users/user/projects/project1", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project1/node_modules; all files: [] +TI:: [hh:mm:ss:mss] Found package names: [] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [], + "filesToWatch": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json", + "files": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] No new typings were requested as a result of typings discovery +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/jsconfig.json", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /users/user/projects/project1/app.js,/users/user/projects/project2/app.js,/users/user/projects/project3/app.js +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/users/user/projects/project1/app.js", + "/users/user/projects/project2/app.js", + "/users/user/projects/project3/app.js" + ] + } + } +After running Timeout callback:: count: 0 + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project2/bower_components: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project3/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project3/package.json: + {"pollingInterval":2000} + +PolledWatches *deleted*:: +/users/user/projects/project1/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: + {} +/users/user/projects/project2/jsconfig.json: + {} +/users/user/projects/project3/app2.js: + {} +/users/user/projects/project3/jsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} +/users/user/projects/project2: + {} +/users/user/projects/project2/node_modules: + {} +/users/user/projects/project3: + {} +/users/user/projects/project3/node_modules: + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 2 + projectProgramVersion: 2 *changed* + dirty: false *changed* +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts *changed* + version: Text-1 + containingProjects: 2 *changed* + /users/user/projects/project2/jsconfig.json + /users/user/projects/project1/jsconfig.json *new* +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 3 + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json + /users/user/projects/project3/jsconfig.json +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project1/node_modules/bar/index.js *changed* + version: Text-1 + containingProjects: 0 *changed* + /users/user/projects/project1/jsconfig.json *deleted* +/users/user/projects/project2/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project3/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json *default* +/users/user/projects/project3/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json +/users/user/projects/project3/node_modules/bar/index.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Before running PendingInstalls callback:: count: 0 + +After running PendingInstalls callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 diff --git a/tests/baselines/reference/tsserver/typeAquisition/change-after-enabling-typeAquisition.js b/tests/baselines/reference/tsserver/typeAquisition/change-after-enabling-typeAquisition.js new file mode 100644 index 0000000000000..9a13d122c36f6 --- /dev/null +++ b/tests/baselines/reference/tsserver/typeAquisition/change-after-enabling-typeAquisition.js @@ -0,0 +1,759 @@ +Info seq [hh:mm:ss:mss] currentDirectory:: /home/src/Vscode/Projects/bin useCaseSensitiveFileNames:: false +Info seq [hh:mm:ss:mss] libs Location:: /home/src/tslibs/TS/Lib +Info seq [hh:mm:ss:mss] globalTypingsCacheLocation:: /home/src/Library/Caches/typescript +Info seq [hh:mm:ss:mss] Provided types map file "/home/src/tslibs/TS/Lib/typesMap.json" doesn't exist +Before request +//// [/users/user/projects/project1/app.js] +var x = require('bar'); + +//// [/users/user/projects/project1/node_modules/bar/index.js] +export const x = 1 + +//// [/home/src/tslibs/TS/Lib/lib.d.ts] +/// +interface Boolean {} +interface Function {} +interface CallableFunction {} +interface NewableFunction {} +interface IArguments {} +interface Number { toExponential: any; } +interface Object {} +interface RegExp {} +interface String { charAt: any; } +interface Array { length: number; [n: number]: T; } +interface ReadonlyArray {} +declare const console: { log(msg: any): void; }; + +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false + } +} + +//// [/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts] +export const x = 1; + + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project1/app.js" + }, + "seq": 1, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project1/jsconfig.json, currentDirectory: /users/user/projects/project1 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project1/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1 1 undefined Config: /users/user/projects/project1/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1 1 undefined Config: /users/user/projects/project1/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project1/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/project1/node_modules/bar/index.js', result '/users/user/projects/project1/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project1/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/project1/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "a24ce251bb636300af6d4777b3f4b21687a6424baa3ae50af422af2a5b2dd7f0", + "fileStats": { + "js": 2, + "jsSize": 41, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 1, + "dtsSize": 413, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/app.js", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 1, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/users/user/projects/node_modules: *new* + {"pollingInterval":500} +/users/user/projects/node_modules/@types: *new* + {"pollingInterval":500} +/users/user/projects/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/@types: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules/bar/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/package.json: *new* + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: *new* + {} +/users/user/projects/project1/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/users/user/projects/project1: *new* + {} +/users/user/projects/project1/node_modules: *new* + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project1/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project1/node_modules/bar/index.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json + +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Before running Timeout callback:: count: 2 +1: /users/user/projects/project1/jsconfig.json +2: *ensureProjectForOpenFiles* +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + } +} + + +Timeout callback:: count: 2 +1: /users/user/projects/project1/jsconfig.json *new* +2: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 2 *changed* + projectProgramVersion: 1 + dirty: true *changed* + autoImportProviderHost: undefined *changed* + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Change in config file detected" + } + } +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Resolution for module 'bar' was found in cache from location '/users/user/projects/project1'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project1/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project1/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' does not exist. +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project1/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: Creating typing installer + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} + +PolledWatches *deleted*:: +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: *new* + {} +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 2 + projectProgramVersion: 1 + dirty: false *changed* + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project1/node_modules/bar/index.js *changed* + version: Text-1 + containingProjects: 0 *changed* + /users/user/projects/project1/jsconfig.json *deleted* + +TI:: [hh:mm:ss:mss] Global cache location '/home/src/Library/Caches/typescript', safe file path '/home/src/tslibs/TS/Lib/typingSafeList.json', types map path /home/src/tslibs/TS/Lib/typesMap.json +TI:: [hh:mm:ss:mss] Processing cache location '/home/src/Library/Caches/typescript' +TI:: [hh:mm:ss:mss] Trying to find '/home/src/Library/Caches/typescript/package.json'... +TI:: [hh:mm:ss:mss] Finished processing cache location '/home/src/Library/Caches/typescript' +TI:: [hh:mm:ss:mss] Npm config file: /home/src/Library/Caches/typescript/package.json +TI:: [hh:mm:ss:mss] Npm config file: '/home/src/Library/Caches/typescript/package.json' is missing, creating new one... +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /home/src/Library/Caches/typescript/package.json 0:: WatchInfo: /home/src/Library/Caches/typescript/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /home/src/Library/Caches/typescript/package.json 0:: WatchInfo: /home/src/Library/Caches/typescript/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /home/src/Library/Caches/typescript/package.json 0:: WatchInfo: /home/src/Library/Caches/typescript/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /home/src/Library/Caches/typescript/package.json 0:: WatchInfo: /home/src/Library/Caches/typescript/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +TI:: [hh:mm:ss:mss] Updating types-registry npm package... +TI:: [hh:mm:ss:mss] npm install --ignore-scripts types-registry@latest +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/types-registry :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/types-registry :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/types-registry/index.json :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/types-registry/index.json :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +TI:: [hh:mm:ss:mss] Updated types-registry npm package +TI:: typing installer creation complete +//// [/home/src/Library/Caches/typescript/package.json] +{ "private": true } + +//// [/home/src/Library/Caches/typescript/node_modules/types-registry/index.json] +{ + "entries": { + "bar": { + "latest": "1.3.0", + "ts2.0": "1.0.0", + "ts2.1": "1.0.0", + "ts2.2": "1.2.0", + "ts2.3": "1.3.0", + "ts2.4": "1.3.0", + "ts2.5": "1.3.0", + "ts2.6": "1.3.0", + "ts2.7": "1.3.0" + } + } +} + + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} + +PolledWatches *deleted*:: +/home/src/Library/Caches/typescript/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: *new* + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} + +Timeout callback:: count: 2 +2: *ensureProjectForOpenFiles* +6: /users/user/projects/project1/jsconfig.jsonFailedLookupInvalidation *new* + +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/users/user/projects/project1/app.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "projectRootPath": "/users/user/projects/project1", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project1/node_modules; all files: [] +TI:: [hh:mm:ss:mss] Found package names: [] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [], + "filesToWatch": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json", + "files": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] No new typings were requested as a result of typings discovery +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Found 'package.json' at '/home/src/Library/Caches/typescript/package.json'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'bar' from '/users/user/projects/project1/app.js' of old program, it was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 3 projectProgramVersion: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/jsconfig.json", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +After running Timeout callback:: count: 1 + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/bower_components: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} + +Timeout callback:: count: 1 +2: *ensureProjectForOpenFiles* *deleted* +6: /users/user/projects/project1/jsconfig.jsonFailedLookupInvalidation *deleted* +7: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 3 *changed* + projectProgramVersion: 3 *changed* + +Before running Timeout callback:: count: 1 +7: *ensureProjectForOpenFiles* + +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /users/user/projects/project1/app.js +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/users/user/projects/project1/app.js" + ] + } + } +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Before running PendingInstalls callback:: count: 0 + +After running PendingInstalls callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 diff --git a/tests/baselines/reference/tsserver/typeAquisition/changes-to-typeAquisition-when-typing-installer-installs-typing-multiple-projects-with-shared-resolution.js b/tests/baselines/reference/tsserver/typeAquisition/changes-to-typeAquisition-when-typing-installer-installs-typing-multiple-projects-with-shared-resolution.js new file mode 100644 index 0000000000000..97f4cbfb695a3 --- /dev/null +++ b/tests/baselines/reference/tsserver/typeAquisition/changes-to-typeAquisition-when-typing-installer-installs-typing-multiple-projects-with-shared-resolution.js @@ -0,0 +1,2599 @@ +Info seq [hh:mm:ss:mss] currentDirectory:: /home/src/Vscode/Projects/bin useCaseSensitiveFileNames:: false +Info seq [hh:mm:ss:mss] libs Location:: /home/src/tslibs/TS/Lib +Info seq [hh:mm:ss:mss] globalTypingsCacheLocation:: /home/src/Library/Caches/typescript +Info seq [hh:mm:ss:mss] Provided types map file "/home/src/tslibs/TS/Lib/typesMap.json" doesn't exist +Before request +//// [/users/user/projects/project1/app.js] +var x = require('bar'); + +//// [/users/user/projects/node_modules/bar/index.js] +export const x = 1 + +//// [/users/user/projects/project2/app.js] +var x = require('bar'); + +//// [/users/user/projects/project2/app2.js] +var x = require('foo'); + +//// [/users/user/projects/project2/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + } +} + +//// [/users/user/projects/project3/app.js] +var x = require('bar'); + +//// [/users/user/projects/project3/app2.js] +var x = require('foo'); + +//// [/users/user/projects/project3/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false + } +} + +//// [/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts] +export const foo = 1; + +//// [/home/src/tslibs/TS/Lib/lib.d.ts] +/// +interface Boolean {} +interface Function {} +interface CallableFunction {} +interface NewableFunction {} +interface IArguments {} +interface Number { toExponential: any; } +interface Object {} +interface RegExp {} +interface String { charAt: any; } +interface Array { length: number; [n: number]: T; } +interface ReadonlyArray {} +declare const console: { log(msg: any): void; }; + +//// [/home/src/Library/Caches/typescript/package.json] +{ "private": true } + +//// [/home/src/Library/Caches/typescript/node_modules/types-registry/index.json] +{ + "entries": { + "bar": { + "latest": "1.3.0", + "ts2.0": "1.0.0", + "ts2.1": "1.0.0", + "ts2.2": "1.2.0", + "ts2.3": "1.3.0", + "ts2.4": "1.3.0", + "ts2.5": "1.3.0", + "ts2.6": "1.3.0", + "ts2.7": "1.3.0" + }, + "foo": { + "latest": "1.3.0", + "ts2.0": "1.0.0", + "ts2.1": "1.0.0", + "ts2.2": "1.2.0", + "ts2.3": "1.3.0", + "ts2.4": "1.3.0", + "ts2.5": "1.3.0", + "ts2.6": "1.3.0", + "ts2.7": "1.3.0" + } + } +} + +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + } +} + + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project1/app.js" + }, + "seq": 1, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project1/jsconfig.json, currentDirectory: /users/user/projects/project1 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project1/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1 1 undefined Config: /users/user/projects/project1/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1 1 undefined Config: /users/user/projects/project1/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project1/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project1/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/node_modules/bar/index.js', result '/users/user/projects/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project1/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: Creating typing installer + +PolledWatches:: +/users/user/projects/node_modules/@types: *new* + {"pollingInterval":500} +/users/user/projects/node_modules/bar/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/node_modules: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: *new* + {"pollingInterval":500} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: *new* + {} +/users/user/projects/project1/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/users/user/projects/node_modules: *new* + {} +/users/user/projects/project1: *new* + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 0 + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/node_modules/bar/index.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project1/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* + +TI:: [hh:mm:ss:mss] Global cache location '/home/src/Library/Caches/typescript', safe file path '/home/src/tslibs/TS/Lib/typingSafeList.json', types map path /home/src/tslibs/TS/Lib/typesMap.json +TI:: [hh:mm:ss:mss] Processing cache location '/home/src/Library/Caches/typescript' +TI:: [hh:mm:ss:mss] Trying to find '/home/src/Library/Caches/typescript/package.json'... +TI:: [hh:mm:ss:mss] Finished processing cache location '/home/src/Library/Caches/typescript' +TI:: [hh:mm:ss:mss] Npm config file: /home/src/Library/Caches/typescript/package.json +TI:: [hh:mm:ss:mss] Updating types-registry npm package... +TI:: [hh:mm:ss:mss] npm install --ignore-scripts types-registry@latest +TI:: [hh:mm:ss:mss] Updated types-registry npm package +TI:: typing installer creation complete + +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/users/user/projects/project1/app.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "unresolvedImports": [ + "bar" + ], + "projectRootPath": "/users/user/projects/project1", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: ["bar"] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [ + "bar" + ], + "filesToWatch": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json", + "files": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Installing typings ["bar"] +TI:: [hh:mm:ss:mss] Npm config file: /home/src/Library/Caches/typescript/package.json +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "event::beginInstallTypes", + "eventId": 1, + "typingsInstallerVersion": "FakeVersion", + "projectName": "/users/user/projects/project1/jsconfig.json" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "beginInstallTypes", + "body": { + "eventId": 1 + } + } +TI:: [hh:mm:ss:mss] #1 with cwd: /home/src/Library/Caches/typescript arguments: [ + "@types/bar@tsFakeMajor.Minor" +] +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "a24ce251bb636300af6d4777b3f4b21687a6424baa3ae50af422af2a5b2dd7f0", + "fileStats": { + "js": 2, + "jsSize": 41, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 1, + "dtsSize": 413, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": true, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/app.js", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 1, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} + +FsWatchesRecursive:: +/users/user/projects/node_modules: + {} +/users/user/projects/project1: + {} + +PendingInstalls callback:: count: 1 +1: #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 1 + projectProgramVersion: 1 *changed* + autoImportProviderHost: false *changed* + +Before request + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project2/app.js" + }, + "seq": 2, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project2/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project2/jsconfig.json, currentDirectory: /users/user/projects/project2 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project2/jsconfig.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project2/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project2/app.js", + "/users/user/projects/project2/app2.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project2/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2 1 undefined Config: /users/user/projects/project2/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2 1 undefined Config: /users/user/projects/project2/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project2/app2.js 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project2/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'bar' was found in cache from location '/users/user/projects'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'foo' from '/users/user/projects/project2/app2.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'foo' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/foo.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/foo.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'foo' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/foo.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/foo.jsx' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] ======== Module name 'foo' was not resolved. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project2/jsconfig.json'. Running extra resolution pass for module 'foo' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] Found 'package.json' at '/home/src/Library/Caches/typescript/package.json'. +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/foo/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules/@types 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules/@types 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project2/app.js SVC-1-0 "var x = require('bar');" + /home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts Text-1 "export const foo = 1;" + /users/user/projects/project2/app2.js Text-1 "var x = require('foo');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + Imported via 'foo' from file 'app2.js' + app2.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/users/user/projects/project2/app.js", + "/users/user/projects/project2/app2.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "unresolvedImports": [ + "bar" + ], + "projectRootPath": "/users/user/projects/project2", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: ["bar"] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [ + "bar" + ], + "filesToWatch": [ + "/users/user/projects/project2/bower_components", + "/users/user/projects/project2/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project2/jsconfig.json", + "files": [ + "/users/user/projects/project2/bower_components", + "/users/user/projects/project2/node_modules" + ] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/bower_components 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/bower_components 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Installing typings ["bar"] +TI:: [hh:mm:ss:mss] Npm config file: /home/src/Library/Caches/typescript/package.json +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "event::beginInstallTypes", + "eventId": 2, + "typingsInstallerVersion": "FakeVersion", + "projectName": "/users/user/projects/project2/jsconfig.json" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "beginInstallTypes", + "body": { + "eventId": 2 + } + } +TI:: [hh:mm:ss:mss] #2 with cwd: /home/src/Library/Caches/typescript arguments: [ + "@types/bar@tsFakeMajor.Minor" +] +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "318b0b83fbc7be458819ec932b0b673d12709d07882bd4b96f96985c09b696c4", + "fileStats": { + "js": 3, + "jsSize": 64, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 2, + "dtsSize": 434, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": true, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project2/app.js", + "configFile": "/users/user/projects/project2/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 2, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: + {"pollingInterval":500} +/users/user/projects/project1/node_modules: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project2/bower_components: *new* + {"pollingInterval":500} +/users/user/projects/project2/node_modules: *new* + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: *new* + {"pollingInterval":500} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: *new* + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: *new* + {} +/users/user/projects/project2/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: *new* + {} +/users/user/projects/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project2: *new* + {} + +PendingInstalls callback:: count: 2 +1: #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] +2: #2 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts *changed* + version: Text-1 + containingProjects: 2 *changed* + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json *new* +/users/user/projects/node_modules/bar/index.js *changed* + version: Text-1 + containingProjects: 2 *changed* + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json *new* +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project2/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json + +Before request + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project3/app.js" + }, + "seq": 3, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project3/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project3/jsconfig.json, currentDirectory: /users/user/projects/project3 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/jsconfig.json 2000 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project3/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project3/app.js", + "/users/user/projects/project3/app2.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project3/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project3/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project3/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3 1 undefined Config: /users/user/projects/project3/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3 1 undefined Config: /users/user/projects/project3/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/app2.js 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project3/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project3/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'bar' was found in cache from location '/users/user/projects'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'foo' from '/users/user/projects/project3/app2.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'foo' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project3/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'foo' was found in cache from location '/users/user/projects'. +Info seq [hh:mm:ss:mss] ======== Module name 'foo' was not resolved. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules/@types 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules/@types 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project3/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project3/app.js SVC-1-0 "var x = require('bar');" + /users/user/projects/project3/app2.js Text-1 "var x = require('foo');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + app2.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project3/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "b03a661e323d76898c84af369d25377a0a5531270f5a2f1e243ca14104fd96c1", + "fileStats": { + "js": 3, + "jsSize": 64, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 1, + "dtsSize": 413, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project3/app.js", + "configFile": "/users/user/projects/project3/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 3, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: + {"pollingInterval":500} +/users/user/projects/project1/node_modules: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project2/bower_components: + {"pollingInterval":500} +/users/user/projects/project2/node_modules: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules: *new* + {"pollingInterval":500} +/users/user/projects/project3/node_modules/@types: *new* + {"pollingInterval":500} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: + {} +/users/user/projects/project2/jsconfig.json: + {} +/users/user/projects/project3/app2.js: *new* + {} +/users/user/projects/project3/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project2: + {} +/users/user/projects/project3: *new* + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts *changed* + version: Text-1 + containingProjects: 3 *changed* + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json + /users/user/projects/project3/jsconfig.json *new* +/users/user/projects/node_modules/bar/index.js *changed* + version: Text-1 + containingProjects: 3 *changed* + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json + /users/user/projects/project3/jsconfig.json *new* +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project2/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project3/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json *default* +/users/user/projects/project3/app2.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json + +Before running PendingInstalls callback:: count: 2 +1: #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] +2: #2 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] + +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/@types/bar :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/@types/bar :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +TI:: Installation #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] complete with success::true +//// [/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts] +export const x = 1; + + +Timeout callback:: count: 1 +2: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation *new* + +TI:: [hh:mm:ss:mss] Installed typings ["@types/bar@tsFakeMajor.Minor"] +TI:: [hh:mm:ss:mss] Installed typing files ["/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts"] +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [ + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts" + ], + "unresolvedImports": [ + "bar" + ], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [ + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts" + ], + "unresolvedImports": [ + "bar" + ], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "event::endInstallTypes", + "eventId": 1, + "projectName": "/users/user/projects/project1/jsconfig.json", + "packagesToInstall": [ + "@types/bar@tsFakeMajor.Minor" + ], + "installSuccess": true, + "typingsInstallerVersion": "FakeVersion" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "endInstallTypes", + "body": { + "eventId": 1, + "packages": [ + "@types/bar@tsFakeMajor.Minor" + ], + "success": true + } + } +TI:: Installation #2 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] complete with success::true + +Timeout callback:: count: 3 +2: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +3: /users/user/projects/project1/jsconfig.json *new* +4: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 2 *changed* + projectProgramVersion: 1 + dirty: true *changed* + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +TI:: [hh:mm:ss:mss] Installed typings ["@types/bar@tsFakeMajor.Minor"] +TI:: [hh:mm:ss:mss] Installed typing files ["/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts"] +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [ + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts" + ], + "unresolvedImports": [ + "bar" + ], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [ + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts" + ], + "unresolvedImports": [ + "bar" + ], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "event::endInstallTypes", + "eventId": 2, + "projectName": "/users/user/projects/project2/jsconfig.json", + "packagesToInstall": [ + "@types/bar@tsFakeMajor.Minor" + ], + "installSuccess": true, + "typingsInstallerVersion": "FakeVersion" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "endInstallTypes", + "body": { + "eventId": 2, + "packages": [ + "@types/bar@tsFakeMajor.Minor" + ], + "success": true + } + } +After running PendingInstalls callback:: count: 0 + +Timeout callback:: count: 4 +4: *ensureProjectForOpenFiles* *deleted* +2: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +3: /users/user/projects/project1/jsconfig.json +5: /users/user/projects/project2/jsconfig.json *new* +6: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 2 + projectProgramVersion: 1 + dirty: true + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) *changed* + projectStateVersion: 2 *changed* + projectProgramVersion: 1 + dirty: true *changed* + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +Before running Timeout callback:: count: 4 +2: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +3: /users/user/projects/project1/jsconfig.json +5: /users/user/projects/project2/jsconfig.json +6: *ensureProjectForOpenFiles* + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project1/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project1/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/node_modules/bar/index.js', result '/users/user/projects/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project1/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts + Imported via 'bar' from file 'app.js' + Matched by default include pattern '**/*' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts", + "/users/user/projects/project1/app.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "projectRootPath": "/users/user/projects/project1", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [], + "filesToWatch": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json" + } +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] No new typings were requested as a result of typings discovery +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Reusing resolution of module 'bar' from '/users/user/projects/project1/app.js' of old program, it was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 3 projectProgramVersion: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project2/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'bar' was found in cache from location '/users/user/projects'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'foo' from '/users/user/projects/project2/app2.js' of old program, it was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project2/app.js SVC-1-0 "var x = require('bar');" + /home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts Text-1 "export const foo = 1;" + /users/user/projects/project2/app2.js Text-1 "var x = require('foo');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts + Imported via 'bar' from file 'app.js' + Matched by default include pattern '**/*' + app.js + Matched by default include pattern '**/*' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + Imported via 'foo' from file 'app2.js' + app2.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts", + "/users/user/projects/project2/app.js", + "/users/user/projects/project2/app2.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "projectRootPath": "/users/user/projects/project2", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [], + "filesToWatch": [ + "/users/user/projects/project2/bower_components", + "/users/user/projects/project2/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project2/jsconfig.json" + } +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] No new typings were requested as a result of typings discovery +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Reusing resolution of module 'bar' from '/users/user/projects/project2/app.js' of old program, it was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'foo' from '/users/user/projects/project2/app2.js' of old program, it was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json projectStateVersion: 3 projectProgramVersion: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project2/app.js SVC-1-0 "var x = require('bar');" + /home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts Text-1 "export const foo = 1;" + /users/user/projects/project2/app2.js Text-1 "var x = require('foo');" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +After running Timeout callback:: count: 3 + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: + {"pollingInterval":500} +/users/user/projects/project1/node_modules: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project2/bower_components: + {"pollingInterval":500} +/users/user/projects/project2/node_modules: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules: + {"pollingInterval":500} +/users/user/projects/project3/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: + {} +/users/user/projects/project2/jsconfig.json: + {} +/users/user/projects/project3/app2.js: + {} +/users/user/projects/project3/jsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project2: + {} +/users/user/projects/project3: + {} + +Timeout callback:: count: 3 +6: *ensureProjectForOpenFiles* *deleted* +7: /users/user/projects/project1/jsconfig.json *new* +9: /users/user/projects/project2/jsconfig.json *new* +10: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 3 *changed* + projectProgramVersion: 3 *changed* + dirty: false *changed* + autoImportProviderHost: undefined *changed* +/users/user/projects/project2/jsconfig.json (Configured) *changed* + projectStateVersion: 3 *changed* + projectProgramVersion: 3 *changed* + dirty: false *changed* + autoImportProviderHost: undefined *changed* +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts *new* + version: Text-1 + containingProjects: 2 + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 3 + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json + /users/user/projects/project3/jsconfig.json +/users/user/projects/node_modules/bar/index.js *changed* + version: Text-1 + containingProjects: 1 *changed* + /users/user/projects/project3/jsconfig.json + /users/user/projects/project1/jsconfig.json *deleted* + /users/user/projects/project2/jsconfig.json *deleted* +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project2/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project3/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json *default* +/users/user/projects/project3/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json + +Before running Timeout callback:: count: 3 +7: /users/user/projects/project1/jsconfig.json +9: /users/user/projects/project2/jsconfig.json +10: *ensureProjectForOpenFiles* + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /users/user/projects/project1/app.js,/users/user/projects/project2/app.js,/users/user/projects/project3/app.js +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/users/user/projects/project1/app.js", + "/users/user/projects/project2/app.js", + "/users/user/projects/project3/app.js" + ] + } + } +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Before running Timeout callback:: count: 2 +11: /users/user/projects/project1/jsconfig.json +12: *ensureProjectForOpenFiles* +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false + } +} + + +Timeout callback:: count: 2 +11: /users/user/projects/project1/jsconfig.json *new* +12: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 4 *changed* + projectProgramVersion: 3 + dirty: true *changed* +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 3 + projectProgramVersion: 3 +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Change in config file detected" + } + } +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +TI:: [hh:mm:ss:mss] Closing file watchers for project '/users/user/projects/project1/jsconfig.json' +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json", + "files": [] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Closing file watchers for project '/users/user/projects/project1/jsconfig.json' - done. +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Resolution for module 'bar' was found in cache from location '/users/user/projects/project1'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 4 projectProgramVersion: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/jsconfig.json", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /users/user/projects/project1/app.js,/users/user/projects/project2/app.js,/users/user/projects/project3/app.js +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/users/user/projects/project1/app.js", + "/users/user/projects/project2/app.js", + "/users/user/projects/project3/app.js" + ] + } + } +After running Timeout callback:: count: 0 + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project2/bower_components: + {"pollingInterval":500} +/users/user/projects/project2/node_modules: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules: + {"pollingInterval":500} +/users/user/projects/project3/node_modules/@types: + {"pollingInterval":500} + +PolledWatches *deleted*:: +/users/user/projects/project1/bower_components: + {"pollingInterval":500} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: + {} +/users/user/projects/project2/jsconfig.json: + {} +/users/user/projects/project3/app2.js: + {} +/users/user/projects/project3/jsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project2: + {} +/users/user/projects/project3: + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 4 + projectProgramVersion: 4 *changed* + dirty: false *changed* +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 3 + projectProgramVersion: 3 +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts *changed* + version: Text-1 + containingProjects: 1 *changed* + /users/user/projects/project2/jsconfig.json + /users/user/projects/project1/jsconfig.json *deleted* +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 3 + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json + /users/user/projects/project3/jsconfig.json +/users/user/projects/node_modules/bar/index.js *changed* + version: Text-1 + containingProjects: 2 *changed* + /users/user/projects/project3/jsconfig.json + /users/user/projects/project1/jsconfig.json *new* +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project2/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project3/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json *default* +/users/user/projects/project3/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Before running Timeout callback:: count: 2 +13: /users/user/projects/project1/jsconfig.json +14: *ensureProjectForOpenFiles* +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + } +} + + +Timeout callback:: count: 2 +13: /users/user/projects/project1/jsconfig.json *new* +14: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 5 *changed* + projectProgramVersion: 4 + dirty: true *changed* +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 3 + projectProgramVersion: 3 +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Change in config file detected" + } + } +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Resolution for module 'bar' was found in cache from location '/users/user/projects/project1'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 5 projectProgramVersion: 4 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/users/user/projects/project1/app.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "projectRootPath": "/users/user/projects/project1", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [], + "filesToWatch": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json", + "files": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] No new typings were requested as a result of typings discovery +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/jsconfig.json", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /users/user/projects/project1/app.js,/users/user/projects/project2/app.js,/users/user/projects/project3/app.js +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/users/user/projects/project1/app.js", + "/users/user/projects/project2/app.js", + "/users/user/projects/project3/app.js" + ] + } + } +After running Timeout callback:: count: 0 + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project2/bower_components: + {"pollingInterval":500} +/users/user/projects/project2/node_modules: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules: + {"pollingInterval":500} +/users/user/projects/project3/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: + {} +/users/user/projects/project2/jsconfig.json: + {} +/users/user/projects/project3/app2.js: + {} +/users/user/projects/project3/jsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project2: + {} +/users/user/projects/project3: + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 5 + projectProgramVersion: 5 *changed* + dirty: false *changed* +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 3 + projectProgramVersion: 3 +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts *changed* + version: Text-1 + containingProjects: 2 *changed* + /users/user/projects/project2/jsconfig.json + /users/user/projects/project1/jsconfig.json *new* +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 3 + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json + /users/user/projects/project3/jsconfig.json +/users/user/projects/node_modules/bar/index.js *changed* + version: Text-1 + containingProjects: 1 *changed* + /users/user/projects/project3/jsconfig.json + /users/user/projects/project1/jsconfig.json *deleted* +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project2/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project3/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json *default* +/users/user/projects/project3/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 diff --git a/tests/baselines/reference/tsserver/typeAquisition/changes-to-typeAquisition-when-typing-installer-installs-typing-multiple-projects.js b/tests/baselines/reference/tsserver/typeAquisition/changes-to-typeAquisition-when-typing-installer-installs-typing-multiple-projects.js new file mode 100644 index 0000000000000..8f56d1990f33d --- /dev/null +++ b/tests/baselines/reference/tsserver/typeAquisition/changes-to-typeAquisition-when-typing-installer-installs-typing-multiple-projects.js @@ -0,0 +1,2795 @@ +Info seq [hh:mm:ss:mss] currentDirectory:: /home/src/Vscode/Projects/bin useCaseSensitiveFileNames:: false +Info seq [hh:mm:ss:mss] libs Location:: /home/src/tslibs/TS/Lib +Info seq [hh:mm:ss:mss] globalTypingsCacheLocation:: /home/src/Library/Caches/typescript +Info seq [hh:mm:ss:mss] Provided types map file "/home/src/tslibs/TS/Lib/typesMap.json" doesn't exist +Before request +//// [/users/user/projects/project1/app.js] +var x = require('bar'); + +//// [/users/user/projects/project1/node_modules/bar/index.js] +export const x = 1 + +//// [/users/user/projects/project2/app.js] +var x = require('bar'); + +//// [/users/user/projects/project2/app2.js] +var x = require('foo'); + +//// [/users/user/projects/project2/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + } +} + +//// [/users/user/projects/project3/app.js] +var x = require('bar'); + +//// [/users/user/projects/project3/app2.js] +var x = require('foo'); + +//// [/users/user/projects/project3/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false + } +} + +//// [/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts] +export const foo = 1; + +//// [/users/user/projects/project2/node_modules/bar/index.js] +export const x = 1 + +//// [/users/user/projects/project3/node_modules/bar/index.js] +export const x = 1 + +//// [/home/src/tslibs/TS/Lib/lib.d.ts] +/// +interface Boolean {} +interface Function {} +interface CallableFunction {} +interface NewableFunction {} +interface IArguments {} +interface Number { toExponential: any; } +interface Object {} +interface RegExp {} +interface String { charAt: any; } +interface Array { length: number; [n: number]: T; } +interface ReadonlyArray {} +declare const console: { log(msg: any): void; }; + +//// [/home/src/Library/Caches/typescript/package.json] +{ "private": true } + +//// [/home/src/Library/Caches/typescript/node_modules/types-registry/index.json] +{ + "entries": { + "bar": { + "latest": "1.3.0", + "ts2.0": "1.0.0", + "ts2.1": "1.0.0", + "ts2.2": "1.2.0", + "ts2.3": "1.3.0", + "ts2.4": "1.3.0", + "ts2.5": "1.3.0", + "ts2.6": "1.3.0", + "ts2.7": "1.3.0" + }, + "foo": { + "latest": "1.3.0", + "ts2.0": "1.0.0", + "ts2.1": "1.0.0", + "ts2.2": "1.2.0", + "ts2.3": "1.3.0", + "ts2.4": "1.3.0", + "ts2.5": "1.3.0", + "ts2.6": "1.3.0", + "ts2.7": "1.3.0" + } + } +} + +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + } +} + + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project1/app.js" + }, + "seq": 1, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project1/jsconfig.json, currentDirectory: /users/user/projects/project1 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project1/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1 1 undefined Config: /users/user/projects/project1/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1 1 undefined Config: /users/user/projects/project1/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project1/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/project1/node_modules/bar/index.js', result '/users/user/projects/project1/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project1/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project1/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/project1/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: Creating typing installer + +PolledWatches:: +/users/user/projects/node_modules: *new* + {"pollingInterval":500} +/users/user/projects/node_modules/@types: *new* + {"pollingInterval":500} +/users/user/projects/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/@types: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules/bar/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/package.json: *new* + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: *new* + {} +/users/user/projects/project1/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/users/user/projects/project1: *new* + {} +/users/user/projects/project1/node_modules: *new* + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 0 + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project1/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project1/node_modules/bar/index.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json + +TI:: [hh:mm:ss:mss] Global cache location '/home/src/Library/Caches/typescript', safe file path '/home/src/tslibs/TS/Lib/typingSafeList.json', types map path /home/src/tslibs/TS/Lib/typesMap.json +TI:: [hh:mm:ss:mss] Processing cache location '/home/src/Library/Caches/typescript' +TI:: [hh:mm:ss:mss] Trying to find '/home/src/Library/Caches/typescript/package.json'... +TI:: [hh:mm:ss:mss] Finished processing cache location '/home/src/Library/Caches/typescript' +TI:: [hh:mm:ss:mss] Npm config file: /home/src/Library/Caches/typescript/package.json +TI:: [hh:mm:ss:mss] Updating types-registry npm package... +TI:: [hh:mm:ss:mss] npm install --ignore-scripts types-registry@latest +TI:: [hh:mm:ss:mss] Updated types-registry npm package +TI:: typing installer creation complete + +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/users/user/projects/project1/app.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "unresolvedImports": [ + "bar" + ], + "projectRootPath": "/users/user/projects/project1", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project1/node_modules; all files: [] +TI:: [hh:mm:ss:mss] Found package names: [] +TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: ["bar"] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [ + "bar" + ], + "filesToWatch": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json", + "files": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Installing typings ["bar"] +TI:: [hh:mm:ss:mss] Npm config file: /home/src/Library/Caches/typescript/package.json +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "event::beginInstallTypes", + "eventId": 1, + "typingsInstallerVersion": "FakeVersion", + "projectName": "/users/user/projects/project1/jsconfig.json" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "beginInstallTypes", + "body": { + "eventId": 1 + } + } +TI:: [hh:mm:ss:mss] #1 with cwd: /home/src/Library/Caches/typescript arguments: [ + "@types/bar@tsFakeMajor.Minor" +] +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "a24ce251bb636300af6d4777b3f4b21687a6424baa3ae50af422af2a5b2dd7f0", + "fileStats": { + "js": 2, + "jsSize": 41, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 1, + "dtsSize": 413, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": true, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/app.js", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 1, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} + +FsWatchesRecursive:: +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} + +PendingInstalls callback:: count: 1 +1: #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 1 + projectProgramVersion: 1 *changed* + autoImportProviderHost: false *changed* + +Before request + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project2/app.js" + }, + "seq": 2, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project2/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project2/jsconfig.json, currentDirectory: /users/user/projects/project2 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project2/jsconfig.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project2/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project2/app.js", + "/users/user/projects/project2/app2.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project2/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2 1 undefined Config: /users/user/projects/project2/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2 1 undefined Config: /users/user/projects/project2/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project2/app2.js 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project2/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/project2/node_modules/bar/index.js', result '/users/user/projects/project2/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project2/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project2/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] ======== Resolving module 'foo' from '/users/user/projects/project2/app2.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'foo' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/foo.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/foo.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'foo' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/foo.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/foo.jsx' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] ======== Module name 'foo' was not resolved. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project2/jsconfig.json'. Running extra resolution pass for module 'foo' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] Found 'package.json' at '/home/src/Library/Caches/typescript/package.json'. +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project2/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/foo/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules/@types 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules/@types 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/project2/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project2/app.js SVC-1-0 "var x = require('bar');" + /home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts Text-1 "export const foo = 1;" + /users/user/projects/project2/app2.js Text-1 "var x = require('foo');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + Imported via 'foo' from file 'app2.js' + app2.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/users/user/projects/project2/app.js", + "/users/user/projects/project2/app2.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "unresolvedImports": [ + "bar" + ], + "projectRootPath": "/users/user/projects/project2", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project2/node_modules; all files: [] +TI:: [hh:mm:ss:mss] Found package names: [] +TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: ["bar"] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [ + "bar" + ], + "filesToWatch": [ + "/users/user/projects/project2/bower_components", + "/users/user/projects/project2/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project2/jsconfig.json", + "files": [ + "/users/user/projects/project2/bower_components", + "/users/user/projects/project2/node_modules" + ] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/bower_components 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/bower_components 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Installing typings ["bar"] +TI:: [hh:mm:ss:mss] Npm config file: /home/src/Library/Caches/typescript/package.json +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "event::beginInstallTypes", + "eventId": 2, + "typingsInstallerVersion": "FakeVersion", + "projectName": "/users/user/projects/project2/jsconfig.json" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "beginInstallTypes", + "body": { + "eventId": 2 + } + } +TI:: [hh:mm:ss:mss] #2 with cwd: /home/src/Library/Caches/typescript arguments: [ + "@types/bar@tsFakeMajor.Minor" +] +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "318b0b83fbc7be458819ec932b0b673d12709d07882bd4b96f96985c09b696c4", + "fileStats": { + "js": 3, + "jsSize": 64, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 2, + "dtsSize": 434, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": true, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project2/app.js", + "configFile": "/users/user/projects/project2/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 2, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/package.json: + {"pollingInterval":2000} +/users/user/projects/project2/bower_components: *new* + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: *new* + {"pollingInterval":500} +/users/user/projects/project2/node_modules/bar/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project2/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project2/package.json: *new* + {"pollingInterval":2000} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: *new* + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: *new* + {} +/users/user/projects/project2/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: *new* + {} +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} +/users/user/projects/project2: *new* + {} +/users/user/projects/project2/node_modules: *new* + {} + +PendingInstalls callback:: count: 2 +1: #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] +2: #2 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts *changed* + version: Text-1 + containingProjects: 2 *changed* + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json *new* +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project1/node_modules/bar/index.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project2/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project2/node_modules/bar/index.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json + +Before request + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project3/app.js" + }, + "seq": 3, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project3/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project3/jsconfig.json, currentDirectory: /users/user/projects/project3 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/jsconfig.json 2000 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project3/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project3/app.js", + "/users/user/projects/project3/app2.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project3/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project3/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project3/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3 1 undefined Config: /users/user/projects/project3/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3 1 undefined Config: /users/user/projects/project3/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/app2.js 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project3/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project3/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/project3/node_modules/bar/index.js', result '/users/user/projects/project3/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project3/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] ======== Resolving module 'foo' from '/users/user/projects/project3/app2.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'foo' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/foo.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/foo.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project3/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'foo' was found in cache from location '/users/user/projects'. +Info seq [hh:mm:ss:mss] ======== Module name 'foo' was not resolved. ======== +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules/package.json 2000 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/package.json 2000 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules/@types 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules/@types 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project3/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/project3/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project3/app.js SVC-1-0 "var x = require('bar');" + /users/user/projects/project3/app2.js Text-1 "var x = require('foo');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + app2.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project3/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "b03a661e323d76898c84af369d25377a0a5531270f5a2f1e243ca14104fd96c1", + "fileStats": { + "js": 3, + "jsSize": 64, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 1, + "dtsSize": 413, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project3/app.js", + "configFile": "/users/user/projects/project3/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 3, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/package.json: + {"pollingInterval":2000} +/users/user/projects/project2/bower_components: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project2/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project2/package.json: + {"pollingInterval":2000} +/users/user/projects/project3/node_modules/@types: *new* + {"pollingInterval":500} +/users/user/projects/project3/node_modules/bar/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project3/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project3/package.json: *new* + {"pollingInterval":2000} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: + {} +/users/user/projects/project2/jsconfig.json: + {} +/users/user/projects/project3/app2.js: *new* + {} +/users/user/projects/project3/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} +/users/user/projects/project2: + {} +/users/user/projects/project2/node_modules: + {} +/users/user/projects/project3: *new* + {} +/users/user/projects/project3/node_modules: *new* + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts *changed* + version: Text-1 + containingProjects: 3 *changed* + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json + /users/user/projects/project3/jsconfig.json *new* +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project1/node_modules/bar/index.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project2/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project2/node_modules/bar/index.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project3/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json *default* +/users/user/projects/project3/app2.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json +/users/user/projects/project3/node_modules/bar/index.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json + +Before running PendingInstalls callback:: count: 2 +1: #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] +2: #2 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] + +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/@types/bar :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/@types/bar :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +TI:: Installation #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] complete with success::true +//// [/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts] +export const x = 1; + + +Timeout callback:: count: 1 +2: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation *new* + +TI:: [hh:mm:ss:mss] Installed typings ["@types/bar@tsFakeMajor.Minor"] +TI:: [hh:mm:ss:mss] Installed typing files ["/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts"] +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [ + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts" + ], + "unresolvedImports": [ + "bar" + ], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [ + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts" + ], + "unresolvedImports": [ + "bar" + ], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "event::endInstallTypes", + "eventId": 1, + "projectName": "/users/user/projects/project1/jsconfig.json", + "packagesToInstall": [ + "@types/bar@tsFakeMajor.Minor" + ], + "installSuccess": true, + "typingsInstallerVersion": "FakeVersion" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "endInstallTypes", + "body": { + "eventId": 1, + "packages": [ + "@types/bar@tsFakeMajor.Minor" + ], + "success": true + } + } +TI:: Installation #2 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] complete with success::true + +Timeout callback:: count: 3 +2: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +3: /users/user/projects/project1/jsconfig.json *new* +4: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 2 *changed* + projectProgramVersion: 1 + dirty: true *changed* + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +TI:: [hh:mm:ss:mss] Installed typings ["@types/bar@tsFakeMajor.Minor"] +TI:: [hh:mm:ss:mss] Installed typing files ["/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts"] +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [ + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts" + ], + "unresolvedImports": [ + "bar" + ], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [ + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts" + ], + "unresolvedImports": [ + "bar" + ], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "event::endInstallTypes", + "eventId": 2, + "projectName": "/users/user/projects/project2/jsconfig.json", + "packagesToInstall": [ + "@types/bar@tsFakeMajor.Minor" + ], + "installSuccess": true, + "typingsInstallerVersion": "FakeVersion" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "endInstallTypes", + "body": { + "eventId": 2, + "packages": [ + "@types/bar@tsFakeMajor.Minor" + ], + "success": true + } + } +After running PendingInstalls callback:: count: 0 + +Timeout callback:: count: 4 +4: *ensureProjectForOpenFiles* *deleted* +2: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +3: /users/user/projects/project1/jsconfig.json +5: /users/user/projects/project2/jsconfig.json *new* +6: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 2 + projectProgramVersion: 1 + dirty: true + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) *changed* + projectStateVersion: 2 *changed* + projectProgramVersion: 1 + dirty: true *changed* + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +Before running Timeout callback:: count: 4 +2: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +3: /users/user/projects/project1/jsconfig.json +5: /users/user/projects/project2/jsconfig.json +6: *ensureProjectForOpenFiles* + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project1/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/project1/node_modules/bar/index.js', result '/users/user/projects/project1/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project1/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project1/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project1/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts + Imported via 'bar' from file 'app.js' + Matched by default include pattern '**/*' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts", + "/users/user/projects/project1/app.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "projectRootPath": "/users/user/projects/project1", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project1/node_modules; all files: [] +TI:: [hh:mm:ss:mss] Found package names: [] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [], + "filesToWatch": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json" + } +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] No new typings were requested as a result of typings discovery +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Reusing resolution of module 'bar' from '/users/user/projects/project1/app.js' of old program, it was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 3 projectProgramVersion: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project2/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/project2/node_modules/bar/index.js', result '/users/user/projects/project2/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project2/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project2/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'foo' from '/users/user/projects/project2/app2.js' of old program, it was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project2/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project2/node_modules/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project2/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project2/app.js SVC-1-0 "var x = require('bar');" + /home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts Text-1 "export const foo = 1;" + /users/user/projects/project2/app2.js Text-1 "var x = require('foo');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts + Imported via 'bar' from file 'app.js' + Matched by default include pattern '**/*' + app.js + Matched by default include pattern '**/*' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + Imported via 'foo' from file 'app2.js' + app2.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts", + "/users/user/projects/project2/app.js", + "/users/user/projects/project2/app2.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "projectRootPath": "/users/user/projects/project2", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project2/node_modules; all files: [] +TI:: [hh:mm:ss:mss] Found package names: [] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [], + "filesToWatch": [ + "/users/user/projects/project2/bower_components", + "/users/user/projects/project2/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project2/jsconfig.json" + } +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] No new typings were requested as a result of typings discovery +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Reusing resolution of module 'bar' from '/users/user/projects/project2/app.js' of old program, it was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'foo' from '/users/user/projects/project2/app2.js' of old program, it was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json projectStateVersion: 3 projectProgramVersion: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project2/app.js SVC-1-0 "var x = require('bar');" + /home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts Text-1 "export const foo = 1;" + /users/user/projects/project2/app2.js Text-1 "var x = require('foo');" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +After running Timeout callback:: count: 3 + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project2/bower_components: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project3/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project3/package.json: + {"pollingInterval":2000} + +PolledWatches *deleted*:: +/users/user/projects/project1/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/package.json: + {"pollingInterval":2000} +/users/user/projects/project2/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project2/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project2/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: + {} +/users/user/projects/project2/jsconfig.json: + {} +/users/user/projects/project3/app2.js: + {} +/users/user/projects/project3/jsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} +/users/user/projects/project2: + {} +/users/user/projects/project2/node_modules: + {} +/users/user/projects/project3: + {} +/users/user/projects/project3/node_modules: + {} + +Timeout callback:: count: 3 +6: *ensureProjectForOpenFiles* *deleted* +7: /users/user/projects/project1/jsconfig.json *new* +9: /users/user/projects/project2/jsconfig.json *new* +10: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 3 *changed* + projectProgramVersion: 3 *changed* + dirty: false *changed* + autoImportProviderHost: undefined *changed* +/users/user/projects/project2/jsconfig.json (Configured) *changed* + projectStateVersion: 3 *changed* + projectProgramVersion: 3 *changed* + dirty: false *changed* + autoImportProviderHost: undefined *changed* +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts *new* + version: Text-1 + containingProjects: 2 + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 3 + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json + /users/user/projects/project3/jsconfig.json +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project1/node_modules/bar/index.js *changed* + version: Text-1 + containingProjects: 0 *changed* + /users/user/projects/project1/jsconfig.json *deleted* +/users/user/projects/project2/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project2/node_modules/bar/index.js *changed* + version: Text-1 + containingProjects: 0 *changed* + /users/user/projects/project2/jsconfig.json *deleted* +/users/user/projects/project3/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json *default* +/users/user/projects/project3/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json +/users/user/projects/project3/node_modules/bar/index.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json + +Before running Timeout callback:: count: 3 +7: /users/user/projects/project1/jsconfig.json +9: /users/user/projects/project2/jsconfig.json +10: *ensureProjectForOpenFiles* + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /users/user/projects/project1/app.js,/users/user/projects/project2/app.js,/users/user/projects/project3/app.js +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/users/user/projects/project1/app.js", + "/users/user/projects/project2/app.js", + "/users/user/projects/project3/app.js" + ] + } + } +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Before running Timeout callback:: count: 2 +11: /users/user/projects/project1/jsconfig.json +12: *ensureProjectForOpenFiles* +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false + } +} + + +Timeout callback:: count: 2 +11: /users/user/projects/project1/jsconfig.json *new* +12: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 4 *changed* + projectProgramVersion: 3 + dirty: true *changed* +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 3 + projectProgramVersion: 3 +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Change in config file detected" + } + } +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +TI:: [hh:mm:ss:mss] Closing file watchers for project '/users/user/projects/project1/jsconfig.json' +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json", + "files": [] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Closing file watchers for project '/users/user/projects/project1/jsconfig.json' - done. +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Resolution for module 'bar' was found in cache from location '/users/user/projects/project1'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project1/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 4 projectProgramVersion: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/project1/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/jsconfig.json", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /users/user/projects/project1/app.js,/users/user/projects/project2/app.js,/users/user/projects/project3/app.js +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/users/user/projects/project1/app.js", + "/users/user/projects/project2/app.js", + "/users/user/projects/project3/app.js" + ] + } + } +After running Timeout callback:: count: 0 + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/bar/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project2/bower_components: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project3/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project3/package.json: + {"pollingInterval":2000} + +PolledWatches *deleted*:: +/users/user/projects/project1/bower_components: + {"pollingInterval":500} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: + {} +/users/user/projects/project2/jsconfig.json: + {} +/users/user/projects/project3/app2.js: + {} +/users/user/projects/project3/jsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} +/users/user/projects/project2: + {} +/users/user/projects/project2/node_modules: + {} +/users/user/projects/project3: + {} +/users/user/projects/project3/node_modules: + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 4 + projectProgramVersion: 4 *changed* + dirty: false *changed* +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 3 + projectProgramVersion: 3 +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts *changed* + version: Text-1 + containingProjects: 1 *changed* + /users/user/projects/project2/jsconfig.json + /users/user/projects/project1/jsconfig.json *deleted* +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 3 + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json + /users/user/projects/project3/jsconfig.json +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project1/node_modules/bar/index.js *changed* + version: Text-1 + containingProjects: 1 *changed* + /users/user/projects/project1/jsconfig.json *new* +/users/user/projects/project2/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project2/node_modules/bar/index.js + version: Text-1 + containingProjects: 0 +/users/user/projects/project3/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json *default* +/users/user/projects/project3/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json +/users/user/projects/project3/node_modules/bar/index.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Before running Timeout callback:: count: 2 +13: /users/user/projects/project1/jsconfig.json +14: *ensureProjectForOpenFiles* +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + } +} + + +Timeout callback:: count: 2 +13: /users/user/projects/project1/jsconfig.json *new* +14: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 5 *changed* + projectProgramVersion: 4 + dirty: true *changed* +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 3 + projectProgramVersion: 3 +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Change in config file detected" + } + } +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Resolution for module 'bar' was found in cache from location '/users/user/projects/project1'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project1/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project1/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project1/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 5 projectProgramVersion: 4 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/users/user/projects/project1/app.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "projectRootPath": "/users/user/projects/project1", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project1/node_modules; all files: [] +TI:: [hh:mm:ss:mss] Found package names: [] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [], + "filesToWatch": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json", + "files": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] No new typings were requested as a result of typings discovery +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/jsconfig.json", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /users/user/projects/project1/app.js,/users/user/projects/project2/app.js,/users/user/projects/project3/app.js +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/users/user/projects/project1/app.js", + "/users/user/projects/project2/app.js", + "/users/user/projects/project3/app.js" + ] + } + } +After running Timeout callback:: count: 0 + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project2/bower_components: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project3/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project3/package.json: + {"pollingInterval":2000} + +PolledWatches *deleted*:: +/users/user/projects/project1/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: + {} +/users/user/projects/project2/jsconfig.json: + {} +/users/user/projects/project3/app2.js: + {} +/users/user/projects/project3/jsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} +/users/user/projects/project2: + {} +/users/user/projects/project2/node_modules: + {} +/users/user/projects/project3: + {} +/users/user/projects/project3/node_modules: + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 5 + projectProgramVersion: 5 *changed* + dirty: false *changed* +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 3 + projectProgramVersion: 3 +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts *changed* + version: Text-1 + containingProjects: 2 *changed* + /users/user/projects/project2/jsconfig.json + /users/user/projects/project1/jsconfig.json *new* +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 3 + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json + /users/user/projects/project3/jsconfig.json +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project1/node_modules/bar/index.js *changed* + version: Text-1 + containingProjects: 0 *changed* + /users/user/projects/project1/jsconfig.json *deleted* +/users/user/projects/project2/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project2/node_modules/bar/index.js + version: Text-1 + containingProjects: 0 +/users/user/projects/project3/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json *default* +/users/user/projects/project3/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json +/users/user/projects/project3/node_modules/bar/index.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 diff --git a/tests/baselines/reference/tsserver/typeAquisition/changes-to-typeAquisition-when-typing-installer-installs-typing.js b/tests/baselines/reference/tsserver/typeAquisition/changes-to-typeAquisition-when-typing-installer-installs-typing.js new file mode 100644 index 0000000000000..c075deafa3dbc --- /dev/null +++ b/tests/baselines/reference/tsserver/typeAquisition/changes-to-typeAquisition-when-typing-installer-installs-typing.js @@ -0,0 +1,1379 @@ +Info seq [hh:mm:ss:mss] currentDirectory:: /home/src/Vscode/Projects/bin useCaseSensitiveFileNames:: false +Info seq [hh:mm:ss:mss] libs Location:: /home/src/tslibs/TS/Lib +Info seq [hh:mm:ss:mss] globalTypingsCacheLocation:: /home/src/Library/Caches/typescript +Info seq [hh:mm:ss:mss] Provided types map file "/home/src/tslibs/TS/Lib/typesMap.json" doesn't exist +Before request +//// [/users/user/projects/project1/app.js] +var x = require('bar'); + +//// [/users/user/projects/project1/node_modules/bar/index.js] +export const x = 1 + +//// [/home/src/tslibs/TS/Lib/lib.d.ts] +/// +interface Boolean {} +interface Function {} +interface CallableFunction {} +interface NewableFunction {} +interface IArguments {} +interface Number { toExponential: any; } +interface Object {} +interface RegExp {} +interface String { charAt: any; } +interface Array { length: number; [n: number]: T; } +interface ReadonlyArray {} +declare const console: { log(msg: any): void; }; + +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + } +} + + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project1/app.js" + }, + "seq": 1, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project1/jsconfig.json, currentDirectory: /users/user/projects/project1 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project1/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1 1 undefined Config: /users/user/projects/project1/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1 1 undefined Config: /users/user/projects/project1/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project1/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/project1/node_modules/bar/index.js', result '/users/user/projects/project1/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project1/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project1/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] Directory '/home/src/Library/Caches/typescript/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/project1/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: Creating typing installer + +PolledWatches:: +/users/user/projects/node_modules: *new* + {"pollingInterval":500} +/users/user/projects/node_modules/@types: *new* + {"pollingInterval":500} +/users/user/projects/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/@types: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules/bar/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/package.json: *new* + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: *new* + {} +/users/user/projects/project1/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/users/user/projects/project1: *new* + {} +/users/user/projects/project1/node_modules: *new* + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 0 + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project1/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project1/node_modules/bar/index.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json + +TI:: [hh:mm:ss:mss] Global cache location '/home/src/Library/Caches/typescript', safe file path '/home/src/tslibs/TS/Lib/typingSafeList.json', types map path /home/src/tslibs/TS/Lib/typesMap.json +TI:: [hh:mm:ss:mss] Processing cache location '/home/src/Library/Caches/typescript' +TI:: [hh:mm:ss:mss] Trying to find '/home/src/Library/Caches/typescript/package.json'... +TI:: [hh:mm:ss:mss] Finished processing cache location '/home/src/Library/Caches/typescript' +TI:: [hh:mm:ss:mss] Npm config file: /home/src/Library/Caches/typescript/package.json +TI:: [hh:mm:ss:mss] Npm config file: '/home/src/Library/Caches/typescript/package.json' is missing, creating new one... +TI:: [hh:mm:ss:mss] Updating types-registry npm package... +TI:: [hh:mm:ss:mss] npm install --ignore-scripts types-registry@latest +TI:: [hh:mm:ss:mss] Updated types-registry npm package +TI:: typing installer creation complete +//// [/home/src/Library/Caches/typescript/package.json] +{ "private": true } + +//// [/home/src/Library/Caches/typescript/node_modules/types-registry/index.json] +{ + "entries": { + "bar": { + "latest": "1.3.0", + "ts2.0": "1.0.0", + "ts2.1": "1.0.0", + "ts2.2": "1.2.0", + "ts2.3": "1.3.0", + "ts2.4": "1.3.0", + "ts2.5": "1.3.0", + "ts2.6": "1.3.0", + "ts2.7": "1.3.0" + } + } +} + + +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/users/user/projects/project1/app.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "unresolvedImports": [ + "bar" + ], + "projectRootPath": "/users/user/projects/project1", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project1/node_modules; all files: [] +TI:: [hh:mm:ss:mss] Found package names: [] +TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: ["bar"] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [ + "bar" + ], + "filesToWatch": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json", + "files": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Installing typings ["bar"] +TI:: [hh:mm:ss:mss] Npm config file: /home/src/Library/Caches/typescript/package.json +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "event::beginInstallTypes", + "eventId": 1, + "typingsInstallerVersion": "FakeVersion", + "projectName": "/users/user/projects/project1/jsconfig.json" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "beginInstallTypes", + "body": { + "eventId": 1 + } + } +TI:: [hh:mm:ss:mss] #1 with cwd: /home/src/Library/Caches/typescript arguments: [ + "@types/bar@tsFakeMajor.Minor" +] +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "a24ce251bb636300af6d4777b3f4b21687a6424baa3ae50af422af2a5b2dd7f0", + "fileStats": { + "js": 2, + "jsSize": 41, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 1, + "dtsSize": 413, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": true, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/app.js", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 1, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} + +FsWatchesRecursive:: +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} + +PendingInstalls callback:: count: 1 +1: #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 1 + projectProgramVersion: 1 *changed* + autoImportProviderHost: false *changed* + +Before running PendingInstalls callback:: count: 1 +1: #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] + +TI:: Installation #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] complete with success::true +//// [/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts] +export const x = 1; + + +TI:: [hh:mm:ss:mss] Installed typings ["@types/bar@tsFakeMajor.Minor"] +TI:: [hh:mm:ss:mss] Installed typing files ["/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts"] +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [ + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts" + ], + "unresolvedImports": [ + "bar" + ], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [ + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts" + ], + "unresolvedImports": [ + "bar" + ], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "event::endInstallTypes", + "eventId": 1, + "projectName": "/users/user/projects/project1/jsconfig.json", + "packagesToInstall": [ + "@types/bar@tsFakeMajor.Minor" + ], + "installSuccess": true, + "typingsInstallerVersion": "FakeVersion" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "endInstallTypes", + "body": { + "eventId": 1, + "packages": [ + "@types/bar@tsFakeMajor.Minor" + ], + "success": true + } + } +After running PendingInstalls callback:: count: 0 + +Timeout callback:: count: 2 +1: /users/user/projects/project1/jsconfig.json *new* +2: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 2 *changed* + projectProgramVersion: 1 + dirty: true *changed* + autoImportProviderHost: false + +Before running Timeout callback:: count: 2 +1: /users/user/projects/project1/jsconfig.json +2: *ensureProjectForOpenFiles* + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project1/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/project1/node_modules/bar/index.js', result '/users/user/projects/project1/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project1/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project1/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] Found 'package.json' at '/home/src/Library/Caches/typescript/package.json'. +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project1/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts + Imported via 'bar' from file 'app.js' + Matched by default include pattern '**/*' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts", + "/users/user/projects/project1/app.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "projectRootPath": "/users/user/projects/project1", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project1/node_modules; all files: [] +TI:: [hh:mm:ss:mss] Found package names: [] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [], + "filesToWatch": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json" + } +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] No new typings were requested as a result of typings discovery +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Reusing resolution of module 'bar' from '/users/user/projects/project1/app.js' of old program, it was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 3 projectProgramVersion: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +After running Timeout callback:: count: 2 + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/bower_components: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} + +PolledWatches *deleted*:: +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: *new* + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: *new* + {} +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} + +Timeout callback:: count: 2 +2: *ensureProjectForOpenFiles* *deleted* +3: /users/user/projects/project1/jsconfig.json *new* +4: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 3 *changed* + projectProgramVersion: 3 *changed* + dirty: false *changed* + autoImportProviderHost: undefined *changed* + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project1/node_modules/bar/index.js *changed* + version: Text-1 + containingProjects: 0 *changed* + /users/user/projects/project1/jsconfig.json *deleted* + +Before running Timeout callback:: count: 2 +3: /users/user/projects/project1/jsconfig.json +4: *ensureProjectForOpenFiles* + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /users/user/projects/project1/app.js +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/users/user/projects/project1/app.js" + ] + } + } +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Before running Timeout callback:: count: 2 +5: /users/user/projects/project1/jsconfig.json +6: *ensureProjectForOpenFiles* +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false + } +} + + +Timeout callback:: count: 2 +5: /users/user/projects/project1/jsconfig.json *new* +6: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 4 *changed* + projectProgramVersion: 3 + dirty: true *changed* + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Change in config file detected" + } + } +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +TI:: [hh:mm:ss:mss] Closing file watchers for project '/users/user/projects/project1/jsconfig.json' +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json", + "files": [] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Closing file watchers for project '/users/user/projects/project1/jsconfig.json' - done. +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Resolution for module 'bar' was found in cache from location '/users/user/projects/project1'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project1/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist. +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/Library/Caches/typescript/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 4 projectProgramVersion: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/project1/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/jsconfig.json", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /users/user/projects/project1/app.js +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/users/user/projects/project1/app.js" + ] + } + } +After running Timeout callback:: count: 0 + +PolledWatches:: +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/bar/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/package.json: *new* + {"pollingInterval":2000} + +PolledWatches *deleted*:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: + {"pollingInterval":500} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} + +FsWatches *deleted*:: +/home/src/Library/Caches/typescript/package.json: + {} + +FsWatchesRecursive:: +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} + +FsWatchesRecursive *deleted*:: +/home/src/Library/Caches/typescript/node_modules: + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 4 + projectProgramVersion: 4 *changed* + dirty: false *changed* + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts *changed* + version: Text-1 + containingProjects: 0 *changed* + /users/user/projects/project1/jsconfig.json *deleted* +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project1/node_modules/bar/index.js *changed* + version: Text-1 + containingProjects: 1 *changed* + /users/user/projects/project1/jsconfig.json *new* + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Before running Timeout callback:: count: 2 +7: /users/user/projects/project1/jsconfig.json +8: *ensureProjectForOpenFiles* +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + } +} + + +Timeout callback:: count: 2 +7: /users/user/projects/project1/jsconfig.json *new* +8: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 5 *changed* + projectProgramVersion: 4 + dirty: true *changed* + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Change in config file detected" + } + } +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Resolution for module 'bar' was found in cache from location '/users/user/projects/project1'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project1/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project1/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] Found 'package.json' at '/home/src/Library/Caches/typescript/package.json'. +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project1/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 5 projectProgramVersion: 4 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/users/user/projects/project1/app.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "projectRootPath": "/users/user/projects/project1", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project1/node_modules; all files: [] +TI:: [hh:mm:ss:mss] Found package names: [] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [], + "filesToWatch": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json", + "files": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] No new typings were requested as a result of typings discovery +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/jsconfig.json", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /users/user/projects/project1/app.js +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/users/user/projects/project1/app.js" + ] + } + } +After running Timeout callback:: count: 0 + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/bower_components: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} + +PolledWatches *deleted*:: +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: *new* + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: *new* + {} +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 5 + projectProgramVersion: 5 *changed* + dirty: false *changed* + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts *changed* + version: Text-1 + containingProjects: 1 *changed* + /users/user/projects/project1/jsconfig.json *new* +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project1/node_modules/bar/index.js *changed* + version: Text-1 + containingProjects: 0 *changed* + /users/user/projects/project1/jsconfig.json *deleted* + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 diff --git a/tests/baselines/reference/tsserver/typeAquisition/changes-to-typeAquisition-with-already-aquired-typing-multiple-projects-with-shared-resolution.js b/tests/baselines/reference/tsserver/typeAquisition/changes-to-typeAquisition-with-already-aquired-typing-multiple-projects-with-shared-resolution.js new file mode 100644 index 0000000000000..d5c67d3400af4 --- /dev/null +++ b/tests/baselines/reference/tsserver/typeAquisition/changes-to-typeAquisition-with-already-aquired-typing-multiple-projects-with-shared-resolution.js @@ -0,0 +1,1884 @@ +Info seq [hh:mm:ss:mss] currentDirectory:: /home/src/Vscode/Projects/bin useCaseSensitiveFileNames:: false +Info seq [hh:mm:ss:mss] libs Location:: /home/src/tslibs/TS/Lib +Info seq [hh:mm:ss:mss] globalTypingsCacheLocation:: /home/src/Library/Caches/typescript +Info seq [hh:mm:ss:mss] Provided types map file "/home/src/tslibs/TS/Lib/typesMap.json" doesn't exist +Before request +//// [/users/user/projects/project1/app.js] +var x = require('bar'); + +//// [/users/user/projects/node_modules/bar/index.js] +export const x = 1 + +//// [/users/user/projects/project2/app.js] +var x = require('bar'); + +//// [/users/user/projects/project2/app2.js] +var x = require('foo'); + +//// [/users/user/projects/project2/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + } +} + +//// [/users/user/projects/project3/app.js] +var x = require('bar'); + +//// [/users/user/projects/project3/app2.js] +var x = require('foo'); + +//// [/users/user/projects/project3/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false + } +} + +//// [/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts] +export const foo = 1; + +//// [/home/src/tslibs/TS/Lib/lib.d.ts] +/// +interface Boolean {} +interface Function {} +interface CallableFunction {} +interface NewableFunction {} +interface IArguments {} +interface Number { toExponential: any; } +interface Object {} +interface RegExp {} +interface String { charAt: any; } +interface Array { length: number; [n: number]: T; } +interface ReadonlyArray {} +declare const console: { log(msg: any): void; }; + +//// [/home/src/Library/Caches/typescript/package.json] +{ "private": true } + +//// [/home/src/Library/Caches/typescript/node_modules/types-registry/index.json] +{ + "entries": { + "bar": { + "latest": "1.3.0", + "ts2.0": "1.0.0", + "ts2.1": "1.0.0", + "ts2.2": "1.2.0", + "ts2.3": "1.3.0", + "ts2.4": "1.3.0", + "ts2.5": "1.3.0", + "ts2.6": "1.3.0", + "ts2.7": "1.3.0" + }, + "foo": { + "latest": "1.3.0", + "ts2.0": "1.0.0", + "ts2.1": "1.0.0", + "ts2.2": "1.2.0", + "ts2.3": "1.3.0", + "ts2.4": "1.3.0", + "ts2.5": "1.3.0", + "ts2.6": "1.3.0", + "ts2.7": "1.3.0" + } + } +} + +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + } +} + +//// [/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts] +export const x = 1; + + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project1/app.js" + }, + "seq": 1, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project1/jsconfig.json, currentDirectory: /users/user/projects/project1 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project1/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1 1 undefined Config: /users/user/projects/project1/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1 1 undefined Config: /users/user/projects/project1/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project1/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project1/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/node_modules/bar/index.js', result '/users/user/projects/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project1/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] Found 'package.json' at '/home/src/Library/Caches/typescript/package.json'. +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: Creating typing installer + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/node_modules/@types: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: *new* + {"pollingInterval":500} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: *new* + {} +/home/src/tslibs/TS/Lib/lib.d.ts: *new* + {} +/users/user/projects/project1/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: *new* + {} +/users/user/projects/node_modules: *new* + {} +/users/user/projects/project1: *new* + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 0 + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project1/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* + +TI:: [hh:mm:ss:mss] Global cache location '/home/src/Library/Caches/typescript', safe file path '/home/src/tslibs/TS/Lib/typingSafeList.json', types map path /home/src/tslibs/TS/Lib/typesMap.json +TI:: [hh:mm:ss:mss] Processing cache location '/home/src/Library/Caches/typescript' +TI:: [hh:mm:ss:mss] Trying to find '/home/src/Library/Caches/typescript/package.json'... +TI:: [hh:mm:ss:mss] Finished processing cache location '/home/src/Library/Caches/typescript' +TI:: [hh:mm:ss:mss] Npm config file: /home/src/Library/Caches/typescript/package.json +TI:: [hh:mm:ss:mss] Updating types-registry npm package... +TI:: [hh:mm:ss:mss] npm install --ignore-scripts types-registry@latest +TI:: [hh:mm:ss:mss] Updated types-registry npm package +TI:: typing installer creation complete + +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/users/user/projects/project1/app.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "projectRootPath": "/users/user/projects/project1", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [], + "filesToWatch": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json", + "files": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] No new typings were requested as a result of typings discovery +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "a24ce251bb636300af6d4777b3f4b21687a6424baa3ae50af422af2a5b2dd7f0", + "fileStats": { + "js": 1, + "jsSize": 23, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 2, + "dtsSize": 432, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": true, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/app.js", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 1, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/bower_components: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/node_modules: + {} +/users/user/projects/project1: + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 1 + projectProgramVersion: 1 *changed* + autoImportProviderHost: false *changed* + +Before request + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project2/app.js" + }, + "seq": 2, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project2/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project2/jsconfig.json, currentDirectory: /users/user/projects/project2 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project2/jsconfig.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project2/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project2/app.js", + "/users/user/projects/project2/app2.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project2/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2 1 undefined Config: /users/user/projects/project2/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2 1 undefined Config: /users/user/projects/project2/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project2/app2.js 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project2/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'bar' was found in cache from location '/users/user/projects'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'foo' from '/users/user/projects/project2/app2.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'foo' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/foo.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/foo.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'foo' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/foo.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/foo.jsx' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] ======== Module name 'foo' was not resolved. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project2/jsconfig.json'. Running extra resolution pass for module 'foo' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/foo/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules/@types 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules/@types 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project2/app.js SVC-1-0 "var x = require('bar');" + /home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts Text-1 "export const foo = 1;" + /users/user/projects/project2/app2.js Text-1 "var x = require('foo');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + Imported via 'foo' from file 'app2.js' + app2.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/users/user/projects/project2/app.js", + "/users/user/projects/project2/app2.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "projectRootPath": "/users/user/projects/project2", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [], + "filesToWatch": [ + "/users/user/projects/project2/bower_components", + "/users/user/projects/project2/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project2/jsconfig.json", + "files": [ + "/users/user/projects/project2/bower_components", + "/users/user/projects/project2/node_modules" + ] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/bower_components 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/bower_components 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] No new typings were requested as a result of typings discovery +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "318b0b83fbc7be458819ec932b0b673d12709d07882bd4b96f96985c09b696c4", + "fileStats": { + "js": 2, + "jsSize": 46, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 3, + "dtsSize": 453, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": true, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project2/app.js", + "configFile": "/users/user/projects/project2/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 2, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/bower_components: + {"pollingInterval":500} +/users/user/projects/project1/node_modules: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project2/bower_components: *new* + {"pollingInterval":500} +/users/user/projects/project2/node_modules: *new* + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: *new* + {"pollingInterval":500} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: *new* + {} +/users/user/projects/project2/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project2: *new* + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts *changed* + version: Text-1 + containingProjects: 2 *changed* + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json *new* +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts *changed* + version: Text-1 + containingProjects: 2 *changed* + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json *new* +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project2/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json + +Before request + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project3/app.js" + }, + "seq": 3, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project3/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project3/jsconfig.json, currentDirectory: /users/user/projects/project3 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/jsconfig.json 2000 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project3/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project3/app.js", + "/users/user/projects/project3/app2.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project3/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project3/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project3/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3 1 undefined Config: /users/user/projects/project3/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3 1 undefined Config: /users/user/projects/project3/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/app2.js 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project3/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project3/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'bar' was found in cache from location '/users/user/projects'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] ======== Resolving module 'foo' from '/users/user/projects/project3/app2.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'foo' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project3/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'foo' was found in cache from location '/users/user/projects'. +Info seq [hh:mm:ss:mss] ======== Module name 'foo' was not resolved. ======== +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/package.json 2000 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/package.json 2000 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules/@types 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules/@types 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project3/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project3/app.js SVC-1-0 "var x = require('bar');" + /users/user/projects/project3/app2.js Text-1 "var x = require('foo');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + app2.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project3/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "b03a661e323d76898c84af369d25377a0a5531270f5a2f1e243ca14104fd96c1", + "fileStats": { + "js": 3, + "jsSize": 64, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 1, + "dtsSize": 413, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project3/app.js", + "configFile": "/users/user/projects/project3/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 3, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/node_modules/bar/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: + {"pollingInterval":500} +/users/user/projects/project1/node_modules: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project2/bower_components: + {"pollingInterval":500} +/users/user/projects/project2/node_modules: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules: *new* + {"pollingInterval":500} +/users/user/projects/project3/node_modules/@types: *new* + {"pollingInterval":500} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: + {} +/users/user/projects/project2/jsconfig.json: + {} +/users/user/projects/project3/app2.js: *new* + {} +/users/user/projects/project3/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project2: + {} +/users/user/projects/project3: *new* + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts + version: Text-1 + containingProjects: 2 + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts *changed* + version: Text-1 + containingProjects: 3 *changed* + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json + /users/user/projects/project3/jsconfig.json *new* +/users/user/projects/node_modules/bar/index.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project2/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project3/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json *default* +/users/user/projects/project3/app2.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json + +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Before running Timeout callback:: count: 2 +1: /users/user/projects/project1/jsconfig.json +2: *ensureProjectForOpenFiles* +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false + } +} + + +Timeout callback:: count: 2 +1: /users/user/projects/project1/jsconfig.json *new* +2: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 2 *changed* + projectProgramVersion: 1 + dirty: true *changed* + autoImportProviderHost: undefined *changed* +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Change in config file detected" + } + } +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +TI:: [hh:mm:ss:mss] Closing file watchers for project '/users/user/projects/project1/jsconfig.json' +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json", + "files": [] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Closing file watchers for project '/users/user/projects/project1/jsconfig.json' - done. +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Resolution for module 'bar' was found in cache from location '/users/user/projects/project1'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/jsconfig.json", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /users/user/projects/project1/app.js,/users/user/projects/project2/app.js,/users/user/projects/project3/app.js +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/users/user/projects/project1/app.js", + "/users/user/projects/project2/app.js", + "/users/user/projects/project3/app.js" + ] + } + } +After running Timeout callback:: count: 0 + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project2/bower_components: + {"pollingInterval":500} +/users/user/projects/project2/node_modules: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules: + {"pollingInterval":500} +/users/user/projects/project3/node_modules/@types: + {"pollingInterval":500} + +PolledWatches *deleted*:: +/users/user/projects/project1/bower_components: + {"pollingInterval":500} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: + {} +/users/user/projects/project2/jsconfig.json: + {} +/users/user/projects/project3/app2.js: + {} +/users/user/projects/project3/jsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project2: + {} +/users/user/projects/project3: + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 2 + projectProgramVersion: 2 *changed* + dirty: false *changed* +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts *changed* + version: Text-1 + containingProjects: 1 *changed* + /users/user/projects/project2/jsconfig.json + /users/user/projects/project1/jsconfig.json *deleted* +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 3 + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json + /users/user/projects/project3/jsconfig.json +/users/user/projects/node_modules/bar/index.js *changed* + version: Text-1 + containingProjects: 2 *changed* + /users/user/projects/project3/jsconfig.json + /users/user/projects/project1/jsconfig.json *new* +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project2/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project3/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json *default* +/users/user/projects/project3/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Before running Timeout callback:: count: 2 +3: /users/user/projects/project1/jsconfig.json +4: *ensureProjectForOpenFiles* +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + } +} + + +Timeout callback:: count: 2 +3: /users/user/projects/project1/jsconfig.json *new* +4: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 3 *changed* + projectProgramVersion: 2 + dirty: true *changed* +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Change in config file detected" + } + } +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Resolution for module 'bar' was found in cache from location '/users/user/projects/project1'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 3 projectProgramVersion: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/users/user/projects/project1/app.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "projectRootPath": "/users/user/projects/project1", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [], + "filesToWatch": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json", + "files": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] No new typings were requested as a result of typings discovery +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/jsconfig.json", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /users/user/projects/project1/app.js,/users/user/projects/project2/app.js,/users/user/projects/project3/app.js +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/users/user/projects/project1/app.js", + "/users/user/projects/project2/app.js", + "/users/user/projects/project3/app.js" + ] + } + } +After running Timeout callback:: count: 0 + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project2/bower_components: + {"pollingInterval":500} +/users/user/projects/project2/node_modules: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules: + {"pollingInterval":500} +/users/user/projects/project3/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: + {} +/users/user/projects/project2/jsconfig.json: + {} +/users/user/projects/project3/app2.js: + {} +/users/user/projects/project3/jsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project2: + {} +/users/user/projects/project3: + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 3 + projectProgramVersion: 3 *changed* + dirty: false *changed* +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts *changed* + version: Text-1 + containingProjects: 2 *changed* + /users/user/projects/project2/jsconfig.json + /users/user/projects/project1/jsconfig.json *new* +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 3 + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json + /users/user/projects/project3/jsconfig.json +/users/user/projects/node_modules/bar/index.js *changed* + version: Text-1 + containingProjects: 1 *changed* + /users/user/projects/project3/jsconfig.json + /users/user/projects/project1/jsconfig.json *deleted* +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project2/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project3/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json *default* +/users/user/projects/project3/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 diff --git a/tests/baselines/reference/tsserver/typeAquisition/changes-to-typeAquisition-with-already-aquired-typing-multiple-projects.js b/tests/baselines/reference/tsserver/typeAquisition/changes-to-typeAquisition-with-already-aquired-typing-multiple-projects.js new file mode 100644 index 0000000000000..d9e4a82e7d45d --- /dev/null +++ b/tests/baselines/reference/tsserver/typeAquisition/changes-to-typeAquisition-with-already-aquired-typing-multiple-projects.js @@ -0,0 +1,1980 @@ +Info seq [hh:mm:ss:mss] currentDirectory:: /home/src/Vscode/Projects/bin useCaseSensitiveFileNames:: false +Info seq [hh:mm:ss:mss] libs Location:: /home/src/tslibs/TS/Lib +Info seq [hh:mm:ss:mss] globalTypingsCacheLocation:: /home/src/Library/Caches/typescript +Info seq [hh:mm:ss:mss] Provided types map file "/home/src/tslibs/TS/Lib/typesMap.json" doesn't exist +Before request +//// [/users/user/projects/project1/app.js] +var x = require('bar'); + +//// [/users/user/projects/project1/node_modules/bar/index.js] +export const x = 1 + +//// [/users/user/projects/project2/app.js] +var x = require('bar'); + +//// [/users/user/projects/project2/app2.js] +var x = require('foo'); + +//// [/users/user/projects/project2/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + } +} + +//// [/users/user/projects/project3/app.js] +var x = require('bar'); + +//// [/users/user/projects/project3/app2.js] +var x = require('foo'); + +//// [/users/user/projects/project3/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false + } +} + +//// [/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts] +export const foo = 1; + +//// [/users/user/projects/project2/node_modules/bar/index.js] +export const x = 1 + +//// [/users/user/projects/project3/node_modules/bar/index.js] +export const x = 1 + +//// [/home/src/tslibs/TS/Lib/lib.d.ts] +/// +interface Boolean {} +interface Function {} +interface CallableFunction {} +interface NewableFunction {} +interface IArguments {} +interface Number { toExponential: any; } +interface Object {} +interface RegExp {} +interface String { charAt: any; } +interface Array { length: number; [n: number]: T; } +interface ReadonlyArray {} +declare const console: { log(msg: any): void; }; + +//// [/home/src/Library/Caches/typescript/package.json] +{ "private": true } + +//// [/home/src/Library/Caches/typescript/node_modules/types-registry/index.json] +{ + "entries": { + "bar": { + "latest": "1.3.0", + "ts2.0": "1.0.0", + "ts2.1": "1.0.0", + "ts2.2": "1.2.0", + "ts2.3": "1.3.0", + "ts2.4": "1.3.0", + "ts2.5": "1.3.0", + "ts2.6": "1.3.0", + "ts2.7": "1.3.0" + }, + "foo": { + "latest": "1.3.0", + "ts2.0": "1.0.0", + "ts2.1": "1.0.0", + "ts2.2": "1.2.0", + "ts2.3": "1.3.0", + "ts2.4": "1.3.0", + "ts2.5": "1.3.0", + "ts2.6": "1.3.0", + "ts2.7": "1.3.0" + } + } +} + +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + } +} + +//// [/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts] +export const x = 1; + + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project1/app.js" + }, + "seq": 1, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project1/jsconfig.json, currentDirectory: /users/user/projects/project1 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project1/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1 1 undefined Config: /users/user/projects/project1/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1 1 undefined Config: /users/user/projects/project1/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project1/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/project1/node_modules/bar/index.js', result '/users/user/projects/project1/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project1/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project1/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] Found 'package.json' at '/home/src/Library/Caches/typescript/package.json'. +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: Creating typing installer + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/node_modules: *new* + {"pollingInterval":500} +/users/user/projects/node_modules/@types: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: *new* + {"pollingInterval":500} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: *new* + {} +/home/src/tslibs/TS/Lib/lib.d.ts: *new* + {} +/users/user/projects/project1/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: *new* + {} +/users/user/projects/project1: *new* + {} +/users/user/projects/project1/node_modules: *new* + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 0 + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project1/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* + +TI:: [hh:mm:ss:mss] Global cache location '/home/src/Library/Caches/typescript', safe file path '/home/src/tslibs/TS/Lib/typingSafeList.json', types map path /home/src/tslibs/TS/Lib/typesMap.json +TI:: [hh:mm:ss:mss] Processing cache location '/home/src/Library/Caches/typescript' +TI:: [hh:mm:ss:mss] Trying to find '/home/src/Library/Caches/typescript/package.json'... +TI:: [hh:mm:ss:mss] Finished processing cache location '/home/src/Library/Caches/typescript' +TI:: [hh:mm:ss:mss] Npm config file: /home/src/Library/Caches/typescript/package.json +TI:: [hh:mm:ss:mss] Updating types-registry npm package... +TI:: [hh:mm:ss:mss] npm install --ignore-scripts types-registry@latest +TI:: [hh:mm:ss:mss] Updated types-registry npm package +TI:: typing installer creation complete + +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/users/user/projects/project1/app.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "projectRootPath": "/users/user/projects/project1", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project1/node_modules; all files: [] +TI:: [hh:mm:ss:mss] Found package names: [] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [], + "filesToWatch": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json", + "files": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] No new typings were requested as a result of typings discovery +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "a24ce251bb636300af6d4777b3f4b21687a6424baa3ae50af422af2a5b2dd7f0", + "fileStats": { + "js": 1, + "jsSize": 23, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 2, + "dtsSize": 432, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": true, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/app.js", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 1, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/bower_components: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 1 + projectProgramVersion: 1 *changed* + autoImportProviderHost: false *changed* + +Before request + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project2/app.js" + }, + "seq": 2, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project2/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project2/jsconfig.json, currentDirectory: /users/user/projects/project2 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project2/jsconfig.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project2/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project2/app.js", + "/users/user/projects/project2/app2.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project2/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2 1 undefined Config: /users/user/projects/project2/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2 1 undefined Config: /users/user/projects/project2/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project2/app2.js 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project2/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/project2/node_modules/bar/index.js', result '/users/user/projects/project2/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project2/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project2/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'foo' from '/users/user/projects/project2/app2.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'foo' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/foo.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/foo.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'foo' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/foo.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/foo.jsx' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] ======== Module name 'foo' was not resolved. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project2/jsconfig.json'. Running extra resolution pass for module 'foo' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/foo/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules/@types 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules/@types 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project2/app.js SVC-1-0 "var x = require('bar');" + /home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts Text-1 "export const foo = 1;" + /users/user/projects/project2/app2.js Text-1 "var x = require('foo');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + Imported via 'foo' from file 'app2.js' + app2.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/users/user/projects/project2/app.js", + "/users/user/projects/project2/app2.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "projectRootPath": "/users/user/projects/project2", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project2/node_modules; all files: [] +TI:: [hh:mm:ss:mss] Found package names: [] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [], + "filesToWatch": [ + "/users/user/projects/project2/bower_components", + "/users/user/projects/project2/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project2/jsconfig.json", + "files": [ + "/users/user/projects/project2/bower_components", + "/users/user/projects/project2/node_modules" + ] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/bower_components 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/bower_components 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] No new typings were requested as a result of typings discovery +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "318b0b83fbc7be458819ec932b0b673d12709d07882bd4b96f96985c09b696c4", + "fileStats": { + "js": 2, + "jsSize": 46, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 3, + "dtsSize": 453, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": true, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project2/app.js", + "configFile": "/users/user/projects/project2/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 2, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/bower_components: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project2/bower_components: *new* + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: *new* + {"pollingInterval":500} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: *new* + {} +/users/user/projects/project2/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} +/users/user/projects/project2: *new* + {} +/users/user/projects/project2/node_modules: *new* + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts *changed* + version: Text-1 + containingProjects: 2 *changed* + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json *new* +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts *changed* + version: Text-1 + containingProjects: 2 *changed* + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json *new* +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project2/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json + +Before request + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project3/app.js" + }, + "seq": 3, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project3/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project3/jsconfig.json, currentDirectory: /users/user/projects/project3 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/jsconfig.json 2000 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project3/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project3/app.js", + "/users/user/projects/project3/app2.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project3/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project3/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project3/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3 1 undefined Config: /users/user/projects/project3/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3 1 undefined Config: /users/user/projects/project3/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/app2.js 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project3/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project3/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/project3/node_modules/bar/index.js', result '/users/user/projects/project3/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project3/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] ======== Resolving module 'foo' from '/users/user/projects/project3/app2.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'foo' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/foo.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/foo.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project3/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'foo' was found in cache from location '/users/user/projects'. +Info seq [hh:mm:ss:mss] ======== Module name 'foo' was not resolved. ======== +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules/package.json 2000 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/package.json 2000 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/package.json 2000 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules/@types 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules/@types 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project3/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/project3/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project3/app.js SVC-1-0 "var x = require('bar');" + /users/user/projects/project3/app2.js Text-1 "var x = require('foo');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + app2.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project3/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "b03a661e323d76898c84af369d25377a0a5531270f5a2f1e243ca14104fd96c1", + "fileStats": { + "js": 3, + "jsSize": 64, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 1, + "dtsSize": 413, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project3/app.js", + "configFile": "/users/user/projects/project3/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 3, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project2/bower_components: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules/@types: *new* + {"pollingInterval":500} +/users/user/projects/project3/node_modules/bar/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project3/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project3/package.json: *new* + {"pollingInterval":2000} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: + {} +/users/user/projects/project2/jsconfig.json: + {} +/users/user/projects/project3/app2.js: *new* + {} +/users/user/projects/project3/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} +/users/user/projects/project2: + {} +/users/user/projects/project2/node_modules: + {} +/users/user/projects/project3: *new* + {} +/users/user/projects/project3/node_modules: *new* + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts + version: Text-1 + containingProjects: 2 + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts *changed* + version: Text-1 + containingProjects: 3 *changed* + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json + /users/user/projects/project3/jsconfig.json *new* +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project2/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project3/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json *default* +/users/user/projects/project3/app2.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json +/users/user/projects/project3/node_modules/bar/index.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json + +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Before running Timeout callback:: count: 2 +1: /users/user/projects/project1/jsconfig.json +2: *ensureProjectForOpenFiles* +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false + } +} + + +Timeout callback:: count: 2 +1: /users/user/projects/project1/jsconfig.json *new* +2: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 2 *changed* + projectProgramVersion: 1 + dirty: true *changed* + autoImportProviderHost: undefined *changed* +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Change in config file detected" + } + } +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +TI:: [hh:mm:ss:mss] Closing file watchers for project '/users/user/projects/project1/jsconfig.json' +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json", + "files": [] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Closing file watchers for project '/users/user/projects/project1/jsconfig.json' - done. +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Resolution for module 'bar' was found in cache from location '/users/user/projects/project1'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project1/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/project1/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/jsconfig.json", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /users/user/projects/project1/app.js,/users/user/projects/project2/app.js,/users/user/projects/project3/app.js +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/users/user/projects/project1/app.js", + "/users/user/projects/project2/app.js", + "/users/user/projects/project3/app.js" + ] + } + } +After running Timeout callback:: count: 0 + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/bar/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project2/bower_components: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project3/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project3/package.json: + {"pollingInterval":2000} + +PolledWatches *deleted*:: +/users/user/projects/project1/bower_components: + {"pollingInterval":500} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: + {} +/users/user/projects/project2/jsconfig.json: + {} +/users/user/projects/project3/app2.js: + {} +/users/user/projects/project3/jsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} +/users/user/projects/project2: + {} +/users/user/projects/project2/node_modules: + {} +/users/user/projects/project3: + {} +/users/user/projects/project3/node_modules: + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 2 + projectProgramVersion: 2 *changed* + dirty: false *changed* +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts *changed* + version: Text-1 + containingProjects: 1 *changed* + /users/user/projects/project2/jsconfig.json + /users/user/projects/project1/jsconfig.json *deleted* +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 3 + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json + /users/user/projects/project3/jsconfig.json +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project1/node_modules/bar/index.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project2/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project3/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json *default* +/users/user/projects/project3/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json +/users/user/projects/project3/node_modules/bar/index.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Before running Timeout callback:: count: 2 +3: /users/user/projects/project1/jsconfig.json +4: *ensureProjectForOpenFiles* +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + } +} + + +Timeout callback:: count: 2 +3: /users/user/projects/project1/jsconfig.json *new* +4: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 3 *changed* + projectProgramVersion: 2 + dirty: true *changed* +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Change in config file detected" + } + } +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Resolution for module 'bar' was found in cache from location '/users/user/projects/project1'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project1/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project1/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project1/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 3 projectProgramVersion: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/users/user/projects/project1/app.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "projectRootPath": "/users/user/projects/project1", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project1/node_modules; all files: [] +TI:: [hh:mm:ss:mss] Found package names: [] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [], + "filesToWatch": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json", + "files": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] No new typings were requested as a result of typings discovery +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/jsconfig.json", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /users/user/projects/project1/app.js,/users/user/projects/project2/app.js,/users/user/projects/project3/app.js +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/users/user/projects/project1/app.js", + "/users/user/projects/project2/app.js", + "/users/user/projects/project3/app.js" + ] + } + } +After running Timeout callback:: count: 0 + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project2/bower_components: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project3/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project3/package.json: + {"pollingInterval":2000} + +PolledWatches *deleted*:: +/users/user/projects/project1/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: + {} +/users/user/projects/project2/jsconfig.json: + {} +/users/user/projects/project3/app2.js: + {} +/users/user/projects/project3/jsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} +/users/user/projects/project2: + {} +/users/user/projects/project2/node_modules: + {} +/users/user/projects/project3: + {} +/users/user/projects/project3/node_modules: + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 3 + projectProgramVersion: 3 *changed* + dirty: false *changed* +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts *changed* + version: Text-1 + containingProjects: 2 *changed* + /users/user/projects/project2/jsconfig.json + /users/user/projects/project1/jsconfig.json *new* +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 3 + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json + /users/user/projects/project3/jsconfig.json +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project1/node_modules/bar/index.js *changed* + version: Text-1 + containingProjects: 0 *changed* + /users/user/projects/project1/jsconfig.json *deleted* +/users/user/projects/project2/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project3/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json *default* +/users/user/projects/project3/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json +/users/user/projects/project3/node_modules/bar/index.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 diff --git a/tests/baselines/reference/tsserver/typeAquisition/changes-to-typeAquisition-with-already-aquired-typing.js b/tests/baselines/reference/tsserver/typeAquisition/changes-to-typeAquisition-with-already-aquired-typing.js new file mode 100644 index 0000000000000..b962e0b129bc9 --- /dev/null +++ b/tests/baselines/reference/tsserver/typeAquisition/changes-to-typeAquisition-with-already-aquired-typing.js @@ -0,0 +1,1081 @@ +Info seq [hh:mm:ss:mss] currentDirectory:: /home/src/Vscode/Projects/bin useCaseSensitiveFileNames:: false +Info seq [hh:mm:ss:mss] libs Location:: /home/src/tslibs/TS/Lib +Info seq [hh:mm:ss:mss] globalTypingsCacheLocation:: /home/src/Library/Caches/typescript +Info seq [hh:mm:ss:mss] Provided types map file "/home/src/tslibs/TS/Lib/typesMap.json" doesn't exist +Before request +//// [/users/user/projects/project1/app.js] +var x = require('bar'); + +//// [/users/user/projects/project1/node_modules/bar/index.js] +export const x = 1 + +//// [/home/src/tslibs/TS/Lib/lib.d.ts] +/// +interface Boolean {} +interface Function {} +interface CallableFunction {} +interface NewableFunction {} +interface IArguments {} +interface Number { toExponential: any; } +interface Object {} +interface RegExp {} +interface String { charAt: any; } +interface Array { length: number; [n: number]: T; } +interface ReadonlyArray {} +declare const console: { log(msg: any): void; }; + +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + } +} + +//// [/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts] +export const x = 1; + + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project1/app.js" + }, + "seq": 1, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project1/jsconfig.json, currentDirectory: /users/user/projects/project1 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project1/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1 1 undefined Config: /users/user/projects/project1/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1 1 undefined Config: /users/user/projects/project1/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project1/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/project1/node_modules/bar/index.js', result '/users/user/projects/project1/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project1/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project1/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' does not exist. +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: Creating typing installer + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/node_modules: *new* + {"pollingInterval":500} +/users/user/projects/node_modules/@types: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: *new* + {"pollingInterval":500} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: *new* + {} +/users/user/projects/project1/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: *new* + {} +/users/user/projects/project1: *new* + {} +/users/user/projects/project1/node_modules: *new* + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 0 + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project1/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* + +TI:: [hh:mm:ss:mss] Global cache location '/home/src/Library/Caches/typescript', safe file path '/home/src/tslibs/TS/Lib/typingSafeList.json', types map path /home/src/tslibs/TS/Lib/typesMap.json +TI:: [hh:mm:ss:mss] Processing cache location '/home/src/Library/Caches/typescript' +TI:: [hh:mm:ss:mss] Trying to find '/home/src/Library/Caches/typescript/package.json'... +TI:: [hh:mm:ss:mss] Finished processing cache location '/home/src/Library/Caches/typescript' +TI:: [hh:mm:ss:mss] Npm config file: /home/src/Library/Caches/typescript/package.json +TI:: [hh:mm:ss:mss] Npm config file: '/home/src/Library/Caches/typescript/package.json' is missing, creating new one... +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /home/src/Library/Caches/typescript/package.json 0:: WatchInfo: /home/src/Library/Caches/typescript/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /home/src/Library/Caches/typescript/package.json 0:: WatchInfo: /home/src/Library/Caches/typescript/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /home/src/Library/Caches/typescript/package.json 0:: WatchInfo: /home/src/Library/Caches/typescript/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /home/src/Library/Caches/typescript/package.json 0:: WatchInfo: /home/src/Library/Caches/typescript/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +TI:: [hh:mm:ss:mss] Updating types-registry npm package... +TI:: [hh:mm:ss:mss] npm install --ignore-scripts types-registry@latest +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/types-registry :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/types-registry :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/types-registry/index.json :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/types-registry/index.json :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +TI:: [hh:mm:ss:mss] Updated types-registry npm package +TI:: typing installer creation complete +//// [/home/src/Library/Caches/typescript/package.json] +{ "private": true } + +//// [/home/src/Library/Caches/typescript/node_modules/types-registry/index.json] +{ + "entries": { + "bar": { + "latest": "1.3.0", + "ts2.0": "1.0.0", + "ts2.1": "1.0.0", + "ts2.2": "1.2.0", + "ts2.3": "1.3.0", + "ts2.4": "1.3.0", + "ts2.5": "1.3.0", + "ts2.6": "1.3.0", + "ts2.7": "1.3.0" + } + } +} + + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} + +PolledWatches *deleted*:: +/home/src/Library/Caches/typescript/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: *new* + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} + +Timeout callback:: count: 1 +4: /users/user/projects/project1/jsconfig.jsonFailedLookupInvalidation *new* + +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/users/user/projects/project1/app.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "projectRootPath": "/users/user/projects/project1", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project1/node_modules; all files: [] +TI:: [hh:mm:ss:mss] Found package names: [] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [], + "filesToWatch": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json", + "files": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] No new typings were requested as a result of typings discovery +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "a24ce251bb636300af6d4777b3f4b21687a6424baa3ae50af422af2a5b2dd7f0", + "fileStats": { + "js": 1, + "jsSize": 23, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 2, + "dtsSize": 432, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": true, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Found 'package.json' at '/home/src/Library/Caches/typescript/package.json'. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'bar' from '/users/user/projects/project1/app.js' of old program, it was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/app.js", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 1, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/bower_components: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} + +Timeout callback:: count: 1 +4: /users/user/projects/project1/jsconfig.jsonFailedLookupInvalidation *deleted* +5: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 2 *changed* + projectProgramVersion: 2 *changed* + autoImportProviderHost: false *changed* + +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Before running Timeout callback:: count: 2 +6: /users/user/projects/project1/jsconfig.json +7: *ensureProjectForOpenFiles* +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false + } +} + + +Timeout callback:: count: 2 +5: *ensureProjectForOpenFiles* *deleted* +6: /users/user/projects/project1/jsconfig.json *new* +7: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 3 *changed* + projectProgramVersion: 2 + dirty: true *changed* + autoImportProviderHost: undefined *changed* + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Change in config file detected" + } + } +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +TI:: [hh:mm:ss:mss] Closing file watchers for project '/users/user/projects/project1/jsconfig.json' +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json", + "files": [] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Closing file watchers for project '/users/user/projects/project1/jsconfig.json' - done. +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Resolution for module 'bar' was found in cache from location '/users/user/projects/project1'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project1/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/Library/Caches/typescript/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 3 projectProgramVersion: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/project1/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/jsconfig.json", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /users/user/projects/project1/app.js +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/users/user/projects/project1/app.js" + ] + } + } +After running Timeout callback:: count: 0 + +PolledWatches:: +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/bar/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/package.json: *new* + {"pollingInterval":2000} + +PolledWatches *deleted*:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: + {"pollingInterval":500} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} + +FsWatches *deleted*:: +/home/src/Library/Caches/typescript/package.json: + {} + +FsWatchesRecursive:: +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} + +FsWatchesRecursive *deleted*:: +/home/src/Library/Caches/typescript/node_modules: + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 3 + projectProgramVersion: 3 *changed* + dirty: false *changed* + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts *changed* + version: Text-1 + containingProjects: 0 *changed* + /users/user/projects/project1/jsconfig.json *deleted* +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project1/node_modules/bar/index.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Before running Timeout callback:: count: 2 +8: /users/user/projects/project1/jsconfig.json +9: *ensureProjectForOpenFiles* +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + } +} + + +Timeout callback:: count: 2 +8: /users/user/projects/project1/jsconfig.json *new* +9: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 4 *changed* + projectProgramVersion: 3 + dirty: true *changed* + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Change in config file detected" + } + } +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Resolution for module 'bar' was found in cache from location '/users/user/projects/project1'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project1/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project1/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] Found 'package.json' at '/home/src/Library/Caches/typescript/package.json'. +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project1/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 4 projectProgramVersion: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/users/user/projects/project1/app.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "projectRootPath": "/users/user/projects/project1", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project1/node_modules; all files: [] +TI:: [hh:mm:ss:mss] Found package names: [] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [], + "filesToWatch": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json", + "files": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] No new typings were requested as a result of typings discovery +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/jsconfig.json", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /users/user/projects/project1/app.js +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/users/user/projects/project1/app.js" + ] + } + } +After running Timeout callback:: count: 0 + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/bower_components: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} + +PolledWatches *deleted*:: +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: *new* + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: *new* + {} +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 4 + projectProgramVersion: 4 *changed* + dirty: false *changed* + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts *changed* + version: Text-1 + containingProjects: 1 *changed* + /users/user/projects/project1/jsconfig.json *new* +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project1/node_modules/bar/index.js *changed* + version: Text-1 + containingProjects: 0 *changed* + /users/user/projects/project1/jsconfig.json *deleted* + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 diff --git a/tests/baselines/reference/tsserver/typeAquisition/disabled-typeAquisition-multiple-projects-with-shared-resolution.js b/tests/baselines/reference/tsserver/typeAquisition/disabled-typeAquisition-multiple-projects-with-shared-resolution.js new file mode 100644 index 0000000000000..c429f5efd4930 --- /dev/null +++ b/tests/baselines/reference/tsserver/typeAquisition/disabled-typeAquisition-multiple-projects-with-shared-resolution.js @@ -0,0 +1,1584 @@ +Info seq [hh:mm:ss:mss] currentDirectory:: /home/src/Vscode/Projects/bin useCaseSensitiveFileNames:: false +Info seq [hh:mm:ss:mss] libs Location:: /home/src/tslibs/TS/Lib +Info seq [hh:mm:ss:mss] globalTypingsCacheLocation:: /home/src/Library/Caches/typescript +Info seq [hh:mm:ss:mss] Provided types map file "/home/src/tslibs/TS/Lib/typesMap.json" doesn't exist +Before request +//// [/users/user/projects/project1/app.js] +var x = require('bar'); + +//// [/users/user/projects/node_modules/bar/index.js] +export const x = 1 + +//// [/users/user/projects/project2/app.js] +var x = require('bar'); + +//// [/users/user/projects/project2/app2.js] +var x = require('foo'); + +//// [/users/user/projects/project2/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + } +} + +//// [/users/user/projects/project3/app.js] +var x = require('bar'); + +//// [/users/user/projects/project3/app2.js] +var x = require('foo'); + +//// [/users/user/projects/project3/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false + } +} + +//// [/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts] +export const foo = 1; + +//// [/home/src/tslibs/TS/Lib/lib.d.ts] +/// +interface Boolean {} +interface Function {} +interface CallableFunction {} +interface NewableFunction {} +interface IArguments {} +interface Number { toExponential: any; } +interface Object {} +interface RegExp {} +interface String { charAt: any; } +interface Array { length: number; [n: number]: T; } +interface ReadonlyArray {} +declare const console: { log(msg: any): void; }; + +//// [/home/src/Library/Caches/typescript/package.json] +{ "private": true } + +//// [/home/src/Library/Caches/typescript/node_modules/types-registry/index.json] +{ + "entries": { + "bar": { + "latest": "1.3.0", + "ts2.0": "1.0.0", + "ts2.1": "1.0.0", + "ts2.2": "1.2.0", + "ts2.3": "1.3.0", + "ts2.4": "1.3.0", + "ts2.5": "1.3.0", + "ts2.6": "1.3.0", + "ts2.7": "1.3.0" + }, + "foo": { + "latest": "1.3.0", + "ts2.0": "1.0.0", + "ts2.1": "1.0.0", + "ts2.2": "1.2.0", + "ts2.3": "1.3.0", + "ts2.4": "1.3.0", + "ts2.5": "1.3.0", + "ts2.6": "1.3.0", + "ts2.7": "1.3.0" + } + } +} + +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false + } +} + + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project1/app.js" + }, + "seq": 1, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project1/jsconfig.json, currentDirectory: /users/user/projects/project1 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project1/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1 1 undefined Config: /users/user/projects/project1/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1 1 undefined Config: /users/user/projects/project1/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project1/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project1/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/node_modules/bar/index.js', result '/users/user/projects/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "a24ce251bb636300af6d4777b3f4b21687a6424baa3ae50af422af2a5b2dd7f0", + "fileStats": { + "js": 2, + "jsSize": 41, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 1, + "dtsSize": 413, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/app.js", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 1, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/users/user/projects/node_modules/@types: *new* + {"pollingInterval":500} +/users/user/projects/node_modules/bar/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/node_modules: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: *new* + {"pollingInterval":500} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: *new* + {} +/users/user/projects/project1/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/users/user/projects/node_modules: *new* + {} +/users/user/projects/project1: *new* + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/node_modules/bar/index.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project1/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* + +Before request + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project2/app.js" + }, + "seq": 2, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project2/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project2/jsconfig.json, currentDirectory: /users/user/projects/project2 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project2/jsconfig.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project2/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project2/app.js", + "/users/user/projects/project2/app2.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project2/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2 1 undefined Config: /users/user/projects/project2/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2 1 undefined Config: /users/user/projects/project2/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project2/app2.js 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project2/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'bar' was found in cache from location '/users/user/projects'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project2/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'foo' from '/users/user/projects/project2/app2.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'foo' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/foo.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/foo.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'foo' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/foo.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/foo.jsx' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] ======== Module name 'foo' was not resolved. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project2/jsconfig.json'. Running extra resolution pass for module 'foo' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] Found 'package.json' at '/home/src/Library/Caches/typescript/package.json'. +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/foo/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules/@types 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules/@types 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project2/app.js SVC-1-0 "var x = require('bar');" + /home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts Text-1 "export const foo = 1;" + /users/user/projects/project2/app2.js Text-1 "var x = require('foo');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + Imported via 'foo' from file 'app2.js' + app2.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: Creating typing installer + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project2/node_modules: *new* + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: *new* + {"pollingInterval":500} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: *new* + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: *new* + {} +/users/user/projects/project2/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: *new* + {} +/users/user/projects/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project2: *new* + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 0 + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts *changed* + version: Text-1 + containingProjects: 2 *changed* + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json *new* +/users/user/projects/node_modules/bar/index.js *changed* + version: Text-1 + containingProjects: 2 *changed* + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json *new* +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project2/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json + +TI:: [hh:mm:ss:mss] Global cache location '/home/src/Library/Caches/typescript', safe file path '/home/src/tslibs/TS/Lib/typingSafeList.json', types map path /home/src/tslibs/TS/Lib/typesMap.json +TI:: [hh:mm:ss:mss] Processing cache location '/home/src/Library/Caches/typescript' +TI:: [hh:mm:ss:mss] Trying to find '/home/src/Library/Caches/typescript/package.json'... +TI:: [hh:mm:ss:mss] Finished processing cache location '/home/src/Library/Caches/typescript' +TI:: [hh:mm:ss:mss] Npm config file: /home/src/Library/Caches/typescript/package.json +TI:: [hh:mm:ss:mss] Updating types-registry npm package... +TI:: [hh:mm:ss:mss] npm install --ignore-scripts types-registry@latest +TI:: [hh:mm:ss:mss] Updated types-registry npm package +TI:: typing installer creation complete + +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/users/user/projects/project2/app.js", + "/users/user/projects/project2/app2.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "unresolvedImports": [ + "bar" + ], + "projectRootPath": "/users/user/projects/project2", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: ["bar"] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [ + "bar" + ], + "filesToWatch": [ + "/users/user/projects/project2/bower_components", + "/users/user/projects/project2/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project2/jsconfig.json", + "files": [ + "/users/user/projects/project2/bower_components", + "/users/user/projects/project2/node_modules" + ] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/bower_components 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/bower_components 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Installing typings ["bar"] +TI:: [hh:mm:ss:mss] Npm config file: /home/src/Library/Caches/typescript/package.json +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "event::beginInstallTypes", + "eventId": 1, + "typingsInstallerVersion": "FakeVersion", + "projectName": "/users/user/projects/project2/jsconfig.json" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "beginInstallTypes", + "body": { + "eventId": 1 + } + } +TI:: [hh:mm:ss:mss] #1 with cwd: /home/src/Library/Caches/typescript arguments: [ + "@types/bar@tsFakeMajor.Minor" +] +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "318b0b83fbc7be458819ec932b0b673d12709d07882bd4b96f96985c09b696c4", + "fileStats": { + "js": 3, + "jsSize": 64, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 2, + "dtsSize": 434, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": true, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project2/app.js", + "configFile": "/users/user/projects/project2/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 2, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project2/bower_components: *new* + {"pollingInterval":500} +/users/user/projects/project2/node_modules: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: + {} +/users/user/projects/project2/jsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project2: + {} + +PendingInstalls callback:: count: 1 +1: #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) *changed* + projectStateVersion: 1 + projectProgramVersion: 1 *changed* + autoImportProviderHost: false *changed* + +Before request + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project3/app.js" + }, + "seq": 3, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project3/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project3/jsconfig.json, currentDirectory: /users/user/projects/project3 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/jsconfig.json 2000 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project3/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project3/app.js", + "/users/user/projects/project3/app2.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project3/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project3/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project3/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3 1 undefined Config: /users/user/projects/project3/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3 1 undefined Config: /users/user/projects/project3/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/app2.js 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project3/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project3/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'bar' was found in cache from location '/users/user/projects'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'foo' from '/users/user/projects/project3/app2.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'foo' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project3/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'foo' was found in cache from location '/users/user/projects'. +Info seq [hh:mm:ss:mss] ======== Module name 'foo' was not resolved. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules/@types 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules/@types 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project3/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project3/app.js SVC-1-0 "var x = require('bar');" + /users/user/projects/project3/app2.js Text-1 "var x = require('foo');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + app2.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project3/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "b03a661e323d76898c84af369d25377a0a5531270f5a2f1e243ca14104fd96c1", + "fileStats": { + "js": 3, + "jsSize": 64, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 1, + "dtsSize": 413, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project3/app.js", + "configFile": "/users/user/projects/project3/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 3, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project2/bower_components: + {"pollingInterval":500} +/users/user/projects/project2/node_modules: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules: *new* + {"pollingInterval":500} +/users/user/projects/project3/node_modules/@types: *new* + {"pollingInterval":500} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: + {} +/users/user/projects/project2/jsconfig.json: + {} +/users/user/projects/project3/app2.js: *new* + {} +/users/user/projects/project3/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project2: + {} +/users/user/projects/project3: *new* + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts *changed* + version: Text-1 + containingProjects: 3 *changed* + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json + /users/user/projects/project3/jsconfig.json *new* +/users/user/projects/node_modules/bar/index.js *changed* + version: Text-1 + containingProjects: 3 *changed* + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json + /users/user/projects/project3/jsconfig.json *new* +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project2/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project3/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json *default* +/users/user/projects/project3/app2.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json + +Before running PendingInstalls callback:: count: 1 +1: #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] + +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/@types/bar :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/@types/bar :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +TI:: Installation #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] complete with success::true +//// [/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts] +export const x = 1; + + +Timeout callback:: count: 1 +2: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation *new* + +TI:: [hh:mm:ss:mss] Installed typings ["@types/bar@tsFakeMajor.Minor"] +TI:: [hh:mm:ss:mss] Installed typing files ["/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts"] +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [ + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts" + ], + "unresolvedImports": [ + "bar" + ], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [ + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts" + ], + "unresolvedImports": [ + "bar" + ], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "event::endInstallTypes", + "eventId": 1, + "projectName": "/users/user/projects/project2/jsconfig.json", + "packagesToInstall": [ + "@types/bar@tsFakeMajor.Minor" + ], + "installSuccess": true, + "typingsInstallerVersion": "FakeVersion" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "endInstallTypes", + "body": { + "eventId": 1, + "packages": [ + "@types/bar@tsFakeMajor.Minor" + ], + "success": true + } + } +After running PendingInstalls callback:: count: 0 + +Timeout callback:: count: 3 +2: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +3: /users/user/projects/project2/jsconfig.json *new* +4: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) *changed* + projectStateVersion: 2 *changed* + projectProgramVersion: 1 + dirty: true *changed* + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +Before running Timeout callback:: count: 3 +2: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +3: /users/user/projects/project2/jsconfig.json +4: *ensureProjectForOpenFiles* + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project2/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/node_modules/bar/index.js', result '/users/user/projects/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project2/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'foo' from '/users/user/projects/project2/app2.js' of old program, it was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/bar/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project2/app.js SVC-1-0 "var x = require('bar');" + /home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts Text-1 "export const foo = 1;" + /users/user/projects/project2/app2.js Text-1 "var x = require('foo');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts + Imported via 'bar' from file 'app.js' + Matched by default include pattern '**/*' + app.js + Matched by default include pattern '**/*' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + Imported via 'foo' from file 'app2.js' + app2.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts", + "/users/user/projects/project2/app.js", + "/users/user/projects/project2/app2.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "projectRootPath": "/users/user/projects/project2", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [], + "filesToWatch": [ + "/users/user/projects/project2/bower_components", + "/users/user/projects/project2/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project2/jsconfig.json" + } +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] No new typings were requested as a result of typings discovery +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Reusing resolution of module 'bar' from '/users/user/projects/project2/app.js' of old program, it was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'foo' from '/users/user/projects/project2/app2.js' of old program, it was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json projectStateVersion: 3 projectProgramVersion: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project2/app.js SVC-1-0 "var x = require('bar');" + /home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts Text-1 "export const foo = 1;" + /users/user/projects/project2/app2.js Text-1 "var x = require('foo');" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +After running Timeout callback:: count: 2 + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project2/bower_components: + {"pollingInterval":500} +/users/user/projects/project2/node_modules: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules: + {"pollingInterval":500} +/users/user/projects/project3/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: + {} +/users/user/projects/project2/jsconfig.json: + {} +/users/user/projects/project3/app2.js: + {} +/users/user/projects/project3/jsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project2: + {} +/users/user/projects/project3: + {} + +Timeout callback:: count: 2 +4: *ensureProjectForOpenFiles* *deleted* +5: /users/user/projects/project2/jsconfig.json *new* +6: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) *changed* + projectStateVersion: 3 *changed* + projectProgramVersion: 3 *changed* + dirty: false *changed* + autoImportProviderHost: undefined *changed* +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 3 + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json + /users/user/projects/project3/jsconfig.json +/users/user/projects/node_modules/bar/index.js *changed* + version: Text-1 + containingProjects: 2 *changed* + /users/user/projects/project1/jsconfig.json + /users/user/projects/project3/jsconfig.json + /users/user/projects/project2/jsconfig.json *deleted* +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project2/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project3/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json *default* +/users/user/projects/project3/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json + +Before running Timeout callback:: count: 2 +5: /users/user/projects/project2/jsconfig.json +6: *ensureProjectForOpenFiles* + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /users/user/projects/project1/app.js,/users/user/projects/project2/app.js,/users/user/projects/project3/app.js +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/users/user/projects/project1/app.js", + "/users/user/projects/project2/app.js", + "/users/user/projects/project3/app.js" + ] + } + } +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 diff --git a/tests/baselines/reference/tsserver/typeAquisition/disabled-typeAquisition-multiple-projects.js b/tests/baselines/reference/tsserver/typeAquisition/disabled-typeAquisition-multiple-projects.js new file mode 100644 index 0000000000000..be9a9ce455caa --- /dev/null +++ b/tests/baselines/reference/tsserver/typeAquisition/disabled-typeAquisition-multiple-projects.js @@ -0,0 +1,1709 @@ +Info seq [hh:mm:ss:mss] currentDirectory:: /home/src/Vscode/Projects/bin useCaseSensitiveFileNames:: false +Info seq [hh:mm:ss:mss] libs Location:: /home/src/tslibs/TS/Lib +Info seq [hh:mm:ss:mss] globalTypingsCacheLocation:: /home/src/Library/Caches/typescript +Info seq [hh:mm:ss:mss] Provided types map file "/home/src/tslibs/TS/Lib/typesMap.json" doesn't exist +Before request +//// [/users/user/projects/project1/app.js] +var x = require('bar'); + +//// [/users/user/projects/project1/node_modules/bar/index.js] +export const x = 1 + +//// [/users/user/projects/project2/app.js] +var x = require('bar'); + +//// [/users/user/projects/project2/app2.js] +var x = require('foo'); + +//// [/users/user/projects/project2/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + } +} + +//// [/users/user/projects/project3/app.js] +var x = require('bar'); + +//// [/users/user/projects/project3/app2.js] +var x = require('foo'); + +//// [/users/user/projects/project3/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false + } +} + +//// [/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts] +export const foo = 1; + +//// [/users/user/projects/project2/node_modules/bar/index.js] +export const x = 1 + +//// [/users/user/projects/project3/node_modules/bar/index.js] +export const x = 1 + +//// [/home/src/tslibs/TS/Lib/lib.d.ts] +/// +interface Boolean {} +interface Function {} +interface CallableFunction {} +interface NewableFunction {} +interface IArguments {} +interface Number { toExponential: any; } +interface Object {} +interface RegExp {} +interface String { charAt: any; } +interface Array { length: number; [n: number]: T; } +interface ReadonlyArray {} +declare const console: { log(msg: any): void; }; + +//// [/home/src/Library/Caches/typescript/package.json] +{ "private": true } + +//// [/home/src/Library/Caches/typescript/node_modules/types-registry/index.json] +{ + "entries": { + "bar": { + "latest": "1.3.0", + "ts2.0": "1.0.0", + "ts2.1": "1.0.0", + "ts2.2": "1.2.0", + "ts2.3": "1.3.0", + "ts2.4": "1.3.0", + "ts2.5": "1.3.0", + "ts2.6": "1.3.0", + "ts2.7": "1.3.0" + }, + "foo": { + "latest": "1.3.0", + "ts2.0": "1.0.0", + "ts2.1": "1.0.0", + "ts2.2": "1.2.0", + "ts2.3": "1.3.0", + "ts2.4": "1.3.0", + "ts2.5": "1.3.0", + "ts2.6": "1.3.0", + "ts2.7": "1.3.0" + } + } +} + +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false + } +} + + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project1/app.js" + }, + "seq": 1, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project1/jsconfig.json, currentDirectory: /users/user/projects/project1 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project1/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1 1 undefined Config: /users/user/projects/project1/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1 1 undefined Config: /users/user/projects/project1/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project1/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/project1/node_modules/bar/index.js', result '/users/user/projects/project1/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project1/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/project1/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "a24ce251bb636300af6d4777b3f4b21687a6424baa3ae50af422af2a5b2dd7f0", + "fileStats": { + "js": 2, + "jsSize": 41, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 1, + "dtsSize": 413, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/app.js", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 1, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/users/user/projects/node_modules: *new* + {"pollingInterval":500} +/users/user/projects/node_modules/@types: *new* + {"pollingInterval":500} +/users/user/projects/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/@types: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules/bar/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/package.json: *new* + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: *new* + {} +/users/user/projects/project1/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/users/user/projects/project1: *new* + {} +/users/user/projects/project1/node_modules: *new* + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project1/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project1/node_modules/bar/index.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json + +Before request + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project2/app.js" + }, + "seq": 2, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project2/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project2/jsconfig.json, currentDirectory: /users/user/projects/project2 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project2/jsconfig.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project2/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project2/app.js", + "/users/user/projects/project2/app2.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project2/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2 1 undefined Config: /users/user/projects/project2/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2 1 undefined Config: /users/user/projects/project2/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project2/app2.js 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project2/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/project2/node_modules/bar/index.js', result '/users/user/projects/project2/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project2/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project2/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] ======== Resolving module 'foo' from '/users/user/projects/project2/app2.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'foo' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/foo.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/foo.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'foo' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/foo.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/foo.jsx' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] ======== Module name 'foo' was not resolved. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project2/jsconfig.json'. Running extra resolution pass for module 'foo' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] Found 'package.json' at '/home/src/Library/Caches/typescript/package.json'. +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project2/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/foo/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules/@types 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules/@types 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/project2/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project2/app.js SVC-1-0 "var x = require('bar');" + /home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts Text-1 "export const foo = 1;" + /users/user/projects/project2/app2.js Text-1 "var x = require('foo');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + Imported via 'foo' from file 'app2.js' + app2.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: Creating typing installer + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/package.json: + {"pollingInterval":2000} +/users/user/projects/project2/node_modules/@types: *new* + {"pollingInterval":500} +/users/user/projects/project2/node_modules/bar/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project2/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project2/package.json: *new* + {"pollingInterval":2000} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: *new* + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: *new* + {} +/users/user/projects/project2/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: *new* + {} +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} +/users/user/projects/project2: *new* + {} +/users/user/projects/project2/node_modules: *new* + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 0 + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts *changed* + version: Text-1 + containingProjects: 2 *changed* + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json *new* +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project1/node_modules/bar/index.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project2/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project2/node_modules/bar/index.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json + +TI:: [hh:mm:ss:mss] Global cache location '/home/src/Library/Caches/typescript', safe file path '/home/src/tslibs/TS/Lib/typingSafeList.json', types map path /home/src/tslibs/TS/Lib/typesMap.json +TI:: [hh:mm:ss:mss] Processing cache location '/home/src/Library/Caches/typescript' +TI:: [hh:mm:ss:mss] Trying to find '/home/src/Library/Caches/typescript/package.json'... +TI:: [hh:mm:ss:mss] Finished processing cache location '/home/src/Library/Caches/typescript' +TI:: [hh:mm:ss:mss] Npm config file: /home/src/Library/Caches/typescript/package.json +TI:: [hh:mm:ss:mss] Updating types-registry npm package... +TI:: [hh:mm:ss:mss] npm install --ignore-scripts types-registry@latest +TI:: [hh:mm:ss:mss] Updated types-registry npm package +TI:: typing installer creation complete + +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/users/user/projects/project2/app.js", + "/users/user/projects/project2/app2.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "unresolvedImports": [ + "bar" + ], + "projectRootPath": "/users/user/projects/project2", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project2/node_modules; all files: [] +TI:: [hh:mm:ss:mss] Found package names: [] +TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: ["bar"] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [ + "bar" + ], + "filesToWatch": [ + "/users/user/projects/project2/bower_components", + "/users/user/projects/project2/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project2/jsconfig.json", + "files": [ + "/users/user/projects/project2/bower_components", + "/users/user/projects/project2/node_modules" + ] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/bower_components 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/bower_components 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Installing typings ["bar"] +TI:: [hh:mm:ss:mss] Npm config file: /home/src/Library/Caches/typescript/package.json +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "event::beginInstallTypes", + "eventId": 1, + "typingsInstallerVersion": "FakeVersion", + "projectName": "/users/user/projects/project2/jsconfig.json" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "beginInstallTypes", + "body": { + "eventId": 1 + } + } +TI:: [hh:mm:ss:mss] #1 with cwd: /home/src/Library/Caches/typescript arguments: [ + "@types/bar@tsFakeMajor.Minor" +] +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "318b0b83fbc7be458819ec932b0b673d12709d07882bd4b96f96985c09b696c4", + "fileStats": { + "js": 3, + "jsSize": 64, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 2, + "dtsSize": 434, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": true, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project2/app.js", + "configFile": "/users/user/projects/project2/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 2, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/package.json: + {"pollingInterval":2000} +/users/user/projects/project2/bower_components: *new* + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project2/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project2/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: + {} +/users/user/projects/project2/jsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} +/users/user/projects/project2: + {} +/users/user/projects/project2/node_modules: + {} + +PendingInstalls callback:: count: 1 +1: #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) *changed* + projectStateVersion: 1 + projectProgramVersion: 1 *changed* + autoImportProviderHost: false *changed* + +Before request + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project3/app.js" + }, + "seq": 3, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project3/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project3/jsconfig.json, currentDirectory: /users/user/projects/project3 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/jsconfig.json 2000 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project3/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project3/app.js", + "/users/user/projects/project3/app2.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project3/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project3/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project3/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3 1 undefined Config: /users/user/projects/project3/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3 1 undefined Config: /users/user/projects/project3/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/app2.js 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project3/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project3/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/project3/node_modules/bar/index.js', result '/users/user/projects/project3/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project3/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] ======== Resolving module 'foo' from '/users/user/projects/project3/app2.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'foo' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/foo.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/foo.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project3/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'foo' was found in cache from location '/users/user/projects'. +Info seq [hh:mm:ss:mss] ======== Module name 'foo' was not resolved. ======== +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules/package.json 2000 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/package.json 2000 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules/@types 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules/@types 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project3/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/project3/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project3/app.js SVC-1-0 "var x = require('bar');" + /users/user/projects/project3/app2.js Text-1 "var x = require('foo');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + app2.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project3/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "b03a661e323d76898c84af369d25377a0a5531270f5a2f1e243ca14104fd96c1", + "fileStats": { + "js": 3, + "jsSize": 64, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 1, + "dtsSize": 413, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project3/app.js", + "configFile": "/users/user/projects/project3/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 3, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/package.json: + {"pollingInterval":2000} +/users/user/projects/project2/bower_components: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project2/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project2/package.json: + {"pollingInterval":2000} +/users/user/projects/project3/node_modules/@types: *new* + {"pollingInterval":500} +/users/user/projects/project3/node_modules/bar/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project3/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project3/package.json: *new* + {"pollingInterval":2000} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: + {} +/users/user/projects/project2/jsconfig.json: + {} +/users/user/projects/project3/app2.js: *new* + {} +/users/user/projects/project3/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} +/users/user/projects/project2: + {} +/users/user/projects/project2/node_modules: + {} +/users/user/projects/project3: *new* + {} +/users/user/projects/project3/node_modules: *new* + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts *changed* + version: Text-1 + containingProjects: 3 *changed* + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json + /users/user/projects/project3/jsconfig.json *new* +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project1/node_modules/bar/index.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project2/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project2/node_modules/bar/index.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project3/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json *default* +/users/user/projects/project3/app2.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json +/users/user/projects/project3/node_modules/bar/index.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json + +Before running PendingInstalls callback:: count: 1 +1: #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] + +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/@types/bar :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/@types/bar :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +TI:: Installation #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] complete with success::true +//// [/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts] +export const x = 1; + + +Timeout callback:: count: 1 +2: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation *new* + +TI:: [hh:mm:ss:mss] Installed typings ["@types/bar@tsFakeMajor.Minor"] +TI:: [hh:mm:ss:mss] Installed typing files ["/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts"] +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [ + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts" + ], + "unresolvedImports": [ + "bar" + ], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [ + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts" + ], + "unresolvedImports": [ + "bar" + ], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "event::endInstallTypes", + "eventId": 1, + "projectName": "/users/user/projects/project2/jsconfig.json", + "packagesToInstall": [ + "@types/bar@tsFakeMajor.Minor" + ], + "installSuccess": true, + "typingsInstallerVersion": "FakeVersion" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "endInstallTypes", + "body": { + "eventId": 1, + "packages": [ + "@types/bar@tsFakeMajor.Minor" + ], + "success": true + } + } +After running PendingInstalls callback:: count: 0 + +Timeout callback:: count: 3 +2: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +3: /users/user/projects/project2/jsconfig.json *new* +4: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) *changed* + projectStateVersion: 2 *changed* + projectProgramVersion: 1 + dirty: true *changed* + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +Before running Timeout callback:: count: 3 +2: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +3: /users/user/projects/project2/jsconfig.json +4: *ensureProjectForOpenFiles* + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project2/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/project2/node_modules/bar/index.js', result '/users/user/projects/project2/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project2/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project2/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'foo' from '/users/user/projects/project2/app2.js' of old program, it was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/bar/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project2/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project2/node_modules/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project2/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project2/app.js SVC-1-0 "var x = require('bar');" + /home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts Text-1 "export const foo = 1;" + /users/user/projects/project2/app2.js Text-1 "var x = require('foo');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts + Imported via 'bar' from file 'app.js' + Matched by default include pattern '**/*' + app.js + Matched by default include pattern '**/*' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + Imported via 'foo' from file 'app2.js' + app2.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts", + "/users/user/projects/project2/app.js", + "/users/user/projects/project2/app2.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "projectRootPath": "/users/user/projects/project2", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project2/node_modules; all files: [] +TI:: [hh:mm:ss:mss] Found package names: [] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [], + "filesToWatch": [ + "/users/user/projects/project2/bower_components", + "/users/user/projects/project2/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project2/jsconfig.json" + } +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] No new typings were requested as a result of typings discovery +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Reusing resolution of module 'bar' from '/users/user/projects/project2/app.js' of old program, it was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'foo' from '/users/user/projects/project2/app2.js' of old program, it was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json projectStateVersion: 3 projectProgramVersion: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project2/app.js SVC-1-0 "var x = require('bar');" + /home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts Text-1 "export const foo = 1;" + /users/user/projects/project2/app2.js Text-1 "var x = require('foo');" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +After running Timeout callback:: count: 2 + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/package.json: + {"pollingInterval":2000} +/users/user/projects/project2/bower_components: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project3/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project3/package.json: + {"pollingInterval":2000} + +PolledWatches *deleted*:: +/users/user/projects/project2/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project2/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project2/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: + {} +/users/user/projects/project2/jsconfig.json: + {} +/users/user/projects/project3/app2.js: + {} +/users/user/projects/project3/jsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} +/users/user/projects/project2: + {} +/users/user/projects/project2/node_modules: + {} +/users/user/projects/project3: + {} +/users/user/projects/project3/node_modules: + {} + +Timeout callback:: count: 2 +4: *ensureProjectForOpenFiles* *deleted* +5: /users/user/projects/project2/jsconfig.json *new* +6: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) *changed* + projectStateVersion: 3 *changed* + projectProgramVersion: 3 *changed* + dirty: false *changed* + autoImportProviderHost: undefined *changed* +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 3 + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json + /users/user/projects/project3/jsconfig.json +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project1/node_modules/bar/index.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project2/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project2/node_modules/bar/index.js *changed* + version: Text-1 + containingProjects: 0 *changed* + /users/user/projects/project2/jsconfig.json *deleted* +/users/user/projects/project3/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json *default* +/users/user/projects/project3/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json +/users/user/projects/project3/node_modules/bar/index.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json + +Before running Timeout callback:: count: 2 +5: /users/user/projects/project2/jsconfig.json +6: *ensureProjectForOpenFiles* + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /users/user/projects/project1/app.js,/users/user/projects/project2/app.js,/users/user/projects/project3/app.js +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/users/user/projects/project1/app.js", + "/users/user/projects/project2/app.js", + "/users/user/projects/project3/app.js" + ] + } + } +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 diff --git a/tests/baselines/reference/tsserver/typeAquisition/disabled-typeAquisition.js b/tests/baselines/reference/tsserver/typeAquisition/disabled-typeAquisition.js new file mode 100644 index 0000000000000..cca730d6547e9 --- /dev/null +++ b/tests/baselines/reference/tsserver/typeAquisition/disabled-typeAquisition.js @@ -0,0 +1,290 @@ +Info seq [hh:mm:ss:mss] currentDirectory:: /home/src/Vscode/Projects/bin useCaseSensitiveFileNames:: false +Info seq [hh:mm:ss:mss] libs Location:: /home/src/tslibs/TS/Lib +Info seq [hh:mm:ss:mss] globalTypingsCacheLocation:: /home/src/Library/Caches/typescript +Info seq [hh:mm:ss:mss] Provided types map file "/home/src/tslibs/TS/Lib/typesMap.json" doesn't exist +Before request +//// [/users/user/projects/project1/app.js] +var x = require('bar'); + +//// [/users/user/projects/project1/node_modules/bar/index.js] +export const x = 1 + +//// [/home/src/tslibs/TS/Lib/lib.d.ts] +/// +interface Boolean {} +interface Function {} +interface CallableFunction {} +interface NewableFunction {} +interface IArguments {} +interface Number { toExponential: any; } +interface Object {} +interface RegExp {} +interface String { charAt: any; } +interface Array { length: number; [n: number]: T; } +interface ReadonlyArray {} +declare const console: { log(msg: any): void; }; + +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false + } +} + + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project1/app.js" + }, + "seq": 1, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project1/jsconfig.json, currentDirectory: /users/user/projects/project1 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project1/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1 1 undefined Config: /users/user/projects/project1/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1 1 undefined Config: /users/user/projects/project1/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project1/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/project1/node_modules/bar/index.js', result '/users/user/projects/project1/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project1/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/project1/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "a24ce251bb636300af6d4777b3f4b21687a6424baa3ae50af422af2a5b2dd7f0", + "fileStats": { + "js": 2, + "jsSize": 41, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 1, + "dtsSize": 413, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/app.js", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 1, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/users/user/projects/node_modules: *new* + {"pollingInterval":500} +/users/user/projects/node_modules/@types: *new* + {"pollingInterval":500} +/users/user/projects/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/@types: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules/bar/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/package.json: *new* + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: *new* + {} +/users/user/projects/project1/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/users/user/projects/project1: *new* + {} +/users/user/projects/project1/node_modules: *new* + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project1/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project1/node_modules/bar/index.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json + +Before running PendingInstalls callback:: count: 0 + +After running PendingInstalls callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 diff --git a/tests/baselines/reference/tsserver/typeAquisition/does-not-depend-on-extension.js b/tests/baselines/reference/tsserver/typeAquisition/does-not-depend-on-extension.js index fd5a50bb7958b..ff67c617d6e9e 100644 --- a/tests/baselines/reference/tsserver/typeAquisition/does-not-depend-on-extension.js +++ b/tests/baselines/reference/tsserver/typeAquisition/does-not-depend-on-extension.js @@ -138,13 +138,11 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -180,7 +178,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -200,7 +197,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typeAquisition/enabled-typeAquisition-multiple-projects-with-shared-resolution.js b/tests/baselines/reference/tsserver/typeAquisition/enabled-typeAquisition-multiple-projects-with-shared-resolution.js new file mode 100644 index 0000000000000..acc92e27c44b3 --- /dev/null +++ b/tests/baselines/reference/tsserver/typeAquisition/enabled-typeAquisition-multiple-projects-with-shared-resolution.js @@ -0,0 +1,1904 @@ +Info seq [hh:mm:ss:mss] currentDirectory:: /home/src/Vscode/Projects/bin useCaseSensitiveFileNames:: false +Info seq [hh:mm:ss:mss] libs Location:: /home/src/tslibs/TS/Lib +Info seq [hh:mm:ss:mss] globalTypingsCacheLocation:: /home/src/Library/Caches/typescript +Info seq [hh:mm:ss:mss] Provided types map file "/home/src/tslibs/TS/Lib/typesMap.json" doesn't exist +Before request +//// [/users/user/projects/project1/app.js] +var x = require('bar'); + +//// [/users/user/projects/node_modules/bar/index.js] +export const x = 1 + +//// [/users/user/projects/project2/app.js] +var x = require('bar'); + +//// [/users/user/projects/project2/app2.js] +var x = require('foo'); + +//// [/users/user/projects/project2/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + } +} + +//// [/users/user/projects/project3/app.js] +var x = require('bar'); + +//// [/users/user/projects/project3/app2.js] +var x = require('foo'); + +//// [/users/user/projects/project3/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false + } +} + +//// [/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts] +export const foo = 1; + +//// [/home/src/tslibs/TS/Lib/lib.d.ts] +/// +interface Boolean {} +interface Function {} +interface CallableFunction {} +interface NewableFunction {} +interface IArguments {} +interface Number { toExponential: any; } +interface Object {} +interface RegExp {} +interface String { charAt: any; } +interface Array { length: number; [n: number]: T; } +interface ReadonlyArray {} +declare const console: { log(msg: any): void; }; + +//// [/home/src/Library/Caches/typescript/package.json] +{ "private": true } + +//// [/home/src/Library/Caches/typescript/node_modules/types-registry/index.json] +{ + "entries": { + "bar": { + "latest": "1.3.0", + "ts2.0": "1.0.0", + "ts2.1": "1.0.0", + "ts2.2": "1.2.0", + "ts2.3": "1.3.0", + "ts2.4": "1.3.0", + "ts2.5": "1.3.0", + "ts2.6": "1.3.0", + "ts2.7": "1.3.0" + }, + "foo": { + "latest": "1.3.0", + "ts2.0": "1.0.0", + "ts2.1": "1.0.0", + "ts2.2": "1.2.0", + "ts2.3": "1.3.0", + "ts2.4": "1.3.0", + "ts2.5": "1.3.0", + "ts2.6": "1.3.0", + "ts2.7": "1.3.0" + } + } +} + +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + } +} + + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project1/app.js" + }, + "seq": 1, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project1/jsconfig.json, currentDirectory: /users/user/projects/project1 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project1/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1 1 undefined Config: /users/user/projects/project1/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1 1 undefined Config: /users/user/projects/project1/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project1/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project1/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/node_modules/bar/index.js', result '/users/user/projects/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project1/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: Creating typing installer + +PolledWatches:: +/users/user/projects/node_modules/@types: *new* + {"pollingInterval":500} +/users/user/projects/node_modules/bar/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/node_modules: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: *new* + {"pollingInterval":500} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: *new* + {} +/users/user/projects/project1/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/users/user/projects/node_modules: *new* + {} +/users/user/projects/project1: *new* + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 0 + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/node_modules/bar/index.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project1/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* + +TI:: [hh:mm:ss:mss] Global cache location '/home/src/Library/Caches/typescript', safe file path '/home/src/tslibs/TS/Lib/typingSafeList.json', types map path /home/src/tslibs/TS/Lib/typesMap.json +TI:: [hh:mm:ss:mss] Processing cache location '/home/src/Library/Caches/typescript' +TI:: [hh:mm:ss:mss] Trying to find '/home/src/Library/Caches/typescript/package.json'... +TI:: [hh:mm:ss:mss] Finished processing cache location '/home/src/Library/Caches/typescript' +TI:: [hh:mm:ss:mss] Npm config file: /home/src/Library/Caches/typescript/package.json +TI:: [hh:mm:ss:mss] Updating types-registry npm package... +TI:: [hh:mm:ss:mss] npm install --ignore-scripts types-registry@latest +TI:: [hh:mm:ss:mss] Updated types-registry npm package +TI:: typing installer creation complete + +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/users/user/projects/project1/app.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "unresolvedImports": [ + "bar" + ], + "projectRootPath": "/users/user/projects/project1", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: ["bar"] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [ + "bar" + ], + "filesToWatch": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json", + "files": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Installing typings ["bar"] +TI:: [hh:mm:ss:mss] Npm config file: /home/src/Library/Caches/typescript/package.json +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "event::beginInstallTypes", + "eventId": 1, + "typingsInstallerVersion": "FakeVersion", + "projectName": "/users/user/projects/project1/jsconfig.json" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "beginInstallTypes", + "body": { + "eventId": 1 + } + } +TI:: [hh:mm:ss:mss] #1 with cwd: /home/src/Library/Caches/typescript arguments: [ + "@types/bar@tsFakeMajor.Minor" +] +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "a24ce251bb636300af6d4777b3f4b21687a6424baa3ae50af422af2a5b2dd7f0", + "fileStats": { + "js": 2, + "jsSize": 41, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 1, + "dtsSize": 413, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": true, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/app.js", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 1, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} + +FsWatchesRecursive:: +/users/user/projects/node_modules: + {} +/users/user/projects/project1: + {} + +PendingInstalls callback:: count: 1 +1: #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 1 + projectProgramVersion: 1 *changed* + autoImportProviderHost: false *changed* + +Before request + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project2/app.js" + }, + "seq": 2, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project2/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project2/jsconfig.json, currentDirectory: /users/user/projects/project2 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project2/jsconfig.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project2/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project2/app.js", + "/users/user/projects/project2/app2.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project2/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2 1 undefined Config: /users/user/projects/project2/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2 1 undefined Config: /users/user/projects/project2/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project2/app2.js 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project2/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'bar' was found in cache from location '/users/user/projects'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'foo' from '/users/user/projects/project2/app2.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'foo' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/foo.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/foo.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'foo' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/foo.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/foo.jsx' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] ======== Module name 'foo' was not resolved. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project2/jsconfig.json'. Running extra resolution pass for module 'foo' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] Found 'package.json' at '/home/src/Library/Caches/typescript/package.json'. +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/foo/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules/@types 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules/@types 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project2/app.js SVC-1-0 "var x = require('bar');" + /home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts Text-1 "export const foo = 1;" + /users/user/projects/project2/app2.js Text-1 "var x = require('foo');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + Imported via 'foo' from file 'app2.js' + app2.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/users/user/projects/project2/app.js", + "/users/user/projects/project2/app2.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "unresolvedImports": [ + "bar" + ], + "projectRootPath": "/users/user/projects/project2", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: ["bar"] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [ + "bar" + ], + "filesToWatch": [ + "/users/user/projects/project2/bower_components", + "/users/user/projects/project2/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project2/jsconfig.json", + "files": [ + "/users/user/projects/project2/bower_components", + "/users/user/projects/project2/node_modules" + ] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/bower_components 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/bower_components 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Installing typings ["bar"] +TI:: [hh:mm:ss:mss] Npm config file: /home/src/Library/Caches/typescript/package.json +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "event::beginInstallTypes", + "eventId": 2, + "typingsInstallerVersion": "FakeVersion", + "projectName": "/users/user/projects/project2/jsconfig.json" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "beginInstallTypes", + "body": { + "eventId": 2 + } + } +TI:: [hh:mm:ss:mss] #2 with cwd: /home/src/Library/Caches/typescript arguments: [ + "@types/bar@tsFakeMajor.Minor" +] +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "318b0b83fbc7be458819ec932b0b673d12709d07882bd4b96f96985c09b696c4", + "fileStats": { + "js": 3, + "jsSize": 64, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 2, + "dtsSize": 434, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": true, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project2/app.js", + "configFile": "/users/user/projects/project2/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 2, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: + {"pollingInterval":500} +/users/user/projects/project1/node_modules: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project2/bower_components: *new* + {"pollingInterval":500} +/users/user/projects/project2/node_modules: *new* + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: *new* + {"pollingInterval":500} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: *new* + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: *new* + {} +/users/user/projects/project2/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: *new* + {} +/users/user/projects/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project2: *new* + {} + +PendingInstalls callback:: count: 2 +1: #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] +2: #2 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts *changed* + version: Text-1 + containingProjects: 2 *changed* + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json *new* +/users/user/projects/node_modules/bar/index.js *changed* + version: Text-1 + containingProjects: 2 *changed* + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json *new* +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project2/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json + +Before request + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project3/app.js" + }, + "seq": 3, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project3/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project3/jsconfig.json, currentDirectory: /users/user/projects/project3 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/jsconfig.json 2000 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project3/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project3/app.js", + "/users/user/projects/project3/app2.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project3/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project3/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project3/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3 1 undefined Config: /users/user/projects/project3/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3 1 undefined Config: /users/user/projects/project3/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/app2.js 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project3/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project3/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'bar' was found in cache from location '/users/user/projects'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'foo' from '/users/user/projects/project3/app2.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'foo' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project3/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'foo' was found in cache from location '/users/user/projects'. +Info seq [hh:mm:ss:mss] ======== Module name 'foo' was not resolved. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules/@types 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules/@types 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project3/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project3/app.js SVC-1-0 "var x = require('bar');" + /users/user/projects/project3/app2.js Text-1 "var x = require('foo');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + app2.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project3/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "b03a661e323d76898c84af369d25377a0a5531270f5a2f1e243ca14104fd96c1", + "fileStats": { + "js": 3, + "jsSize": 64, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 1, + "dtsSize": 413, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project3/app.js", + "configFile": "/users/user/projects/project3/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 3, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: + {"pollingInterval":500} +/users/user/projects/project1/node_modules: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project2/bower_components: + {"pollingInterval":500} +/users/user/projects/project2/node_modules: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules: *new* + {"pollingInterval":500} +/users/user/projects/project3/node_modules/@types: *new* + {"pollingInterval":500} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: + {} +/users/user/projects/project2/jsconfig.json: + {} +/users/user/projects/project3/app2.js: *new* + {} +/users/user/projects/project3/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project2: + {} +/users/user/projects/project3: *new* + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts *changed* + version: Text-1 + containingProjects: 3 *changed* + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json + /users/user/projects/project3/jsconfig.json *new* +/users/user/projects/node_modules/bar/index.js *changed* + version: Text-1 + containingProjects: 3 *changed* + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json + /users/user/projects/project3/jsconfig.json *new* +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project2/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project3/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json *default* +/users/user/projects/project3/app2.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json + +Before running PendingInstalls callback:: count: 2 +1: #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] +2: #2 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] + +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/@types/bar :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/@types/bar :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +TI:: Installation #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] complete with success::true +//// [/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts] +export const x = 1; + + +Timeout callback:: count: 1 +2: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation *new* + +TI:: [hh:mm:ss:mss] Installed typings ["@types/bar@tsFakeMajor.Minor"] +TI:: [hh:mm:ss:mss] Installed typing files ["/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts"] +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [ + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts" + ], + "unresolvedImports": [ + "bar" + ], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [ + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts" + ], + "unresolvedImports": [ + "bar" + ], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "event::endInstallTypes", + "eventId": 1, + "projectName": "/users/user/projects/project1/jsconfig.json", + "packagesToInstall": [ + "@types/bar@tsFakeMajor.Minor" + ], + "installSuccess": true, + "typingsInstallerVersion": "FakeVersion" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "endInstallTypes", + "body": { + "eventId": 1, + "packages": [ + "@types/bar@tsFakeMajor.Minor" + ], + "success": true + } + } +TI:: Installation #2 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] complete with success::true + +Timeout callback:: count: 3 +2: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +3: /users/user/projects/project1/jsconfig.json *new* +4: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 2 *changed* + projectProgramVersion: 1 + dirty: true *changed* + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +TI:: [hh:mm:ss:mss] Installed typings ["@types/bar@tsFakeMajor.Minor"] +TI:: [hh:mm:ss:mss] Installed typing files ["/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts"] +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [ + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts" + ], + "unresolvedImports": [ + "bar" + ], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [ + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts" + ], + "unresolvedImports": [ + "bar" + ], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "event::endInstallTypes", + "eventId": 2, + "projectName": "/users/user/projects/project2/jsconfig.json", + "packagesToInstall": [ + "@types/bar@tsFakeMajor.Minor" + ], + "installSuccess": true, + "typingsInstallerVersion": "FakeVersion" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "endInstallTypes", + "body": { + "eventId": 2, + "packages": [ + "@types/bar@tsFakeMajor.Minor" + ], + "success": true + } + } +After running PendingInstalls callback:: count: 0 + +Timeout callback:: count: 4 +4: *ensureProjectForOpenFiles* *deleted* +2: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +3: /users/user/projects/project1/jsconfig.json +5: /users/user/projects/project2/jsconfig.json *new* +6: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 2 + projectProgramVersion: 1 + dirty: true + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) *changed* + projectStateVersion: 2 *changed* + projectProgramVersion: 1 + dirty: true *changed* + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +Before running Timeout callback:: count: 4 +2: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +3: /users/user/projects/project1/jsconfig.json +5: /users/user/projects/project2/jsconfig.json +6: *ensureProjectForOpenFiles* + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project1/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project1/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/node_modules/bar/index.js', result '/users/user/projects/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project1/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts + Imported via 'bar' from file 'app.js' + Matched by default include pattern '**/*' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts", + "/users/user/projects/project1/app.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "projectRootPath": "/users/user/projects/project1", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [], + "filesToWatch": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json" + } +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] No new typings were requested as a result of typings discovery +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Reusing resolution of module 'bar' from '/users/user/projects/project1/app.js' of old program, it was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 3 projectProgramVersion: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project2/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'bar' was found in cache from location '/users/user/projects'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts'. ======== +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'foo' from '/users/user/projects/project2/app2.js' of old program, it was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project2/app.js SVC-1-0 "var x = require('bar');" + /home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts Text-1 "export const foo = 1;" + /users/user/projects/project2/app2.js Text-1 "var x = require('foo');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts + Imported via 'bar' from file 'app.js' + Matched by default include pattern '**/*' + app.js + Matched by default include pattern '**/*' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + Imported via 'foo' from file 'app2.js' + app2.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts", + "/users/user/projects/project2/app.js", + "/users/user/projects/project2/app2.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "projectRootPath": "/users/user/projects/project2", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [], + "filesToWatch": [ + "/users/user/projects/project2/bower_components", + "/users/user/projects/project2/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project2/jsconfig.json" + } +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] No new typings were requested as a result of typings discovery +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Reusing resolution of module 'bar' from '/users/user/projects/project2/app.js' of old program, it was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'foo' from '/users/user/projects/project2/app2.js' of old program, it was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json projectStateVersion: 3 projectProgramVersion: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project2/app.js SVC-1-0 "var x = require('bar');" + /home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts Text-1 "export const foo = 1;" + /users/user/projects/project2/app2.js Text-1 "var x = require('foo');" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +After running Timeout callback:: count: 3 + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: + {"pollingInterval":500} +/users/user/projects/project1/node_modules: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project2/bower_components: + {"pollingInterval":500} +/users/user/projects/project2/node_modules: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules: + {"pollingInterval":500} +/users/user/projects/project3/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: + {} +/users/user/projects/project2/jsconfig.json: + {} +/users/user/projects/project3/app2.js: + {} +/users/user/projects/project3/jsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project2: + {} +/users/user/projects/project3: + {} + +Timeout callback:: count: 3 +6: *ensureProjectForOpenFiles* *deleted* +7: /users/user/projects/project1/jsconfig.json *new* +9: /users/user/projects/project2/jsconfig.json *new* +10: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 3 *changed* + projectProgramVersion: 3 *changed* + dirty: false *changed* + autoImportProviderHost: undefined *changed* +/users/user/projects/project2/jsconfig.json (Configured) *changed* + projectStateVersion: 3 *changed* + projectProgramVersion: 3 *changed* + dirty: false *changed* + autoImportProviderHost: undefined *changed* +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts *new* + version: Text-1 + containingProjects: 2 + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 3 + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json + /users/user/projects/project3/jsconfig.json +/users/user/projects/node_modules/bar/index.js *changed* + version: Text-1 + containingProjects: 1 *changed* + /users/user/projects/project3/jsconfig.json + /users/user/projects/project1/jsconfig.json *deleted* + /users/user/projects/project2/jsconfig.json *deleted* +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project2/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project3/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json *default* +/users/user/projects/project3/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json + +Before running Timeout callback:: count: 3 +7: /users/user/projects/project1/jsconfig.json +9: /users/user/projects/project2/jsconfig.json +10: *ensureProjectForOpenFiles* + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /users/user/projects/project1/app.js,/users/user/projects/project2/app.js,/users/user/projects/project3/app.js +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/users/user/projects/project1/app.js", + "/users/user/projects/project2/app.js", + "/users/user/projects/project3/app.js" + ] + } + } +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 diff --git a/tests/baselines/reference/tsserver/typeAquisition/enabled-typeAquisition-multiple-projects.js b/tests/baselines/reference/tsserver/typeAquisition/enabled-typeAquisition-multiple-projects.js new file mode 100644 index 0000000000000..54af8590decc5 --- /dev/null +++ b/tests/baselines/reference/tsserver/typeAquisition/enabled-typeAquisition-multiple-projects.js @@ -0,0 +1,2055 @@ +Info seq [hh:mm:ss:mss] currentDirectory:: /home/src/Vscode/Projects/bin useCaseSensitiveFileNames:: false +Info seq [hh:mm:ss:mss] libs Location:: /home/src/tslibs/TS/Lib +Info seq [hh:mm:ss:mss] globalTypingsCacheLocation:: /home/src/Library/Caches/typescript +Info seq [hh:mm:ss:mss] Provided types map file "/home/src/tslibs/TS/Lib/typesMap.json" doesn't exist +Before request +//// [/users/user/projects/project1/app.js] +var x = require('bar'); + +//// [/users/user/projects/project1/node_modules/bar/index.js] +export const x = 1 + +//// [/users/user/projects/project2/app.js] +var x = require('bar'); + +//// [/users/user/projects/project2/app2.js] +var x = require('foo'); + +//// [/users/user/projects/project2/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + } +} + +//// [/users/user/projects/project3/app.js] +var x = require('bar'); + +//// [/users/user/projects/project3/app2.js] +var x = require('foo'); + +//// [/users/user/projects/project3/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false + } +} + +//// [/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts] +export const foo = 1; + +//// [/users/user/projects/project2/node_modules/bar/index.js] +export const x = 1 + +//// [/users/user/projects/project3/node_modules/bar/index.js] +export const x = 1 + +//// [/home/src/tslibs/TS/Lib/lib.d.ts] +/// +interface Boolean {} +interface Function {} +interface CallableFunction {} +interface NewableFunction {} +interface IArguments {} +interface Number { toExponential: any; } +interface Object {} +interface RegExp {} +interface String { charAt: any; } +interface Array { length: number; [n: number]: T; } +interface ReadonlyArray {} +declare const console: { log(msg: any): void; }; + +//// [/home/src/Library/Caches/typescript/package.json] +{ "private": true } + +//// [/home/src/Library/Caches/typescript/node_modules/types-registry/index.json] +{ + "entries": { + "bar": { + "latest": "1.3.0", + "ts2.0": "1.0.0", + "ts2.1": "1.0.0", + "ts2.2": "1.2.0", + "ts2.3": "1.3.0", + "ts2.4": "1.3.0", + "ts2.5": "1.3.0", + "ts2.6": "1.3.0", + "ts2.7": "1.3.0" + }, + "foo": { + "latest": "1.3.0", + "ts2.0": "1.0.0", + "ts2.1": "1.0.0", + "ts2.2": "1.2.0", + "ts2.3": "1.3.0", + "ts2.4": "1.3.0", + "ts2.5": "1.3.0", + "ts2.6": "1.3.0", + "ts2.7": "1.3.0" + } + } +} + +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + } +} + + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project1/app.js" + }, + "seq": 1, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project1/jsconfig.json, currentDirectory: /users/user/projects/project1 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project1/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1 1 undefined Config: /users/user/projects/project1/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1 1 undefined Config: /users/user/projects/project1/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project1/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/project1/node_modules/bar/index.js', result '/users/user/projects/project1/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project1/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project1/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/project1/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: Creating typing installer + +PolledWatches:: +/users/user/projects/node_modules: *new* + {"pollingInterval":500} +/users/user/projects/node_modules/@types: *new* + {"pollingInterval":500} +/users/user/projects/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/@types: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules/bar/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/package.json: *new* + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: *new* + {} +/users/user/projects/project1/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/users/user/projects/project1: *new* + {} +/users/user/projects/project1/node_modules: *new* + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 0 + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project1/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project1/node_modules/bar/index.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json + +TI:: [hh:mm:ss:mss] Global cache location '/home/src/Library/Caches/typescript', safe file path '/home/src/tslibs/TS/Lib/typingSafeList.json', types map path /home/src/tslibs/TS/Lib/typesMap.json +TI:: [hh:mm:ss:mss] Processing cache location '/home/src/Library/Caches/typescript' +TI:: [hh:mm:ss:mss] Trying to find '/home/src/Library/Caches/typescript/package.json'... +TI:: [hh:mm:ss:mss] Finished processing cache location '/home/src/Library/Caches/typescript' +TI:: [hh:mm:ss:mss] Npm config file: /home/src/Library/Caches/typescript/package.json +TI:: [hh:mm:ss:mss] Updating types-registry npm package... +TI:: [hh:mm:ss:mss] npm install --ignore-scripts types-registry@latest +TI:: [hh:mm:ss:mss] Updated types-registry npm package +TI:: typing installer creation complete + +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/users/user/projects/project1/app.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "unresolvedImports": [ + "bar" + ], + "projectRootPath": "/users/user/projects/project1", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project1/node_modules; all files: [] +TI:: [hh:mm:ss:mss] Found package names: [] +TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: ["bar"] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [ + "bar" + ], + "filesToWatch": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json", + "files": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Installing typings ["bar"] +TI:: [hh:mm:ss:mss] Npm config file: /home/src/Library/Caches/typescript/package.json +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "event::beginInstallTypes", + "eventId": 1, + "typingsInstallerVersion": "FakeVersion", + "projectName": "/users/user/projects/project1/jsconfig.json" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "beginInstallTypes", + "body": { + "eventId": 1 + } + } +TI:: [hh:mm:ss:mss] #1 with cwd: /home/src/Library/Caches/typescript arguments: [ + "@types/bar@tsFakeMajor.Minor" +] +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "a24ce251bb636300af6d4777b3f4b21687a6424baa3ae50af422af2a5b2dd7f0", + "fileStats": { + "js": 2, + "jsSize": 41, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 1, + "dtsSize": 413, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": true, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/app.js", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 1, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} + +FsWatchesRecursive:: +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} + +PendingInstalls callback:: count: 1 +1: #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 1 + projectProgramVersion: 1 *changed* + autoImportProviderHost: false *changed* + +Before request + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project2/app.js" + }, + "seq": 2, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project2/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project2/jsconfig.json, currentDirectory: /users/user/projects/project2 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project2/jsconfig.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project2/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project2/app.js", + "/users/user/projects/project2/app2.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project2/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2 1 undefined Config: /users/user/projects/project2/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2 1 undefined Config: /users/user/projects/project2/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project2/app2.js 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project2/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/project2/node_modules/bar/index.js', result '/users/user/projects/project2/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project2/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project2/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] ======== Resolving module 'foo' from '/users/user/projects/project2/app2.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'foo' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/foo.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/foo.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'foo' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/foo.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/foo.jsx' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] ======== Module name 'foo' was not resolved. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project2/jsconfig.json'. Running extra resolution pass for module 'foo' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] Found 'package.json' at '/home/src/Library/Caches/typescript/package.json'. +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project2/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/foo/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules/@types 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules/@types 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/project2/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project2/app.js SVC-1-0 "var x = require('bar');" + /home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts Text-1 "export const foo = 1;" + /users/user/projects/project2/app2.js Text-1 "var x = require('foo');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + Imported via 'foo' from file 'app2.js' + app2.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/users/user/projects/project2/app.js", + "/users/user/projects/project2/app2.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "unresolvedImports": [ + "bar" + ], + "projectRootPath": "/users/user/projects/project2", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project2/node_modules; all files: [] +TI:: [hh:mm:ss:mss] Found package names: [] +TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: ["bar"] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [ + "bar" + ], + "filesToWatch": [ + "/users/user/projects/project2/bower_components", + "/users/user/projects/project2/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project2/jsconfig.json", + "files": [ + "/users/user/projects/project2/bower_components", + "/users/user/projects/project2/node_modules" + ] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/bower_components 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/bower_components 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Installing typings ["bar"] +TI:: [hh:mm:ss:mss] Npm config file: /home/src/Library/Caches/typescript/package.json +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "event::beginInstallTypes", + "eventId": 2, + "typingsInstallerVersion": "FakeVersion", + "projectName": "/users/user/projects/project2/jsconfig.json" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "beginInstallTypes", + "body": { + "eventId": 2 + } + } +TI:: [hh:mm:ss:mss] #2 with cwd: /home/src/Library/Caches/typescript arguments: [ + "@types/bar@tsFakeMajor.Minor" +] +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "318b0b83fbc7be458819ec932b0b673d12709d07882bd4b96f96985c09b696c4", + "fileStats": { + "js": 3, + "jsSize": 64, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 2, + "dtsSize": 434, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": true, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project2/app.js", + "configFile": "/users/user/projects/project2/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 2, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/package.json: + {"pollingInterval":2000} +/users/user/projects/project2/bower_components: *new* + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: *new* + {"pollingInterval":500} +/users/user/projects/project2/node_modules/bar/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project2/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project2/package.json: *new* + {"pollingInterval":2000} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: *new* + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: *new* + {} +/users/user/projects/project2/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: *new* + {} +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} +/users/user/projects/project2: *new* + {} +/users/user/projects/project2/node_modules: *new* + {} + +PendingInstalls callback:: count: 2 +1: #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] +2: #2 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts *changed* + version: Text-1 + containingProjects: 2 *changed* + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json *new* +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project1/node_modules/bar/index.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project2/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project2/node_modules/bar/index.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json + +Before request + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project3/app.js" + }, + "seq": 3, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project3/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project3/jsconfig.json, currentDirectory: /users/user/projects/project3 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/jsconfig.json 2000 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project3/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project3/app.js", + "/users/user/projects/project3/app2.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project3/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project3/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project3/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3 1 undefined Config: /users/user/projects/project3/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3 1 undefined Config: /users/user/projects/project3/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/app2.js 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project3/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project3/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/project3/node_modules/bar/index.js', result '/users/user/projects/project3/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project3/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] ======== Resolving module 'foo' from '/users/user/projects/project3/app2.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'foo' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/foo.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/foo.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project3/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'foo' was found in cache from location '/users/user/projects'. +Info seq [hh:mm:ss:mss] ======== Module name 'foo' was not resolved. ======== +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules/package.json 2000 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/package.json 2000 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules/@types 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules/@types 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project3/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/project3/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project3/app.js SVC-1-0 "var x = require('bar');" + /users/user/projects/project3/app2.js Text-1 "var x = require('foo');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + app2.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project3/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "b03a661e323d76898c84af369d25377a0a5531270f5a2f1e243ca14104fd96c1", + "fileStats": { + "js": 3, + "jsSize": 64, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 1, + "dtsSize": 413, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project3/app.js", + "configFile": "/users/user/projects/project3/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 3, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/package.json: + {"pollingInterval":2000} +/users/user/projects/project2/bower_components: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project2/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project2/package.json: + {"pollingInterval":2000} +/users/user/projects/project3/node_modules/@types: *new* + {"pollingInterval":500} +/users/user/projects/project3/node_modules/bar/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project3/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project3/package.json: *new* + {"pollingInterval":2000} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: + {} +/users/user/projects/project2/jsconfig.json: + {} +/users/user/projects/project3/app2.js: *new* + {} +/users/user/projects/project3/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} +/users/user/projects/project2: + {} +/users/user/projects/project2/node_modules: + {} +/users/user/projects/project3: *new* + {} +/users/user/projects/project3/node_modules: *new* + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts *changed* + version: Text-1 + containingProjects: 3 *changed* + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json + /users/user/projects/project3/jsconfig.json *new* +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project1/node_modules/bar/index.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project2/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project2/node_modules/bar/index.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project3/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json *default* +/users/user/projects/project3/app2.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json +/users/user/projects/project3/node_modules/bar/index.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json + +Before running PendingInstalls callback:: count: 2 +1: #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] +2: #2 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] + +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/@types/bar :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/@types/bar :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +TI:: Installation #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] complete with success::true +//// [/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts] +export const x = 1; + + +Timeout callback:: count: 1 +2: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation *new* + +TI:: [hh:mm:ss:mss] Installed typings ["@types/bar@tsFakeMajor.Minor"] +TI:: [hh:mm:ss:mss] Installed typing files ["/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts"] +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [ + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts" + ], + "unresolvedImports": [ + "bar" + ], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [ + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts" + ], + "unresolvedImports": [ + "bar" + ], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "event::endInstallTypes", + "eventId": 1, + "projectName": "/users/user/projects/project1/jsconfig.json", + "packagesToInstall": [ + "@types/bar@tsFakeMajor.Minor" + ], + "installSuccess": true, + "typingsInstallerVersion": "FakeVersion" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "endInstallTypes", + "body": { + "eventId": 1, + "packages": [ + "@types/bar@tsFakeMajor.Minor" + ], + "success": true + } + } +TI:: Installation #2 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] complete with success::true + +Timeout callback:: count: 3 +2: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +3: /users/user/projects/project1/jsconfig.json *new* +4: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 2 *changed* + projectProgramVersion: 1 + dirty: true *changed* + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +TI:: [hh:mm:ss:mss] Installed typings ["@types/bar@tsFakeMajor.Minor"] +TI:: [hh:mm:ss:mss] Installed typing files ["/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts"] +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [ + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts" + ], + "unresolvedImports": [ + "bar" + ], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [ + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts" + ], + "unresolvedImports": [ + "bar" + ], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "event::endInstallTypes", + "eventId": 2, + "projectName": "/users/user/projects/project2/jsconfig.json", + "packagesToInstall": [ + "@types/bar@tsFakeMajor.Minor" + ], + "installSuccess": true, + "typingsInstallerVersion": "FakeVersion" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "endInstallTypes", + "body": { + "eventId": 2, + "packages": [ + "@types/bar@tsFakeMajor.Minor" + ], + "success": true + } + } +After running PendingInstalls callback:: count: 0 + +Timeout callback:: count: 4 +4: *ensureProjectForOpenFiles* *deleted* +2: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +3: /users/user/projects/project1/jsconfig.json +5: /users/user/projects/project2/jsconfig.json *new* +6: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 2 + projectProgramVersion: 1 + dirty: true + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) *changed* + projectStateVersion: 2 *changed* + projectProgramVersion: 1 + dirty: true *changed* + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +Before running Timeout callback:: count: 4 +2: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +3: /users/user/projects/project1/jsconfig.json +5: /users/user/projects/project2/jsconfig.json +6: *ensureProjectForOpenFiles* + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project1/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/project1/node_modules/bar/index.js', result '/users/user/projects/project1/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project1/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project1/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project1/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts + Imported via 'bar' from file 'app.js' + Matched by default include pattern '**/*' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts", + "/users/user/projects/project1/app.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "projectRootPath": "/users/user/projects/project1", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project1/node_modules; all files: [] +TI:: [hh:mm:ss:mss] Found package names: [] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [], + "filesToWatch": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json" + } +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] No new typings were requested as a result of typings discovery +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Reusing resolution of module 'bar' from '/users/user/projects/project1/app.js' of old program, it was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 3 projectProgramVersion: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project2/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/project2/node_modules/bar/index.js', result '/users/user/projects/project2/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project2/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project2/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'foo' from '/users/user/projects/project2/app2.js' of old program, it was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project2/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project2/node_modules/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project2/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project2/app.js SVC-1-0 "var x = require('bar');" + /home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts Text-1 "export const foo = 1;" + /users/user/projects/project2/app2.js Text-1 "var x = require('foo');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts + Imported via 'bar' from file 'app.js' + Matched by default include pattern '**/*' + app.js + Matched by default include pattern '**/*' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + Imported via 'foo' from file 'app2.js' + app2.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts", + "/users/user/projects/project2/app.js", + "/users/user/projects/project2/app2.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "projectRootPath": "/users/user/projects/project2", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project2/node_modules; all files: [] +TI:: [hh:mm:ss:mss] Found package names: [] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [], + "filesToWatch": [ + "/users/user/projects/project2/bower_components", + "/users/user/projects/project2/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project2/jsconfig.json" + } +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] No new typings were requested as a result of typings discovery +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Reusing resolution of module 'bar' from '/users/user/projects/project2/app.js' of old program, it was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'foo' from '/users/user/projects/project2/app2.js' of old program, it was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json projectStateVersion: 3 projectProgramVersion: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project2/app.js SVC-1-0 "var x = require('bar');" + /home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts Text-1 "export const foo = 1;" + /users/user/projects/project2/app2.js Text-1 "var x = require('foo');" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +After running Timeout callback:: count: 3 + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project2/bower_components: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project3/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project3/package.json: + {"pollingInterval":2000} + +PolledWatches *deleted*:: +/users/user/projects/project1/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/package.json: + {"pollingInterval":2000} +/users/user/projects/project2/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project2/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project2/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: + {} +/users/user/projects/project2/jsconfig.json: + {} +/users/user/projects/project3/app2.js: + {} +/users/user/projects/project3/jsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} +/users/user/projects/project2: + {} +/users/user/projects/project2/node_modules: + {} +/users/user/projects/project3: + {} +/users/user/projects/project3/node_modules: + {} + +Timeout callback:: count: 3 +6: *ensureProjectForOpenFiles* *deleted* +7: /users/user/projects/project1/jsconfig.json *new* +9: /users/user/projects/project2/jsconfig.json *new* +10: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 3 *changed* + projectProgramVersion: 3 *changed* + dirty: false *changed* + autoImportProviderHost: undefined *changed* +/users/user/projects/project2/jsconfig.json (Configured) *changed* + projectStateVersion: 3 *changed* + projectProgramVersion: 3 *changed* + dirty: false *changed* + autoImportProviderHost: undefined *changed* +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts *new* + version: Text-1 + containingProjects: 2 + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 3 + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json + /users/user/projects/project3/jsconfig.json +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project1/node_modules/bar/index.js *changed* + version: Text-1 + containingProjects: 0 *changed* + /users/user/projects/project1/jsconfig.json *deleted* +/users/user/projects/project2/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project2/node_modules/bar/index.js *changed* + version: Text-1 + containingProjects: 0 *changed* + /users/user/projects/project2/jsconfig.json *deleted* +/users/user/projects/project3/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json *default* +/users/user/projects/project3/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json +/users/user/projects/project3/node_modules/bar/index.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json + +Before running Timeout callback:: count: 3 +7: /users/user/projects/project1/jsconfig.json +9: /users/user/projects/project2/jsconfig.json +10: *ensureProjectForOpenFiles* + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /users/user/projects/project1/app.js,/users/user/projects/project2/app.js,/users/user/projects/project3/app.js +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/users/user/projects/project1/app.js", + "/users/user/projects/project2/app.js", + "/users/user/projects/project3/app.js" + ] + } + } +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 diff --git a/tests/baselines/reference/tsserver/typeAquisition/enabled-typeAquisition.js b/tests/baselines/reference/tsserver/typeAquisition/enabled-typeAquisition.js new file mode 100644 index 0000000000000..14d3416d2b039 --- /dev/null +++ b/tests/baselines/reference/tsserver/typeAquisition/enabled-typeAquisition.js @@ -0,0 +1,821 @@ +Info seq [hh:mm:ss:mss] currentDirectory:: /home/src/Vscode/Projects/bin useCaseSensitiveFileNames:: false +Info seq [hh:mm:ss:mss] libs Location:: /home/src/tslibs/TS/Lib +Info seq [hh:mm:ss:mss] globalTypingsCacheLocation:: /home/src/Library/Caches/typescript +Info seq [hh:mm:ss:mss] Provided types map file "/home/src/tslibs/TS/Lib/typesMap.json" doesn't exist +Before request +//// [/users/user/projects/project1/app.js] +var x = require('bar'); + +//// [/users/user/projects/project1/node_modules/bar/index.js] +export const x = 1 + +//// [/home/src/tslibs/TS/Lib/lib.d.ts] +/// +interface Boolean {} +interface Function {} +interface CallableFunction {} +interface NewableFunction {} +interface IArguments {} +interface Number { toExponential: any; } +interface Object {} +interface RegExp {} +interface String { charAt: any; } +interface Array { length: number; [n: number]: T; } +interface ReadonlyArray {} +declare const console: { log(msg: any): void; }; + +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + } +} + + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project1/app.js" + }, + "seq": 1, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project1/jsconfig.json, currentDirectory: /users/user/projects/project1 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project1/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1 1 undefined Config: /users/user/projects/project1/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1 1 undefined Config: /users/user/projects/project1/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project1/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/project1/node_modules/bar/index.js', result '/users/user/projects/project1/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project1/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project1/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] Directory '/home/src/Library/Caches/typescript/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/project1/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: Creating typing installer + +PolledWatches:: +/users/user/projects/node_modules: *new* + {"pollingInterval":500} +/users/user/projects/node_modules/@types: *new* + {"pollingInterval":500} +/users/user/projects/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/@types: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules/bar/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/package.json: *new* + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: *new* + {} +/users/user/projects/project1/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/users/user/projects/project1: *new* + {} +/users/user/projects/project1/node_modules: *new* + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 0 + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project1/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project1/node_modules/bar/index.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json + +TI:: [hh:mm:ss:mss] Global cache location '/home/src/Library/Caches/typescript', safe file path '/home/src/tslibs/TS/Lib/typingSafeList.json', types map path /home/src/tslibs/TS/Lib/typesMap.json +TI:: [hh:mm:ss:mss] Processing cache location '/home/src/Library/Caches/typescript' +TI:: [hh:mm:ss:mss] Trying to find '/home/src/Library/Caches/typescript/package.json'... +TI:: [hh:mm:ss:mss] Finished processing cache location '/home/src/Library/Caches/typescript' +TI:: [hh:mm:ss:mss] Npm config file: /home/src/Library/Caches/typescript/package.json +TI:: [hh:mm:ss:mss] Npm config file: '/home/src/Library/Caches/typescript/package.json' is missing, creating new one... +TI:: [hh:mm:ss:mss] Updating types-registry npm package... +TI:: [hh:mm:ss:mss] npm install --ignore-scripts types-registry@latest +TI:: [hh:mm:ss:mss] Updated types-registry npm package +TI:: typing installer creation complete +//// [/home/src/Library/Caches/typescript/package.json] +{ "private": true } + +//// [/home/src/Library/Caches/typescript/node_modules/types-registry/index.json] +{ + "entries": { + "bar": { + "latest": "1.3.0", + "ts2.0": "1.0.0", + "ts2.1": "1.0.0", + "ts2.2": "1.2.0", + "ts2.3": "1.3.0", + "ts2.4": "1.3.0", + "ts2.5": "1.3.0", + "ts2.6": "1.3.0", + "ts2.7": "1.3.0" + } + } +} + + +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/users/user/projects/project1/app.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "unresolvedImports": [ + "bar" + ], + "projectRootPath": "/users/user/projects/project1", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project1/node_modules; all files: [] +TI:: [hh:mm:ss:mss] Found package names: [] +TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: ["bar"] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [ + "bar" + ], + "filesToWatch": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json", + "files": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Installing typings ["bar"] +TI:: [hh:mm:ss:mss] Npm config file: /home/src/Library/Caches/typescript/package.json +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "event::beginInstallTypes", + "eventId": 1, + "typingsInstallerVersion": "FakeVersion", + "projectName": "/users/user/projects/project1/jsconfig.json" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "beginInstallTypes", + "body": { + "eventId": 1 + } + } +TI:: [hh:mm:ss:mss] #1 with cwd: /home/src/Library/Caches/typescript arguments: [ + "@types/bar@tsFakeMajor.Minor" +] +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "a24ce251bb636300af6d4777b3f4b21687a6424baa3ae50af422af2a5b2dd7f0", + "fileStats": { + "js": 2, + "jsSize": 41, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 1, + "dtsSize": 413, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": true, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/app.js", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 1, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} + +FsWatchesRecursive:: +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} + +PendingInstalls callback:: count: 1 +1: #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 1 + projectProgramVersion: 1 *changed* + autoImportProviderHost: false *changed* + +Before running PendingInstalls callback:: count: 1 +1: #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] + +TI:: Installation #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] complete with success::true +//// [/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts] +export const x = 1; + + +TI:: [hh:mm:ss:mss] Installed typings ["@types/bar@tsFakeMajor.Minor"] +TI:: [hh:mm:ss:mss] Installed typing files ["/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts"] +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [ + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts" + ], + "unresolvedImports": [ + "bar" + ], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [ + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts" + ], + "unresolvedImports": [ + "bar" + ], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "event::endInstallTypes", + "eventId": 1, + "projectName": "/users/user/projects/project1/jsconfig.json", + "packagesToInstall": [ + "@types/bar@tsFakeMajor.Minor" + ], + "installSuccess": true, + "typingsInstallerVersion": "FakeVersion" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "endInstallTypes", + "body": { + "eventId": 1, + "packages": [ + "@types/bar@tsFakeMajor.Minor" + ], + "success": true + } + } +After running PendingInstalls callback:: count: 0 + +Timeout callback:: count: 2 +1: /users/user/projects/project1/jsconfig.json *new* +2: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 2 *changed* + projectProgramVersion: 1 + dirty: true *changed* + autoImportProviderHost: false + +Before running Timeout callback:: count: 2 +1: /users/user/projects/project1/jsconfig.json +2: *ensureProjectForOpenFiles* + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project1/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/project1/node_modules/bar/index.js', result '/users/user/projects/project1/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project1/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project1/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] Found 'package.json' at '/home/src/Library/Caches/typescript/package.json'. +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project1/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts + Imported via 'bar' from file 'app.js' + Matched by default include pattern '**/*' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts", + "/users/user/projects/project1/app.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "projectRootPath": "/users/user/projects/project1", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project1/node_modules; all files: [] +TI:: [hh:mm:ss:mss] Found package names: [] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [], + "filesToWatch": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json" + } +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] No new typings were requested as a result of typings discovery +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Reusing resolution of module 'bar' from '/users/user/projects/project1/app.js' of old program, it was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 3 projectProgramVersion: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +After running Timeout callback:: count: 2 + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/bower_components: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} + +PolledWatches *deleted*:: +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: *new* + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: *new* + {} +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} + +Timeout callback:: count: 2 +2: *ensureProjectForOpenFiles* *deleted* +3: /users/user/projects/project1/jsconfig.json *new* +4: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 3 *changed* + projectProgramVersion: 3 *changed* + dirty: false *changed* + autoImportProviderHost: undefined *changed* + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project1/node_modules/bar/index.js *changed* + version: Text-1 + containingProjects: 0 *changed* + /users/user/projects/project1/jsconfig.json *deleted* + +Before running Timeout callback:: count: 2 +3: /users/user/projects/project1/jsconfig.json +4: *ensureProjectForOpenFiles* + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /users/user/projects/project1/app.js +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/users/user/projects/project1/app.js" + ] + } + } +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 diff --git a/tests/baselines/reference/tsserver/typeAquisition/midway-changes-to-typeAquisition-when-typing-installer-installs-typing-multiple-projects-with-shared-resolution.js b/tests/baselines/reference/tsserver/typeAquisition/midway-changes-to-typeAquisition-when-typing-installer-installs-typing-multiple-projects-with-shared-resolution.js new file mode 100644 index 0000000000000..620b3dfda5cd5 --- /dev/null +++ b/tests/baselines/reference/tsserver/typeAquisition/midway-changes-to-typeAquisition-when-typing-installer-installs-typing-multiple-projects-with-shared-resolution.js @@ -0,0 +1,2279 @@ +Info seq [hh:mm:ss:mss] currentDirectory:: /home/src/Vscode/Projects/bin useCaseSensitiveFileNames:: false +Info seq [hh:mm:ss:mss] libs Location:: /home/src/tslibs/TS/Lib +Info seq [hh:mm:ss:mss] globalTypingsCacheLocation:: /home/src/Library/Caches/typescript +Info seq [hh:mm:ss:mss] Provided types map file "/home/src/tslibs/TS/Lib/typesMap.json" doesn't exist +Before request +//// [/users/user/projects/project1/app.js] +var x = require('bar'); + +//// [/users/user/projects/node_modules/bar/index.js] +export const x = 1 + +//// [/users/user/projects/project2/app.js] +var x = require('bar'); + +//// [/users/user/projects/project2/app2.js] +var x = require('foo'); + +//// [/users/user/projects/project2/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + } +} + +//// [/users/user/projects/project3/app.js] +var x = require('bar'); + +//// [/users/user/projects/project3/app2.js] +var x = require('foo'); + +//// [/users/user/projects/project3/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false + } +} + +//// [/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts] +export const foo = 1; + +//// [/home/src/tslibs/TS/Lib/lib.d.ts] +/// +interface Boolean {} +interface Function {} +interface CallableFunction {} +interface NewableFunction {} +interface IArguments {} +interface Number { toExponential: any; } +interface Object {} +interface RegExp {} +interface String { charAt: any; } +interface Array { length: number; [n: number]: T; } +interface ReadonlyArray {} +declare const console: { log(msg: any): void; }; + +//// [/home/src/Library/Caches/typescript/package.json] +{ "private": true } + +//// [/home/src/Library/Caches/typescript/node_modules/types-registry/index.json] +{ + "entries": { + "bar": { + "latest": "1.3.0", + "ts2.0": "1.0.0", + "ts2.1": "1.0.0", + "ts2.2": "1.2.0", + "ts2.3": "1.3.0", + "ts2.4": "1.3.0", + "ts2.5": "1.3.0", + "ts2.6": "1.3.0", + "ts2.7": "1.3.0" + }, + "foo": { + "latest": "1.3.0", + "ts2.0": "1.0.0", + "ts2.1": "1.0.0", + "ts2.2": "1.2.0", + "ts2.3": "1.3.0", + "ts2.4": "1.3.0", + "ts2.5": "1.3.0", + "ts2.6": "1.3.0", + "ts2.7": "1.3.0" + } + } +} + +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + } +} + + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project1/app.js" + }, + "seq": 1, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project1/jsconfig.json, currentDirectory: /users/user/projects/project1 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project1/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1 1 undefined Config: /users/user/projects/project1/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1 1 undefined Config: /users/user/projects/project1/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project1/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project1/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/node_modules/bar/index.js', result '/users/user/projects/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project1/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: Creating typing installer + +PolledWatches:: +/users/user/projects/node_modules/@types: *new* + {"pollingInterval":500} +/users/user/projects/node_modules/bar/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/node_modules: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: *new* + {"pollingInterval":500} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: *new* + {} +/users/user/projects/project1/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/users/user/projects/node_modules: *new* + {} +/users/user/projects/project1: *new* + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 0 + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/node_modules/bar/index.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project1/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* + +TI:: [hh:mm:ss:mss] Global cache location '/home/src/Library/Caches/typescript', safe file path '/home/src/tslibs/TS/Lib/typingSafeList.json', types map path /home/src/tslibs/TS/Lib/typesMap.json +TI:: [hh:mm:ss:mss] Processing cache location '/home/src/Library/Caches/typescript' +TI:: [hh:mm:ss:mss] Trying to find '/home/src/Library/Caches/typescript/package.json'... +TI:: [hh:mm:ss:mss] Finished processing cache location '/home/src/Library/Caches/typescript' +TI:: [hh:mm:ss:mss] Npm config file: /home/src/Library/Caches/typescript/package.json +TI:: [hh:mm:ss:mss] Updating types-registry npm package... +TI:: [hh:mm:ss:mss] npm install --ignore-scripts types-registry@latest +TI:: [hh:mm:ss:mss] Updated types-registry npm package +TI:: typing installer creation complete + +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/users/user/projects/project1/app.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "unresolvedImports": [ + "bar" + ], + "projectRootPath": "/users/user/projects/project1", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: ["bar"] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [ + "bar" + ], + "filesToWatch": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json", + "files": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Installing typings ["bar"] +TI:: [hh:mm:ss:mss] Npm config file: /home/src/Library/Caches/typescript/package.json +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "event::beginInstallTypes", + "eventId": 1, + "typingsInstallerVersion": "FakeVersion", + "projectName": "/users/user/projects/project1/jsconfig.json" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "beginInstallTypes", + "body": { + "eventId": 1 + } + } +TI:: [hh:mm:ss:mss] #1 with cwd: /home/src/Library/Caches/typescript arguments: [ + "@types/bar@tsFakeMajor.Minor" +] +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "a24ce251bb636300af6d4777b3f4b21687a6424baa3ae50af422af2a5b2dd7f0", + "fileStats": { + "js": 2, + "jsSize": 41, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 1, + "dtsSize": 413, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": true, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/app.js", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 1, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} + +FsWatchesRecursive:: +/users/user/projects/node_modules: + {} +/users/user/projects/project1: + {} + +PendingInstalls callback:: count: 1 +1: #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 1 + projectProgramVersion: 1 *changed* + autoImportProviderHost: false *changed* + +Before request + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project2/app.js" + }, + "seq": 2, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project2/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project2/jsconfig.json, currentDirectory: /users/user/projects/project2 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project2/jsconfig.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project2/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project2/app.js", + "/users/user/projects/project2/app2.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project2/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2 1 undefined Config: /users/user/projects/project2/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2 1 undefined Config: /users/user/projects/project2/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project2/app2.js 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project2/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'bar' was found in cache from location '/users/user/projects'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'foo' from '/users/user/projects/project2/app2.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'foo' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/foo.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/foo.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'foo' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/foo.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/foo.jsx' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] ======== Module name 'foo' was not resolved. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project2/jsconfig.json'. Running extra resolution pass for module 'foo' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] Found 'package.json' at '/home/src/Library/Caches/typescript/package.json'. +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/foo/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules/@types 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules/@types 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project2/app.js SVC-1-0 "var x = require('bar');" + /home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts Text-1 "export const foo = 1;" + /users/user/projects/project2/app2.js Text-1 "var x = require('foo');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + Imported via 'foo' from file 'app2.js' + app2.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/users/user/projects/project2/app.js", + "/users/user/projects/project2/app2.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "unresolvedImports": [ + "bar" + ], + "projectRootPath": "/users/user/projects/project2", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: ["bar"] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [ + "bar" + ], + "filesToWatch": [ + "/users/user/projects/project2/bower_components", + "/users/user/projects/project2/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project2/jsconfig.json", + "files": [ + "/users/user/projects/project2/bower_components", + "/users/user/projects/project2/node_modules" + ] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/bower_components 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/bower_components 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Installing typings ["bar"] +TI:: [hh:mm:ss:mss] Npm config file: /home/src/Library/Caches/typescript/package.json +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "event::beginInstallTypes", + "eventId": 2, + "typingsInstallerVersion": "FakeVersion", + "projectName": "/users/user/projects/project2/jsconfig.json" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "beginInstallTypes", + "body": { + "eventId": 2 + } + } +TI:: [hh:mm:ss:mss] #2 with cwd: /home/src/Library/Caches/typescript arguments: [ + "@types/bar@tsFakeMajor.Minor" +] +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "318b0b83fbc7be458819ec932b0b673d12709d07882bd4b96f96985c09b696c4", + "fileStats": { + "js": 3, + "jsSize": 64, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 2, + "dtsSize": 434, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": true, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project2/app.js", + "configFile": "/users/user/projects/project2/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 2, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: + {"pollingInterval":500} +/users/user/projects/project1/node_modules: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project2/bower_components: *new* + {"pollingInterval":500} +/users/user/projects/project2/node_modules: *new* + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: *new* + {"pollingInterval":500} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: *new* + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: *new* + {} +/users/user/projects/project2/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: *new* + {} +/users/user/projects/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project2: *new* + {} + +PendingInstalls callback:: count: 2 +1: #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] +2: #2 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts *changed* + version: Text-1 + containingProjects: 2 *changed* + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json *new* +/users/user/projects/node_modules/bar/index.js *changed* + version: Text-1 + containingProjects: 2 *changed* + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json *new* +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project2/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json + +Before request + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project3/app.js" + }, + "seq": 3, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project3/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project3/jsconfig.json, currentDirectory: /users/user/projects/project3 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/jsconfig.json 2000 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project3/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project3/app.js", + "/users/user/projects/project3/app2.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project3/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project3/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project3/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3 1 undefined Config: /users/user/projects/project3/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3 1 undefined Config: /users/user/projects/project3/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/app2.js 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project3/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project3/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'bar' was found in cache from location '/users/user/projects'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'foo' from '/users/user/projects/project3/app2.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'foo' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project3/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'foo' was found in cache from location '/users/user/projects'. +Info seq [hh:mm:ss:mss] ======== Module name 'foo' was not resolved. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules/@types 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules/@types 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project3/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project3/app.js SVC-1-0 "var x = require('bar');" + /users/user/projects/project3/app2.js Text-1 "var x = require('foo');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + app2.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project3/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "b03a661e323d76898c84af369d25377a0a5531270f5a2f1e243ca14104fd96c1", + "fileStats": { + "js": 3, + "jsSize": 64, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 1, + "dtsSize": 413, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project3/app.js", + "configFile": "/users/user/projects/project3/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 3, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: + {"pollingInterval":500} +/users/user/projects/project1/node_modules: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project2/bower_components: + {"pollingInterval":500} +/users/user/projects/project2/node_modules: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules: *new* + {"pollingInterval":500} +/users/user/projects/project3/node_modules/@types: *new* + {"pollingInterval":500} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: + {} +/users/user/projects/project2/jsconfig.json: + {} +/users/user/projects/project3/app2.js: *new* + {} +/users/user/projects/project3/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project2: + {} +/users/user/projects/project3: *new* + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts *changed* + version: Text-1 + containingProjects: 3 *changed* + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json + /users/user/projects/project3/jsconfig.json *new* +/users/user/projects/node_modules/bar/index.js *changed* + version: Text-1 + containingProjects: 3 *changed* + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json + /users/user/projects/project3/jsconfig.json *new* +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project2/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project3/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json *default* +/users/user/projects/project3/app2.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json + +Before running PendingInstalls callback:: count: 2 +1: #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] +2: #2 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] + +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/@types/bar :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/@types/bar :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +TI:: Installation #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] complete with success::true +//// [/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts] +export const x = 1; + + +Timeout callback:: count: 1 +2: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation *new* + +TI:: [hh:mm:ss:mss] Installed typings ["@types/bar@tsFakeMajor.Minor"] +TI:: [hh:mm:ss:mss] Installed typing files ["/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts"] +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [ + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts" + ], + "unresolvedImports": [ + "bar" + ], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [ + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts" + ], + "unresolvedImports": [ + "bar" + ], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "event::endInstallTypes", + "eventId": 1, + "projectName": "/users/user/projects/project1/jsconfig.json", + "packagesToInstall": [ + "@types/bar@tsFakeMajor.Minor" + ], + "installSuccess": true, + "typingsInstallerVersion": "FakeVersion" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "endInstallTypes", + "body": { + "eventId": 1, + "packages": [ + "@types/bar@tsFakeMajor.Minor" + ], + "success": true + } + } +TI:: Installation #2 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] complete with success::true + +Timeout callback:: count: 3 +2: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +3: /users/user/projects/project1/jsconfig.json *new* +4: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 2 *changed* + projectProgramVersion: 1 + dirty: true *changed* + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +TI:: [hh:mm:ss:mss] Installed typings ["@types/bar@tsFakeMajor.Minor"] +TI:: [hh:mm:ss:mss] Installed typing files ["/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts"] +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [ + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts" + ], + "unresolvedImports": [ + "bar" + ], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [ + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts" + ], + "unresolvedImports": [ + "bar" + ], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "event::endInstallTypes", + "eventId": 2, + "projectName": "/users/user/projects/project2/jsconfig.json", + "packagesToInstall": [ + "@types/bar@tsFakeMajor.Minor" + ], + "installSuccess": true, + "typingsInstallerVersion": "FakeVersion" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "endInstallTypes", + "body": { + "eventId": 2, + "packages": [ + "@types/bar@tsFakeMajor.Minor" + ], + "success": true + } + } +After running PendingInstalls callback:: count: 0 + +Timeout callback:: count: 4 +4: *ensureProjectForOpenFiles* *deleted* +2: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +3: /users/user/projects/project1/jsconfig.json +5: /users/user/projects/project2/jsconfig.json *new* +6: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 2 + projectProgramVersion: 1 + dirty: true + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) *changed* + projectStateVersion: 2 *changed* + projectProgramVersion: 1 + dirty: true *changed* + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.json, Cancelled earlier one +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Before running Timeout callback:: count: 4 +2: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +5: /users/user/projects/project2/jsconfig.json +7: /users/user/projects/project1/jsconfig.json +8: *ensureProjectForOpenFiles* +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false + } +} + + +Timeout callback:: count: 4 +3: /users/user/projects/project1/jsconfig.json *deleted* +6: *ensureProjectForOpenFiles* *deleted* +2: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +5: /users/user/projects/project2/jsconfig.json +7: /users/user/projects/project1/jsconfig.json *new* +8: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 2 + projectProgramVersion: 1 + dirty: true + autoImportProviderHost: undefined *changed* +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 2 + projectProgramVersion: 1 + dirty: true + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project2/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/node_modules/bar/index.js', result '/users/user/projects/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project2/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'foo' from '/users/user/projects/project2/app2.js' of old program, it was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/bar/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project2/app.js SVC-1-0 "var x = require('bar');" + /home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts Text-1 "export const foo = 1;" + /users/user/projects/project2/app2.js Text-1 "var x = require('foo');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts + Imported via 'bar' from file 'app.js' + Matched by default include pattern '**/*' + app.js + Matched by default include pattern '**/*' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + Imported via 'foo' from file 'app2.js' + app2.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts", + "/users/user/projects/project2/app.js", + "/users/user/projects/project2/app2.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "projectRootPath": "/users/user/projects/project2", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [], + "filesToWatch": [ + "/users/user/projects/project2/bower_components", + "/users/user/projects/project2/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project2/jsconfig.json" + } +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] No new typings were requested as a result of typings discovery +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Reusing resolution of module 'bar' from '/users/user/projects/project2/app.js' of old program, it was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'foo' from '/users/user/projects/project2/app2.js' of old program, it was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json projectStateVersion: 3 projectProgramVersion: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project2/app.js SVC-1-0 "var x = require('bar');" + /home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts Text-1 "export const foo = 1;" + /users/user/projects/project2/app2.js Text-1 "var x = require('foo');" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Change in config file detected" + } + } +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +TI:: [hh:mm:ss:mss] Closing file watchers for project '/users/user/projects/project1/jsconfig.json' +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json", + "files": [] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Closing file watchers for project '/users/user/projects/project1/jsconfig.json' - done. +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Resolution for module 'bar' was found in cache from location '/users/user/projects/project1'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/jsconfig.json", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +After running Timeout callback:: count: 2 + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project2/bower_components: + {"pollingInterval":500} +/users/user/projects/project2/node_modules: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules: + {"pollingInterval":500} +/users/user/projects/project3/node_modules/@types: + {"pollingInterval":500} + +PolledWatches *deleted*:: +/users/user/projects/project1/bower_components: + {"pollingInterval":500} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: + {} +/users/user/projects/project2/jsconfig.json: + {} +/users/user/projects/project3/app2.js: + {} +/users/user/projects/project3/jsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project2: + {} +/users/user/projects/project3: + {} + +Timeout callback:: count: 2 +8: *ensureProjectForOpenFiles* *deleted* +9: /users/user/projects/project2/jsconfig.json *new* +10: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 2 + projectProgramVersion: 2 *changed* + dirty: false *changed* +/users/user/projects/project2/jsconfig.json (Configured) *changed* + projectStateVersion: 3 *changed* + projectProgramVersion: 3 *changed* + dirty: false *changed* + autoImportProviderHost: undefined *changed* +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 3 + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json + /users/user/projects/project3/jsconfig.json +/users/user/projects/node_modules/bar/index.js *changed* + version: Text-1 + containingProjects: 2 *changed* + /users/user/projects/project1/jsconfig.json + /users/user/projects/project3/jsconfig.json + /users/user/projects/project2/jsconfig.json *deleted* +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project2/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project3/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json *default* +/users/user/projects/project3/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json + +Before running Timeout callback:: count: 2 +9: /users/user/projects/project2/jsconfig.json +10: *ensureProjectForOpenFiles* + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /users/user/projects/project1/app.js,/users/user/projects/project2/app.js,/users/user/projects/project3/app.js +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/users/user/projects/project1/app.js", + "/users/user/projects/project2/app.js", + "/users/user/projects/project3/app.js" + ] + } + } +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Before running Timeout callback:: count: 2 +11: /users/user/projects/project1/jsconfig.json +12: *ensureProjectForOpenFiles* +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + } +} + + +Timeout callback:: count: 2 +11: /users/user/projects/project1/jsconfig.json *new* +12: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 3 *changed* + projectProgramVersion: 2 + dirty: true *changed* +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 3 + projectProgramVersion: 3 +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Change in config file detected" + } + } +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Resolution for module 'bar' was found in cache from location '/users/user/projects/project1'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project1/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 3 projectProgramVersion: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/users/user/projects/project1/app.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "projectRootPath": "/users/user/projects/project1", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [], + "filesToWatch": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json", + "files": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] No new typings were requested as a result of typings discovery +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/jsconfig.json", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /users/user/projects/project1/app.js,/users/user/projects/project2/app.js,/users/user/projects/project3/app.js +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/users/user/projects/project1/app.js", + "/users/user/projects/project2/app.js", + "/users/user/projects/project3/app.js" + ] + } + } +After running Timeout callback:: count: 0 + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project2/bower_components: + {"pollingInterval":500} +/users/user/projects/project2/node_modules: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules: + {"pollingInterval":500} +/users/user/projects/project3/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: + {} +/users/user/projects/project2/jsconfig.json: + {} +/users/user/projects/project3/app2.js: + {} +/users/user/projects/project3/jsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project2: + {} +/users/user/projects/project3: + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 3 + projectProgramVersion: 3 *changed* + dirty: false *changed* +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 3 + projectProgramVersion: 3 +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts *changed* + version: Text-1 + containingProjects: 2 *changed* + /users/user/projects/project2/jsconfig.json + /users/user/projects/project1/jsconfig.json *new* +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 3 + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json + /users/user/projects/project3/jsconfig.json +/users/user/projects/node_modules/bar/index.js *changed* + version: Text-1 + containingProjects: 1 *changed* + /users/user/projects/project3/jsconfig.json + /users/user/projects/project1/jsconfig.json *deleted* +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project2/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project3/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json *default* +/users/user/projects/project3/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 diff --git a/tests/baselines/reference/tsserver/typeAquisition/midway-changes-to-typeAquisition-when-typing-installer-installs-typing-multiple-projects.js b/tests/baselines/reference/tsserver/typeAquisition/midway-changes-to-typeAquisition-when-typing-installer-installs-typing-multiple-projects.js new file mode 100644 index 0000000000000..7b1bf25eaab4e --- /dev/null +++ b/tests/baselines/reference/tsserver/typeAquisition/midway-changes-to-typeAquisition-when-typing-installer-installs-typing-multiple-projects.js @@ -0,0 +1,2425 @@ +Info seq [hh:mm:ss:mss] currentDirectory:: /home/src/Vscode/Projects/bin useCaseSensitiveFileNames:: false +Info seq [hh:mm:ss:mss] libs Location:: /home/src/tslibs/TS/Lib +Info seq [hh:mm:ss:mss] globalTypingsCacheLocation:: /home/src/Library/Caches/typescript +Info seq [hh:mm:ss:mss] Provided types map file "/home/src/tslibs/TS/Lib/typesMap.json" doesn't exist +Before request +//// [/users/user/projects/project1/app.js] +var x = require('bar'); + +//// [/users/user/projects/project1/node_modules/bar/index.js] +export const x = 1 + +//// [/users/user/projects/project2/app.js] +var x = require('bar'); + +//// [/users/user/projects/project2/app2.js] +var x = require('foo'); + +//// [/users/user/projects/project2/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + } +} + +//// [/users/user/projects/project3/app.js] +var x = require('bar'); + +//// [/users/user/projects/project3/app2.js] +var x = require('foo'); + +//// [/users/user/projects/project3/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false + } +} + +//// [/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts] +export const foo = 1; + +//// [/users/user/projects/project2/node_modules/bar/index.js] +export const x = 1 + +//// [/users/user/projects/project3/node_modules/bar/index.js] +export const x = 1 + +//// [/home/src/tslibs/TS/Lib/lib.d.ts] +/// +interface Boolean {} +interface Function {} +interface CallableFunction {} +interface NewableFunction {} +interface IArguments {} +interface Number { toExponential: any; } +interface Object {} +interface RegExp {} +interface String { charAt: any; } +interface Array { length: number; [n: number]: T; } +interface ReadonlyArray {} +declare const console: { log(msg: any): void; }; + +//// [/home/src/Library/Caches/typescript/package.json] +{ "private": true } + +//// [/home/src/Library/Caches/typescript/node_modules/types-registry/index.json] +{ + "entries": { + "bar": { + "latest": "1.3.0", + "ts2.0": "1.0.0", + "ts2.1": "1.0.0", + "ts2.2": "1.2.0", + "ts2.3": "1.3.0", + "ts2.4": "1.3.0", + "ts2.5": "1.3.0", + "ts2.6": "1.3.0", + "ts2.7": "1.3.0" + }, + "foo": { + "latest": "1.3.0", + "ts2.0": "1.0.0", + "ts2.1": "1.0.0", + "ts2.2": "1.2.0", + "ts2.3": "1.3.0", + "ts2.4": "1.3.0", + "ts2.5": "1.3.0", + "ts2.6": "1.3.0", + "ts2.7": "1.3.0" + } + } +} + +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + } +} + + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project1/app.js" + }, + "seq": 1, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project1/jsconfig.json, currentDirectory: /users/user/projects/project1 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project1/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1 1 undefined Config: /users/user/projects/project1/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1 1 undefined Config: /users/user/projects/project1/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project1/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/project1/node_modules/bar/index.js', result '/users/user/projects/project1/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project1/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project1/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/project1/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: Creating typing installer + +PolledWatches:: +/users/user/projects/node_modules: *new* + {"pollingInterval":500} +/users/user/projects/node_modules/@types: *new* + {"pollingInterval":500} +/users/user/projects/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/@types: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules/bar/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/package.json: *new* + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: *new* + {} +/users/user/projects/project1/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/users/user/projects/project1: *new* + {} +/users/user/projects/project1/node_modules: *new* + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 0 + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project1/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project1/node_modules/bar/index.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json + +TI:: [hh:mm:ss:mss] Global cache location '/home/src/Library/Caches/typescript', safe file path '/home/src/tslibs/TS/Lib/typingSafeList.json', types map path /home/src/tslibs/TS/Lib/typesMap.json +TI:: [hh:mm:ss:mss] Processing cache location '/home/src/Library/Caches/typescript' +TI:: [hh:mm:ss:mss] Trying to find '/home/src/Library/Caches/typescript/package.json'... +TI:: [hh:mm:ss:mss] Finished processing cache location '/home/src/Library/Caches/typescript' +TI:: [hh:mm:ss:mss] Npm config file: /home/src/Library/Caches/typescript/package.json +TI:: [hh:mm:ss:mss] Updating types-registry npm package... +TI:: [hh:mm:ss:mss] npm install --ignore-scripts types-registry@latest +TI:: [hh:mm:ss:mss] Updated types-registry npm package +TI:: typing installer creation complete + +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/users/user/projects/project1/app.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "unresolvedImports": [ + "bar" + ], + "projectRootPath": "/users/user/projects/project1", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project1/node_modules; all files: [] +TI:: [hh:mm:ss:mss] Found package names: [] +TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: ["bar"] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [ + "bar" + ], + "filesToWatch": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json", + "files": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Installing typings ["bar"] +TI:: [hh:mm:ss:mss] Npm config file: /home/src/Library/Caches/typescript/package.json +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "event::beginInstallTypes", + "eventId": 1, + "typingsInstallerVersion": "FakeVersion", + "projectName": "/users/user/projects/project1/jsconfig.json" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "beginInstallTypes", + "body": { + "eventId": 1 + } + } +TI:: [hh:mm:ss:mss] #1 with cwd: /home/src/Library/Caches/typescript arguments: [ + "@types/bar@tsFakeMajor.Minor" +] +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "a24ce251bb636300af6d4777b3f4b21687a6424baa3ae50af422af2a5b2dd7f0", + "fileStats": { + "js": 2, + "jsSize": 41, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 1, + "dtsSize": 413, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": true, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/app.js", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 1, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} + +FsWatchesRecursive:: +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} + +PendingInstalls callback:: count: 1 +1: #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 1 + projectProgramVersion: 1 *changed* + autoImportProviderHost: false *changed* + +Before request + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project2/app.js" + }, + "seq": 2, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project2/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project2/jsconfig.json, currentDirectory: /users/user/projects/project2 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project2/jsconfig.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project2/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project2/app.js", + "/users/user/projects/project2/app2.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project2/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2 1 undefined Config: /users/user/projects/project2/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2 1 undefined Config: /users/user/projects/project2/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project2/app2.js 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project2/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/project2/node_modules/bar/index.js', result '/users/user/projects/project2/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project2/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project2/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] ======== Resolving module 'foo' from '/users/user/projects/project2/app2.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'foo' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/foo.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/foo.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'foo' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/foo.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/foo.jsx' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] ======== Module name 'foo' was not resolved. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project2/jsconfig.json'. Running extra resolution pass for module 'foo' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] Found 'package.json' at '/home/src/Library/Caches/typescript/package.json'. +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project2/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/foo/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules/@types 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules/@types 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/project2/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project2/app.js SVC-1-0 "var x = require('bar');" + /home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts Text-1 "export const foo = 1;" + /users/user/projects/project2/app2.js Text-1 "var x = require('foo');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + Imported via 'foo' from file 'app2.js' + app2.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/users/user/projects/project2/app.js", + "/users/user/projects/project2/app2.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "unresolvedImports": [ + "bar" + ], + "projectRootPath": "/users/user/projects/project2", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project2/node_modules; all files: [] +TI:: [hh:mm:ss:mss] Found package names: [] +TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: ["bar"] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [ + "bar" + ], + "filesToWatch": [ + "/users/user/projects/project2/bower_components", + "/users/user/projects/project2/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project2/jsconfig.json", + "files": [ + "/users/user/projects/project2/bower_components", + "/users/user/projects/project2/node_modules" + ] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/bower_components 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/bower_components 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Installing typings ["bar"] +TI:: [hh:mm:ss:mss] Npm config file: /home/src/Library/Caches/typescript/package.json +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "event::beginInstallTypes", + "eventId": 2, + "typingsInstallerVersion": "FakeVersion", + "projectName": "/users/user/projects/project2/jsconfig.json" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "beginInstallTypes", + "body": { + "eventId": 2 + } + } +TI:: [hh:mm:ss:mss] #2 with cwd: /home/src/Library/Caches/typescript arguments: [ + "@types/bar@tsFakeMajor.Minor" +] +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "318b0b83fbc7be458819ec932b0b673d12709d07882bd4b96f96985c09b696c4", + "fileStats": { + "js": 3, + "jsSize": 64, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 2, + "dtsSize": 434, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": true, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project2/app.js", + "configFile": "/users/user/projects/project2/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 2, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/package.json: + {"pollingInterval":2000} +/users/user/projects/project2/bower_components: *new* + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: *new* + {"pollingInterval":500} +/users/user/projects/project2/node_modules/bar/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project2/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project2/package.json: *new* + {"pollingInterval":2000} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: *new* + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: *new* + {} +/users/user/projects/project2/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: *new* + {} +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} +/users/user/projects/project2: *new* + {} +/users/user/projects/project2/node_modules: *new* + {} + +PendingInstalls callback:: count: 2 +1: #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] +2: #2 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts *changed* + version: Text-1 + containingProjects: 2 *changed* + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json *new* +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project1/node_modules/bar/index.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project2/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project2/node_modules/bar/index.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json + +Before request + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project3/app.js" + }, + "seq": 3, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project3/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project3/jsconfig.json, currentDirectory: /users/user/projects/project3 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/jsconfig.json 2000 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project3/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project3/app.js", + "/users/user/projects/project3/app2.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project3/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project3/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project3/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3 1 undefined Config: /users/user/projects/project3/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3 1 undefined Config: /users/user/projects/project3/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/app2.js 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project3/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project3/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/project3/node_modules/bar/index.js', result '/users/user/projects/project3/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project3/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] ======== Resolving module 'foo' from '/users/user/projects/project3/app2.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'foo' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/foo.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/foo.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project3/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'foo' was found in cache from location '/users/user/projects'. +Info seq [hh:mm:ss:mss] ======== Module name 'foo' was not resolved. ======== +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules/package.json 2000 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/package.json 2000 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules/@types 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules/@types 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project3/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/project3/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project3/app.js SVC-1-0 "var x = require('bar');" + /users/user/projects/project3/app2.js Text-1 "var x = require('foo');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + app2.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project3/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "b03a661e323d76898c84af369d25377a0a5531270f5a2f1e243ca14104fd96c1", + "fileStats": { + "js": 3, + "jsSize": 64, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 1, + "dtsSize": 413, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project3/app.js", + "configFile": "/users/user/projects/project3/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 3, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/package.json: + {"pollingInterval":2000} +/users/user/projects/project2/bower_components: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project2/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project2/package.json: + {"pollingInterval":2000} +/users/user/projects/project3/node_modules/@types: *new* + {"pollingInterval":500} +/users/user/projects/project3/node_modules/bar/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project3/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project3/package.json: *new* + {"pollingInterval":2000} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: + {} +/users/user/projects/project2/jsconfig.json: + {} +/users/user/projects/project3/app2.js: *new* + {} +/users/user/projects/project3/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} +/users/user/projects/project2: + {} +/users/user/projects/project2/node_modules: + {} +/users/user/projects/project3: *new* + {} +/users/user/projects/project3/node_modules: *new* + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts *changed* + version: Text-1 + containingProjects: 3 *changed* + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json + /users/user/projects/project3/jsconfig.json *new* +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project1/node_modules/bar/index.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project2/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project2/node_modules/bar/index.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project3/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json *default* +/users/user/projects/project3/app2.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json +/users/user/projects/project3/node_modules/bar/index.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json + +Before running PendingInstalls callback:: count: 2 +1: #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] +2: #2 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] + +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/@types/bar :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/@types/bar :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +TI:: Installation #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] complete with success::true +//// [/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts] +export const x = 1; + + +Timeout callback:: count: 1 +2: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation *new* + +TI:: [hh:mm:ss:mss] Installed typings ["@types/bar@tsFakeMajor.Minor"] +TI:: [hh:mm:ss:mss] Installed typing files ["/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts"] +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [ + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts" + ], + "unresolvedImports": [ + "bar" + ], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [ + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts" + ], + "unresolvedImports": [ + "bar" + ], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "event::endInstallTypes", + "eventId": 1, + "projectName": "/users/user/projects/project1/jsconfig.json", + "packagesToInstall": [ + "@types/bar@tsFakeMajor.Minor" + ], + "installSuccess": true, + "typingsInstallerVersion": "FakeVersion" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "endInstallTypes", + "body": { + "eventId": 1, + "packages": [ + "@types/bar@tsFakeMajor.Minor" + ], + "success": true + } + } +TI:: Installation #2 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] complete with success::true + +Timeout callback:: count: 3 +2: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +3: /users/user/projects/project1/jsconfig.json *new* +4: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 2 *changed* + projectProgramVersion: 1 + dirty: true *changed* + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +TI:: [hh:mm:ss:mss] Installed typings ["@types/bar@tsFakeMajor.Minor"] +TI:: [hh:mm:ss:mss] Installed typing files ["/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts"] +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [ + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts" + ], + "unresolvedImports": [ + "bar" + ], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [ + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts" + ], + "unresolvedImports": [ + "bar" + ], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "event::endInstallTypes", + "eventId": 2, + "projectName": "/users/user/projects/project2/jsconfig.json", + "packagesToInstall": [ + "@types/bar@tsFakeMajor.Minor" + ], + "installSuccess": true, + "typingsInstallerVersion": "FakeVersion" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "endInstallTypes", + "body": { + "eventId": 2, + "packages": [ + "@types/bar@tsFakeMajor.Minor" + ], + "success": true + } + } +After running PendingInstalls callback:: count: 0 + +Timeout callback:: count: 4 +4: *ensureProjectForOpenFiles* *deleted* +2: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +3: /users/user/projects/project1/jsconfig.json +5: /users/user/projects/project2/jsconfig.json *new* +6: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 2 + projectProgramVersion: 1 + dirty: true + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) *changed* + projectStateVersion: 2 *changed* + projectProgramVersion: 1 + dirty: true *changed* + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.json, Cancelled earlier one +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Before running Timeout callback:: count: 4 +2: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +5: /users/user/projects/project2/jsconfig.json +7: /users/user/projects/project1/jsconfig.json +8: *ensureProjectForOpenFiles* +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false + } +} + + +Timeout callback:: count: 4 +3: /users/user/projects/project1/jsconfig.json *deleted* +6: *ensureProjectForOpenFiles* *deleted* +2: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +5: /users/user/projects/project2/jsconfig.json +7: /users/user/projects/project1/jsconfig.json *new* +8: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 2 + projectProgramVersion: 1 + dirty: true + autoImportProviderHost: undefined *changed* +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 2 + projectProgramVersion: 1 + dirty: true + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project2/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/project2/node_modules/bar/index.js', result '/users/user/projects/project2/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project2/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project2/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'foo' from '/users/user/projects/project2/app2.js' of old program, it was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/bar/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project2/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project2/node_modules/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project2/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project2/app.js SVC-1-0 "var x = require('bar');" + /home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts Text-1 "export const foo = 1;" + /users/user/projects/project2/app2.js Text-1 "var x = require('foo');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts + Imported via 'bar' from file 'app.js' + Matched by default include pattern '**/*' + app.js + Matched by default include pattern '**/*' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + Imported via 'foo' from file 'app2.js' + app2.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts", + "/users/user/projects/project2/app.js", + "/users/user/projects/project2/app2.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "projectRootPath": "/users/user/projects/project2", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project2/node_modules; all files: [] +TI:: [hh:mm:ss:mss] Found package names: [] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [], + "filesToWatch": [ + "/users/user/projects/project2/bower_components", + "/users/user/projects/project2/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project2/jsconfig.json" + } +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] No new typings were requested as a result of typings discovery +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Reusing resolution of module 'bar' from '/users/user/projects/project2/app.js' of old program, it was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'foo' from '/users/user/projects/project2/app2.js' of old program, it was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json projectStateVersion: 3 projectProgramVersion: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project2/app.js SVC-1-0 "var x = require('bar');" + /home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts Text-1 "export const foo = 1;" + /users/user/projects/project2/app2.js Text-1 "var x = require('foo');" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Change in config file detected" + } + } +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +TI:: [hh:mm:ss:mss] Closing file watchers for project '/users/user/projects/project1/jsconfig.json' +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json", + "files": [] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Closing file watchers for project '/users/user/projects/project1/jsconfig.json' - done. +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Resolution for module 'bar' was found in cache from location '/users/user/projects/project1'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project1/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/project1/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/jsconfig.json", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +After running Timeout callback:: count: 2 + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/package.json: + {"pollingInterval":2000} +/users/user/projects/project2/bower_components: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project3/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project3/package.json: + {"pollingInterval":2000} + +PolledWatches *deleted*:: +/users/user/projects/project1/bower_components: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project2/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project2/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: + {} +/users/user/projects/project2/jsconfig.json: + {} +/users/user/projects/project3/app2.js: + {} +/users/user/projects/project3/jsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} +/users/user/projects/project2: + {} +/users/user/projects/project2/node_modules: + {} +/users/user/projects/project3: + {} +/users/user/projects/project3/node_modules: + {} + +Timeout callback:: count: 2 +8: *ensureProjectForOpenFiles* *deleted* +9: /users/user/projects/project2/jsconfig.json *new* +10: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 2 + projectProgramVersion: 2 *changed* + dirty: false *changed* +/users/user/projects/project2/jsconfig.json (Configured) *changed* + projectStateVersion: 3 *changed* + projectProgramVersion: 3 *changed* + dirty: false *changed* + autoImportProviderHost: undefined *changed* +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 3 + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json + /users/user/projects/project3/jsconfig.json +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project1/node_modules/bar/index.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project2/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project2/node_modules/bar/index.js *changed* + version: Text-1 + containingProjects: 0 *changed* + /users/user/projects/project2/jsconfig.json *deleted* +/users/user/projects/project3/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json *default* +/users/user/projects/project3/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json +/users/user/projects/project3/node_modules/bar/index.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json + +Before running Timeout callback:: count: 2 +9: /users/user/projects/project2/jsconfig.json +10: *ensureProjectForOpenFiles* + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /users/user/projects/project1/app.js,/users/user/projects/project2/app.js,/users/user/projects/project3/app.js +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/users/user/projects/project1/app.js", + "/users/user/projects/project2/app.js", + "/users/user/projects/project3/app.js" + ] + } + } +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Before running Timeout callback:: count: 2 +11: /users/user/projects/project1/jsconfig.json +12: *ensureProjectForOpenFiles* +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + } +} + + +Timeout callback:: count: 2 +11: /users/user/projects/project1/jsconfig.json *new* +12: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 3 *changed* + projectProgramVersion: 2 + dirty: true *changed* +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 3 + projectProgramVersion: 3 +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Change in config file detected" + } + } +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Resolution for module 'bar' was found in cache from location '/users/user/projects/project1'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project1/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project1/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project1/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 3 projectProgramVersion: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/users/user/projects/project1/app.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "projectRootPath": "/users/user/projects/project1", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project1/node_modules; all files: [] +TI:: [hh:mm:ss:mss] Found package names: [] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [], + "filesToWatch": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json", + "files": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] No new typings were requested as a result of typings discovery +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/jsconfig.json", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /users/user/projects/project1/app.js,/users/user/projects/project2/app.js,/users/user/projects/project3/app.js +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/users/user/projects/project1/app.js", + "/users/user/projects/project2/app.js", + "/users/user/projects/project3/app.js" + ] + } + } +After running Timeout callback:: count: 0 + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project2/bower_components: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project3/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project3/package.json: + {"pollingInterval":2000} + +PolledWatches *deleted*:: +/users/user/projects/project1/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: + {} +/users/user/projects/project2/jsconfig.json: + {} +/users/user/projects/project3/app2.js: + {} +/users/user/projects/project3/jsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} +/users/user/projects/project2: + {} +/users/user/projects/project2/node_modules: + {} +/users/user/projects/project3: + {} +/users/user/projects/project3/node_modules: + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 3 + projectProgramVersion: 3 *changed* + dirty: false *changed* +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 3 + projectProgramVersion: 3 +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts *changed* + version: Text-1 + containingProjects: 2 *changed* + /users/user/projects/project2/jsconfig.json + /users/user/projects/project1/jsconfig.json *new* +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 3 + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json + /users/user/projects/project3/jsconfig.json +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project1/node_modules/bar/index.js *changed* + version: Text-1 + containingProjects: 0 *changed* + /users/user/projects/project1/jsconfig.json *deleted* +/users/user/projects/project2/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project2/node_modules/bar/index.js + version: Text-1 + containingProjects: 0 +/users/user/projects/project3/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json *default* +/users/user/projects/project3/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json +/users/user/projects/project3/node_modules/bar/index.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 diff --git a/tests/baselines/reference/tsserver/typeAquisition/midway-changes-to-typeAquisition-when-typing-installer-installs-typing.js b/tests/baselines/reference/tsserver/typeAquisition/midway-changes-to-typeAquisition-when-typing-installer-installs-typing.js new file mode 100644 index 0000000000000..44b332168a15b --- /dev/null +++ b/tests/baselines/reference/tsserver/typeAquisition/midway-changes-to-typeAquisition-when-typing-installer-installs-typing.js @@ -0,0 +1,1048 @@ +Info seq [hh:mm:ss:mss] currentDirectory:: /home/src/Vscode/Projects/bin useCaseSensitiveFileNames:: false +Info seq [hh:mm:ss:mss] libs Location:: /home/src/tslibs/TS/Lib +Info seq [hh:mm:ss:mss] globalTypingsCacheLocation:: /home/src/Library/Caches/typescript +Info seq [hh:mm:ss:mss] Provided types map file "/home/src/tslibs/TS/Lib/typesMap.json" doesn't exist +Before request +//// [/users/user/projects/project1/app.js] +var x = require('bar'); + +//// [/users/user/projects/project1/node_modules/bar/index.js] +export const x = 1 + +//// [/home/src/tslibs/TS/Lib/lib.d.ts] +/// +interface Boolean {} +interface Function {} +interface CallableFunction {} +interface NewableFunction {} +interface IArguments {} +interface Number { toExponential: any; } +interface Object {} +interface RegExp {} +interface String { charAt: any; } +interface Array { length: number; [n: number]: T; } +interface ReadonlyArray {} +declare const console: { log(msg: any): void; }; + +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + } +} + + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project1/app.js" + }, + "seq": 1, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project1/jsconfig.json, currentDirectory: /users/user/projects/project1 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project1/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1 1 undefined Config: /users/user/projects/project1/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1 1 undefined Config: /users/user/projects/project1/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project1/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/project1/node_modules/bar/index.js', result '/users/user/projects/project1/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project1/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project1/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] Directory '/home/src/Library/Caches/typescript/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/project1/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: Creating typing installer + +PolledWatches:: +/users/user/projects/node_modules: *new* + {"pollingInterval":500} +/users/user/projects/node_modules/@types: *new* + {"pollingInterval":500} +/users/user/projects/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/@types: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules/bar/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/package.json: *new* + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: *new* + {} +/users/user/projects/project1/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/users/user/projects/project1: *new* + {} +/users/user/projects/project1/node_modules: *new* + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 0 + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project1/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project1/node_modules/bar/index.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json + +TI:: [hh:mm:ss:mss] Global cache location '/home/src/Library/Caches/typescript', safe file path '/home/src/tslibs/TS/Lib/typingSafeList.json', types map path /home/src/tslibs/TS/Lib/typesMap.json +TI:: [hh:mm:ss:mss] Processing cache location '/home/src/Library/Caches/typescript' +TI:: [hh:mm:ss:mss] Trying to find '/home/src/Library/Caches/typescript/package.json'... +TI:: [hh:mm:ss:mss] Finished processing cache location '/home/src/Library/Caches/typescript' +TI:: [hh:mm:ss:mss] Npm config file: /home/src/Library/Caches/typescript/package.json +TI:: [hh:mm:ss:mss] Npm config file: '/home/src/Library/Caches/typescript/package.json' is missing, creating new one... +TI:: [hh:mm:ss:mss] Updating types-registry npm package... +TI:: [hh:mm:ss:mss] npm install --ignore-scripts types-registry@latest +TI:: [hh:mm:ss:mss] Updated types-registry npm package +TI:: typing installer creation complete +//// [/home/src/Library/Caches/typescript/package.json] +{ "private": true } + +//// [/home/src/Library/Caches/typescript/node_modules/types-registry/index.json] +{ + "entries": { + "bar": { + "latest": "1.3.0", + "ts2.0": "1.0.0", + "ts2.1": "1.0.0", + "ts2.2": "1.2.0", + "ts2.3": "1.3.0", + "ts2.4": "1.3.0", + "ts2.5": "1.3.0", + "ts2.6": "1.3.0", + "ts2.7": "1.3.0" + } + } +} + + +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/users/user/projects/project1/app.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "unresolvedImports": [ + "bar" + ], + "projectRootPath": "/users/user/projects/project1", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project1/node_modules; all files: [] +TI:: [hh:mm:ss:mss] Found package names: [] +TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: ["bar"] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [ + "bar" + ], + "filesToWatch": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json", + "files": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Installing typings ["bar"] +TI:: [hh:mm:ss:mss] Npm config file: /home/src/Library/Caches/typescript/package.json +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "event::beginInstallTypes", + "eventId": 1, + "typingsInstallerVersion": "FakeVersion", + "projectName": "/users/user/projects/project1/jsconfig.json" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "beginInstallTypes", + "body": { + "eventId": 1 + } + } +TI:: [hh:mm:ss:mss] #1 with cwd: /home/src/Library/Caches/typescript arguments: [ + "@types/bar@tsFakeMajor.Minor" +] +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "a24ce251bb636300af6d4777b3f4b21687a6424baa3ae50af422af2a5b2dd7f0", + "fileStats": { + "js": 2, + "jsSize": 41, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 1, + "dtsSize": 413, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": true, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/app.js", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 1, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} + +FsWatchesRecursive:: +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} + +PendingInstalls callback:: count: 1 +1: #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 1 + projectProgramVersion: 1 *changed* + autoImportProviderHost: false *changed* + +Before running PendingInstalls callback:: count: 1 +1: #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] + +TI:: Installation #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] complete with success::true +//// [/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts] +export const x = 1; + + +TI:: [hh:mm:ss:mss] Installed typings ["@types/bar@tsFakeMajor.Minor"] +TI:: [hh:mm:ss:mss] Installed typing files ["/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts"] +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [ + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts" + ], + "unresolvedImports": [ + "bar" + ], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [ + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts" + ], + "unresolvedImports": [ + "bar" + ], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "event::endInstallTypes", + "eventId": 1, + "projectName": "/users/user/projects/project1/jsconfig.json", + "packagesToInstall": [ + "@types/bar@tsFakeMajor.Minor" + ], + "installSuccess": true, + "typingsInstallerVersion": "FakeVersion" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "endInstallTypes", + "body": { + "eventId": 1, + "packages": [ + "@types/bar@tsFakeMajor.Minor" + ], + "success": true + } + } +After running PendingInstalls callback:: count: 0 + +Timeout callback:: count: 2 +1: /users/user/projects/project1/jsconfig.json *new* +2: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 2 *changed* + projectProgramVersion: 1 + dirty: true *changed* + autoImportProviderHost: false + +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.json, Cancelled earlier one +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Before running Timeout callback:: count: 2 +3: /users/user/projects/project1/jsconfig.json +4: *ensureProjectForOpenFiles* +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false + } +} + + +Timeout callback:: count: 2 +1: /users/user/projects/project1/jsconfig.json *deleted* +2: *ensureProjectForOpenFiles* *deleted* +3: /users/user/projects/project1/jsconfig.json *new* +4: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 2 + projectProgramVersion: 1 + dirty: true + autoImportProviderHost: undefined *changed* + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Change in config file detected" + } + } +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +TI:: [hh:mm:ss:mss] Closing file watchers for project '/users/user/projects/project1/jsconfig.json' +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json", + "files": [] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Closing file watchers for project '/users/user/projects/project1/jsconfig.json' - done. +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Resolution for module 'bar' was found in cache from location '/users/user/projects/project1'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project1/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/project1/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/jsconfig.json", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /users/user/projects/project1/app.js +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/users/user/projects/project1/app.js" + ] + } + } +After running Timeout callback:: count: 0 + +PolledWatches:: +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/package.json: + {"pollingInterval":2000} + +PolledWatches *deleted*:: +/users/user/projects/project1/bower_components: + {"pollingInterval":500} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} + +FsWatchesRecursive:: +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 2 + projectProgramVersion: 2 *changed* + dirty: false *changed* + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Before running Timeout callback:: count: 2 +5: /users/user/projects/project1/jsconfig.json +6: *ensureProjectForOpenFiles* +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + } +} + + +Timeout callback:: count: 2 +5: /users/user/projects/project1/jsconfig.json *new* +6: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 3 *changed* + projectProgramVersion: 2 + dirty: true *changed* + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Change in config file detected" + } + } +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Resolution for module 'bar' was found in cache from location '/users/user/projects/project1'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project1/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project1/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] Found 'package.json' at '/home/src/Library/Caches/typescript/package.json'. +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project1/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 3 projectProgramVersion: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/users/user/projects/project1/app.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "projectRootPath": "/users/user/projects/project1", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project1/node_modules; all files: [] +TI:: [hh:mm:ss:mss] Found package names: [] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [], + "filesToWatch": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json", + "files": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] No new typings were requested as a result of typings discovery +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/jsconfig.json", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /users/user/projects/project1/app.js +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/users/user/projects/project1/app.js" + ] + } + } +After running Timeout callback:: count: 0 + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/bower_components: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} + +PolledWatches *deleted*:: +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: *new* + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: *new* + {} +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 3 + projectProgramVersion: 3 *changed* + dirty: false *changed* + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project1/node_modules/bar/index.js *changed* + version: Text-1 + containingProjects: 0 *changed* + /users/user/projects/project1/jsconfig.json *deleted* + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 diff --git a/tests/baselines/reference/tsserver/typeAquisition/prefer-typings-in-second-pass.js b/tests/baselines/reference/tsserver/typeAquisition/prefer-typings-in-second-pass.js index 48c118e081288..fe66455961da3 100644 --- a/tests/baselines/reference/tsserver/typeAquisition/prefer-typings-in-second-pass.js +++ b/tests/baselines/reference/tsserver/typeAquisition/prefer-typings-in-second-pass.js @@ -84,13 +84,13 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project 1 undefined Config: /user/username/projects/project/jsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project 1 undefined Config: /user/username/projects/project/jsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/project/jsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules 1 undefined Project: /user/username/projects/project/jsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules 1 undefined Project: /user/username/projects/project/jsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /user/username/projects/project/jsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /user/username/projects/project/jsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /user/username/projects/project/jsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /user/username/projects/project/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/bar/package.json 2000 undefined Project: /user/username/projects/project/jsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/package.json 2000 undefined Project: /user/username/projects/project/jsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/package.json 2000 undefined Project: /user/username/projects/project/jsconfig.json WatchType: File location affecting resolution @@ -197,7 +197,6 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } @@ -205,7 +204,6 @@ TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslib TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Searching for typing names in /user/username/projects/project/node_modules; all files: [] TI:: [hh:mm:ss:mss] Found package names: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -246,7 +244,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -271,7 +268,6 @@ Info seq [hh:mm:ss:mss] event: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typeAquisition/receives-update-of-typings-after-project-changes-multiple-projects-with-shared-resolution.js b/tests/baselines/reference/tsserver/typeAquisition/receives-update-of-typings-after-project-changes-multiple-projects-with-shared-resolution.js new file mode 100644 index 0000000000000..c819d77078b39 --- /dev/null +++ b/tests/baselines/reference/tsserver/typeAquisition/receives-update-of-typings-after-project-changes-multiple-projects-with-shared-resolution.js @@ -0,0 +1,2387 @@ +Info seq [hh:mm:ss:mss] currentDirectory:: /home/src/Vscode/Projects/bin useCaseSensitiveFileNames:: false +Info seq [hh:mm:ss:mss] libs Location:: /home/src/tslibs/TS/Lib +Info seq [hh:mm:ss:mss] globalTypingsCacheLocation:: /home/src/Library/Caches/typescript +Info seq [hh:mm:ss:mss] Provided types map file "/home/src/tslibs/TS/Lib/typesMap.json" doesn't exist +Before request +//// [/users/user/projects/project1/app.js] +var x = require('bar'); + +//// [/users/user/projects/node_modules/bar/index.js] +export const x = 1 + +//// [/users/user/projects/project2/app.js] +var x = require('bar'); + +//// [/users/user/projects/project2/app2.js] +var x = require('foo'); + +//// [/users/user/projects/project2/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + } +} + +//// [/users/user/projects/project3/app.js] +var x = require('bar'); + +//// [/users/user/projects/project3/app2.js] +var x = require('foo'); + +//// [/users/user/projects/project3/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false + } +} + +//// [/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts] +export const foo = 1; + +//// [/home/src/tslibs/TS/Lib/lib.d.ts] +/// +interface Boolean {} +interface Function {} +interface CallableFunction {} +interface NewableFunction {} +interface IArguments {} +interface Number { toExponential: any; } +interface Object {} +interface RegExp {} +interface String { charAt: any; } +interface Array { length: number; [n: number]: T; } +interface ReadonlyArray {} +declare const console: { log(msg: any): void; }; + +//// [/home/src/Library/Caches/typescript/package.json] +{ "private": true } + +//// [/home/src/Library/Caches/typescript/node_modules/types-registry/index.json] +{ + "entries": { + "bar": { + "latest": "1.3.0", + "ts2.0": "1.0.0", + "ts2.1": "1.0.0", + "ts2.2": "1.2.0", + "ts2.3": "1.3.0", + "ts2.4": "1.3.0", + "ts2.5": "1.3.0", + "ts2.6": "1.3.0", + "ts2.7": "1.3.0" + }, + "foo": { + "latest": "1.3.0", + "ts2.0": "1.0.0", + "ts2.1": "1.0.0", + "ts2.2": "1.2.0", + "ts2.3": "1.3.0", + "ts2.4": "1.3.0", + "ts2.5": "1.3.0", + "ts2.6": "1.3.0", + "ts2.7": "1.3.0" + } + } +} + +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + } +} + + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project1/app.js" + }, + "seq": 1, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project1/jsconfig.json, currentDirectory: /users/user/projects/project1 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project1/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1 1 undefined Config: /users/user/projects/project1/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1 1 undefined Config: /users/user/projects/project1/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project1/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project1/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/node_modules/bar/index.js', result '/users/user/projects/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project1/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: Creating typing installer + +PolledWatches:: +/users/user/projects/node_modules/@types: *new* + {"pollingInterval":500} +/users/user/projects/node_modules/bar/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/node_modules: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: *new* + {"pollingInterval":500} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: *new* + {} +/users/user/projects/project1/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/users/user/projects/node_modules: *new* + {} +/users/user/projects/project1: *new* + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 0 + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/node_modules/bar/index.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project1/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* + +TI:: [hh:mm:ss:mss] Global cache location '/home/src/Library/Caches/typescript', safe file path '/home/src/tslibs/TS/Lib/typingSafeList.json', types map path /home/src/tslibs/TS/Lib/typesMap.json +TI:: [hh:mm:ss:mss] Processing cache location '/home/src/Library/Caches/typescript' +TI:: [hh:mm:ss:mss] Trying to find '/home/src/Library/Caches/typescript/package.json'... +TI:: [hh:mm:ss:mss] Finished processing cache location '/home/src/Library/Caches/typescript' +TI:: [hh:mm:ss:mss] Npm config file: /home/src/Library/Caches/typescript/package.json +TI:: [hh:mm:ss:mss] Updating types-registry npm package... +TI:: [hh:mm:ss:mss] npm install --ignore-scripts types-registry@latest +TI:: [hh:mm:ss:mss] Updated types-registry npm package +TI:: typing installer creation complete + +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/users/user/projects/project1/app.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "unresolvedImports": [ + "bar" + ], + "projectRootPath": "/users/user/projects/project1", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: ["bar"] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [ + "bar" + ], + "filesToWatch": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json", + "files": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Installing typings ["bar"] +TI:: [hh:mm:ss:mss] Npm config file: /home/src/Library/Caches/typescript/package.json +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "event::beginInstallTypes", + "eventId": 1, + "typingsInstallerVersion": "FakeVersion", + "projectName": "/users/user/projects/project1/jsconfig.json" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "beginInstallTypes", + "body": { + "eventId": 1 + } + } +TI:: [hh:mm:ss:mss] #1 with cwd: /home/src/Library/Caches/typescript arguments: [ + "@types/bar@tsFakeMajor.Minor" +] +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "a24ce251bb636300af6d4777b3f4b21687a6424baa3ae50af422af2a5b2dd7f0", + "fileStats": { + "js": 2, + "jsSize": 41, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 1, + "dtsSize": 413, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": true, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/app.js", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 1, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} + +FsWatchesRecursive:: +/users/user/projects/node_modules: + {} +/users/user/projects/project1: + {} + +PendingInstalls callback:: count: 1 +1: #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 1 + projectProgramVersion: 1 *changed* + autoImportProviderHost: false *changed* + +Before request + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project2/app.js" + }, + "seq": 2, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project2/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project2/jsconfig.json, currentDirectory: /users/user/projects/project2 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project2/jsconfig.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project2/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project2/app.js", + "/users/user/projects/project2/app2.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project2/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2 1 undefined Config: /users/user/projects/project2/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2 1 undefined Config: /users/user/projects/project2/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project2/app2.js 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project2/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'bar' was found in cache from location '/users/user/projects'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'foo' from '/users/user/projects/project2/app2.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'foo' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/foo.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/foo.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'foo' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/foo.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/foo.jsx' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] ======== Module name 'foo' was not resolved. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project2/jsconfig.json'. Running extra resolution pass for module 'foo' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] Found 'package.json' at '/home/src/Library/Caches/typescript/package.json'. +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/foo/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules/@types 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules/@types 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project2/app.js SVC-1-0 "var x = require('bar');" + /home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts Text-1 "export const foo = 1;" + /users/user/projects/project2/app2.js Text-1 "var x = require('foo');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + Imported via 'foo' from file 'app2.js' + app2.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/users/user/projects/project2/app.js", + "/users/user/projects/project2/app2.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "unresolvedImports": [ + "bar" + ], + "projectRootPath": "/users/user/projects/project2", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: ["bar"] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [ + "bar" + ], + "filesToWatch": [ + "/users/user/projects/project2/bower_components", + "/users/user/projects/project2/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project2/jsconfig.json", + "files": [ + "/users/user/projects/project2/bower_components", + "/users/user/projects/project2/node_modules" + ] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/bower_components 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/bower_components 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Installing typings ["bar"] +TI:: [hh:mm:ss:mss] Npm config file: /home/src/Library/Caches/typescript/package.json +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "event::beginInstallTypes", + "eventId": 2, + "typingsInstallerVersion": "FakeVersion", + "projectName": "/users/user/projects/project2/jsconfig.json" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "beginInstallTypes", + "body": { + "eventId": 2 + } + } +TI:: [hh:mm:ss:mss] #2 with cwd: /home/src/Library/Caches/typescript arguments: [ + "@types/bar@tsFakeMajor.Minor" +] +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "318b0b83fbc7be458819ec932b0b673d12709d07882bd4b96f96985c09b696c4", + "fileStats": { + "js": 3, + "jsSize": 64, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 2, + "dtsSize": 434, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": true, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project2/app.js", + "configFile": "/users/user/projects/project2/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 2, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: + {"pollingInterval":500} +/users/user/projects/project1/node_modules: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project2/bower_components: *new* + {"pollingInterval":500} +/users/user/projects/project2/node_modules: *new* + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: *new* + {"pollingInterval":500} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: *new* + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: *new* + {} +/users/user/projects/project2/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: *new* + {} +/users/user/projects/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project2: *new* + {} + +PendingInstalls callback:: count: 2 +1: #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] +2: #2 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts *changed* + version: Text-1 + containingProjects: 2 *changed* + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json *new* +/users/user/projects/node_modules/bar/index.js *changed* + version: Text-1 + containingProjects: 2 *changed* + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json *new* +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project2/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json + +Before request + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project3/app.js" + }, + "seq": 3, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project3/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project3/jsconfig.json, currentDirectory: /users/user/projects/project3 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/jsconfig.json 2000 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project3/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project3/app.js", + "/users/user/projects/project3/app2.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project3/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project3/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project3/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3 1 undefined Config: /users/user/projects/project3/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3 1 undefined Config: /users/user/projects/project3/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/app2.js 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project3/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project3/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'bar' was found in cache from location '/users/user/projects'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'foo' from '/users/user/projects/project3/app2.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'foo' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project3/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'foo' was found in cache from location '/users/user/projects'. +Info seq [hh:mm:ss:mss] ======== Module name 'foo' was not resolved. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules/@types 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules/@types 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project3/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project3/app.js SVC-1-0 "var x = require('bar');" + /users/user/projects/project3/app2.js Text-1 "var x = require('foo');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + app2.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project3/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "b03a661e323d76898c84af369d25377a0a5531270f5a2f1e243ca14104fd96c1", + "fileStats": { + "js": 3, + "jsSize": 64, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 1, + "dtsSize": 413, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project3/app.js", + "configFile": "/users/user/projects/project3/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 3, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: + {"pollingInterval":500} +/users/user/projects/project1/node_modules: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project2/bower_components: + {"pollingInterval":500} +/users/user/projects/project2/node_modules: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules: *new* + {"pollingInterval":500} +/users/user/projects/project3/node_modules/@types: *new* + {"pollingInterval":500} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: + {} +/users/user/projects/project2/jsconfig.json: + {} +/users/user/projects/project3/app2.js: *new* + {} +/users/user/projects/project3/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project2: + {} +/users/user/projects/project3: *new* + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts *changed* + version: Text-1 + containingProjects: 3 *changed* + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json + /users/user/projects/project3/jsconfig.json *new* +/users/user/projects/node_modules/bar/index.js *changed* + version: Text-1 + containingProjects: 3 *changed* + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json + /users/user/projects/project3/jsconfig.json *new* +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project2/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project3/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json *default* +/users/user/projects/project3/app2.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json + +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Before running Timeout callback:: count: 2 +1: /users/user/projects/project1/jsconfig.json +2: *ensureProjectForOpenFiles* +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false + } +} + + +Timeout callback:: count: 2 +1: /users/user/projects/project1/jsconfig.json *new* +2: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 2 *changed* + projectProgramVersion: 1 + dirty: true *changed* + autoImportProviderHost: undefined *changed* +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Change in config file detected" + } + } +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +TI:: [hh:mm:ss:mss] Closing file watchers for project '/users/user/projects/project1/jsconfig.json' +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json", + "files": [] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Closing file watchers for project '/users/user/projects/project1/jsconfig.json' - done. +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Resolution for module 'bar' was found in cache from location '/users/user/projects/project1'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/jsconfig.json", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /users/user/projects/project1/app.js,/users/user/projects/project2/app.js,/users/user/projects/project3/app.js +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/users/user/projects/project1/app.js", + "/users/user/projects/project2/app.js", + "/users/user/projects/project3/app.js" + ] + } + } +After running Timeout callback:: count: 0 + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project2/bower_components: + {"pollingInterval":500} +/users/user/projects/project2/node_modules: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules: + {"pollingInterval":500} +/users/user/projects/project3/node_modules/@types: + {"pollingInterval":500} + +PolledWatches *deleted*:: +/users/user/projects/project1/bower_components: + {"pollingInterval":500} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: + {} +/users/user/projects/project2/jsconfig.json: + {} +/users/user/projects/project3/app2.js: + {} +/users/user/projects/project3/jsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project2: + {} +/users/user/projects/project3: + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 2 + projectProgramVersion: 2 *changed* + dirty: false *changed* +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Before running PendingInstalls callback:: count: 2 +1: #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] +2: #2 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] + +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/@types/bar :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/@types/bar :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +TI:: Installation #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] complete with success::true +//// [/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts] +export const x = 1; + + +Timeout callback:: count: 1 +4: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation *new* + +TI:: [hh:mm:ss:mss] Installed typings ["@types/bar@tsFakeMajor.Minor"] +TI:: [hh:mm:ss:mss] Installed typing files ["/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts"] +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [ + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts" + ], + "unresolvedImports": [ + "bar" + ], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [ + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts" + ], + "unresolvedImports": [ + "bar" + ], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "event::endInstallTypes", + "eventId": 1, + "projectName": "/users/user/projects/project1/jsconfig.json", + "packagesToInstall": [ + "@types/bar@tsFakeMajor.Minor" + ], + "installSuccess": true, + "typingsInstallerVersion": "FakeVersion" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "endInstallTypes", + "body": { + "eventId": 1, + "packages": [ + "@types/bar@tsFakeMajor.Minor" + ], + "success": true + } + } +TI:: Installation #2 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] complete with success::true + +TI:: [hh:mm:ss:mss] Installed typings ["@types/bar@tsFakeMajor.Minor"] +TI:: [hh:mm:ss:mss] Installed typing files ["/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts"] +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [ + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts" + ], + "unresolvedImports": [ + "bar" + ], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [ + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts" + ], + "unresolvedImports": [ + "bar" + ], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "event::endInstallTypes", + "eventId": 2, + "projectName": "/users/user/projects/project2/jsconfig.json", + "packagesToInstall": [ + "@types/bar@tsFakeMajor.Minor" + ], + "installSuccess": true, + "typingsInstallerVersion": "FakeVersion" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "endInstallTypes", + "body": { + "eventId": 2, + "packages": [ + "@types/bar@tsFakeMajor.Minor" + ], + "success": true + } + } +After running PendingInstalls callback:: count: 0 + +Timeout callback:: count: 3 +4: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +5: /users/user/projects/project2/jsconfig.json *new* +6: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 2 + projectProgramVersion: 2 +/users/user/projects/project2/jsconfig.json (Configured) *changed* + projectStateVersion: 2 *changed* + projectProgramVersion: 1 + dirty: true *changed* + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +Before running Timeout callback:: count: 3 +4: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +5: /users/user/projects/project2/jsconfig.json +6: *ensureProjectForOpenFiles* + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project2/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/node_modules/bar/index.js', result '/users/user/projects/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project2/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'foo' from '/users/user/projects/project2/app2.js' of old program, it was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/bar/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project2/app.js SVC-1-0 "var x = require('bar');" + /home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts Text-1 "export const foo = 1;" + /users/user/projects/project2/app2.js Text-1 "var x = require('foo');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts + Imported via 'bar' from file 'app.js' + Matched by default include pattern '**/*' + app.js + Matched by default include pattern '**/*' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + Imported via 'foo' from file 'app2.js' + app2.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts", + "/users/user/projects/project2/app.js", + "/users/user/projects/project2/app2.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "projectRootPath": "/users/user/projects/project2", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [], + "filesToWatch": [ + "/users/user/projects/project2/bower_components", + "/users/user/projects/project2/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project2/jsconfig.json" + } +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] No new typings were requested as a result of typings discovery +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Reusing resolution of module 'bar' from '/users/user/projects/project2/app.js' of old program, it was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'foo' from '/users/user/projects/project2/app2.js' of old program, it was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json projectStateVersion: 3 projectProgramVersion: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project2/app.js SVC-1-0 "var x = require('bar');" + /home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts Text-1 "export const foo = 1;" + /users/user/projects/project2/app2.js Text-1 "var x = require('foo');" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +After running Timeout callback:: count: 2 + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project2/bower_components: + {"pollingInterval":500} +/users/user/projects/project2/node_modules: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules: + {"pollingInterval":500} +/users/user/projects/project3/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: + {} +/users/user/projects/project2/jsconfig.json: + {} +/users/user/projects/project3/app2.js: + {} +/users/user/projects/project3/jsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project2: + {} +/users/user/projects/project3: + {} + +Timeout callback:: count: 2 +6: *ensureProjectForOpenFiles* *deleted* +7: /users/user/projects/project2/jsconfig.json *new* +8: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 2 + projectProgramVersion: 2 +/users/user/projects/project2/jsconfig.json (Configured) *changed* + projectStateVersion: 3 *changed* + projectProgramVersion: 3 *changed* + dirty: false *changed* + autoImportProviderHost: undefined *changed* +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 3 + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json + /users/user/projects/project3/jsconfig.json +/users/user/projects/node_modules/bar/index.js *changed* + version: Text-1 + containingProjects: 2 *changed* + /users/user/projects/project1/jsconfig.json + /users/user/projects/project3/jsconfig.json + /users/user/projects/project2/jsconfig.json *deleted* +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project2/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project3/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json *default* +/users/user/projects/project3/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json + +Before running Timeout callback:: count: 2 +7: /users/user/projects/project2/jsconfig.json +8: *ensureProjectForOpenFiles* + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /users/user/projects/project1/app.js,/users/user/projects/project2/app.js,/users/user/projects/project3/app.js +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/users/user/projects/project1/app.js", + "/users/user/projects/project2/app.js", + "/users/user/projects/project3/app.js" + ] + } + } +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Before running Timeout callback:: count: 2 +9: /users/user/projects/project1/jsconfig.json +10: *ensureProjectForOpenFiles* +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + } +} + + +Timeout callback:: count: 2 +9: /users/user/projects/project1/jsconfig.json *new* +10: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 3 *changed* + projectProgramVersion: 2 + dirty: true *changed* +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 3 + projectProgramVersion: 3 +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Change in config file detected" + } + } +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Resolution for module 'bar' was found in cache from location '/users/user/projects/project1'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project1/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 3 projectProgramVersion: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/users/user/projects/project1/app.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "projectRootPath": "/users/user/projects/project1", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [], + "filesToWatch": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json", + "files": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] No new typings were requested as a result of typings discovery +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/jsconfig.json", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /users/user/projects/project1/app.js,/users/user/projects/project2/app.js,/users/user/projects/project3/app.js +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/users/user/projects/project1/app.js", + "/users/user/projects/project2/app.js", + "/users/user/projects/project3/app.js" + ] + } + } +After running Timeout callback:: count: 0 + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project2/bower_components: + {"pollingInterval":500} +/users/user/projects/project2/node_modules: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules: + {"pollingInterval":500} +/users/user/projects/project3/node_modules/@types: + {"pollingInterval":500} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: + {} +/users/user/projects/project2/jsconfig.json: + {} +/users/user/projects/project3/app2.js: + {} +/users/user/projects/project3/jsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project2: + {} +/users/user/projects/project3: + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 3 + projectProgramVersion: 3 *changed* + dirty: false *changed* +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 3 + projectProgramVersion: 3 +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts *changed* + version: Text-1 + containingProjects: 2 *changed* + /users/user/projects/project2/jsconfig.json + /users/user/projects/project1/jsconfig.json *new* +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 3 + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json + /users/user/projects/project3/jsconfig.json +/users/user/projects/node_modules/bar/index.js *changed* + version: Text-1 + containingProjects: 1 *changed* + /users/user/projects/project3/jsconfig.json + /users/user/projects/project1/jsconfig.json *deleted* +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project2/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project3/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json *default* +/users/user/projects/project3/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 diff --git a/tests/baselines/reference/tsserver/typeAquisition/receives-update-of-typings-after-project-changes-multiple-projects.js b/tests/baselines/reference/tsserver/typeAquisition/receives-update-of-typings-after-project-changes-multiple-projects.js new file mode 100644 index 0000000000000..443cfa678beb1 --- /dev/null +++ b/tests/baselines/reference/tsserver/typeAquisition/receives-update-of-typings-after-project-changes-multiple-projects.js @@ -0,0 +1,2549 @@ +Info seq [hh:mm:ss:mss] currentDirectory:: /home/src/Vscode/Projects/bin useCaseSensitiveFileNames:: false +Info seq [hh:mm:ss:mss] libs Location:: /home/src/tslibs/TS/Lib +Info seq [hh:mm:ss:mss] globalTypingsCacheLocation:: /home/src/Library/Caches/typescript +Info seq [hh:mm:ss:mss] Provided types map file "/home/src/tslibs/TS/Lib/typesMap.json" doesn't exist +Before request +//// [/users/user/projects/project1/app.js] +var x = require('bar'); + +//// [/users/user/projects/project1/node_modules/bar/index.js] +export const x = 1 + +//// [/users/user/projects/project2/app.js] +var x = require('bar'); + +//// [/users/user/projects/project2/app2.js] +var x = require('foo'); + +//// [/users/user/projects/project2/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + } +} + +//// [/users/user/projects/project3/app.js] +var x = require('bar'); + +//// [/users/user/projects/project3/app2.js] +var x = require('foo'); + +//// [/users/user/projects/project3/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false + } +} + +//// [/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts] +export const foo = 1; + +//// [/users/user/projects/project2/node_modules/bar/index.js] +export const x = 1 + +//// [/users/user/projects/project3/node_modules/bar/index.js] +export const x = 1 + +//// [/home/src/tslibs/TS/Lib/lib.d.ts] +/// +interface Boolean {} +interface Function {} +interface CallableFunction {} +interface NewableFunction {} +interface IArguments {} +interface Number { toExponential: any; } +interface Object {} +interface RegExp {} +interface String { charAt: any; } +interface Array { length: number; [n: number]: T; } +interface ReadonlyArray {} +declare const console: { log(msg: any): void; }; + +//// [/home/src/Library/Caches/typescript/package.json] +{ "private": true } + +//// [/home/src/Library/Caches/typescript/node_modules/types-registry/index.json] +{ + "entries": { + "bar": { + "latest": "1.3.0", + "ts2.0": "1.0.0", + "ts2.1": "1.0.0", + "ts2.2": "1.2.0", + "ts2.3": "1.3.0", + "ts2.4": "1.3.0", + "ts2.5": "1.3.0", + "ts2.6": "1.3.0", + "ts2.7": "1.3.0" + }, + "foo": { + "latest": "1.3.0", + "ts2.0": "1.0.0", + "ts2.1": "1.0.0", + "ts2.2": "1.2.0", + "ts2.3": "1.3.0", + "ts2.4": "1.3.0", + "ts2.5": "1.3.0", + "ts2.6": "1.3.0", + "ts2.7": "1.3.0" + } + } +} + +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + } +} + + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project1/app.js" + }, + "seq": 1, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project1/jsconfig.json, currentDirectory: /users/user/projects/project1 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project1/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1 1 undefined Config: /users/user/projects/project1/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1 1 undefined Config: /users/user/projects/project1/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project1/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/project1/node_modules/bar/index.js', result '/users/user/projects/project1/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project1/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project1/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/project1/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: Creating typing installer + +PolledWatches:: +/users/user/projects/node_modules: *new* + {"pollingInterval":500} +/users/user/projects/node_modules/@types: *new* + {"pollingInterval":500} +/users/user/projects/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/@types: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules/bar/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/package.json: *new* + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: *new* + {} +/users/user/projects/project1/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/users/user/projects/project1: *new* + {} +/users/user/projects/project1/node_modules: *new* + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 0 + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project1/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project1/node_modules/bar/index.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json + +TI:: [hh:mm:ss:mss] Global cache location '/home/src/Library/Caches/typescript', safe file path '/home/src/tslibs/TS/Lib/typingSafeList.json', types map path /home/src/tslibs/TS/Lib/typesMap.json +TI:: [hh:mm:ss:mss] Processing cache location '/home/src/Library/Caches/typescript' +TI:: [hh:mm:ss:mss] Trying to find '/home/src/Library/Caches/typescript/package.json'... +TI:: [hh:mm:ss:mss] Finished processing cache location '/home/src/Library/Caches/typescript' +TI:: [hh:mm:ss:mss] Npm config file: /home/src/Library/Caches/typescript/package.json +TI:: [hh:mm:ss:mss] Updating types-registry npm package... +TI:: [hh:mm:ss:mss] npm install --ignore-scripts types-registry@latest +TI:: [hh:mm:ss:mss] Updated types-registry npm package +TI:: typing installer creation complete + +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/users/user/projects/project1/app.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "unresolvedImports": [ + "bar" + ], + "projectRootPath": "/users/user/projects/project1", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project1/node_modules; all files: [] +TI:: [hh:mm:ss:mss] Found package names: [] +TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: ["bar"] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [ + "bar" + ], + "filesToWatch": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json", + "files": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Installing typings ["bar"] +TI:: [hh:mm:ss:mss] Npm config file: /home/src/Library/Caches/typescript/package.json +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "event::beginInstallTypes", + "eventId": 1, + "typingsInstallerVersion": "FakeVersion", + "projectName": "/users/user/projects/project1/jsconfig.json" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "beginInstallTypes", + "body": { + "eventId": 1 + } + } +TI:: [hh:mm:ss:mss] #1 with cwd: /home/src/Library/Caches/typescript arguments: [ + "@types/bar@tsFakeMajor.Minor" +] +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "a24ce251bb636300af6d4777b3f4b21687a6424baa3ae50af422af2a5b2dd7f0", + "fileStats": { + "js": 2, + "jsSize": 41, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 1, + "dtsSize": 413, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": true, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/app.js", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 1, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} + +FsWatchesRecursive:: +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} + +PendingInstalls callback:: count: 1 +1: #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 1 + projectProgramVersion: 1 *changed* + autoImportProviderHost: false *changed* + +Before request + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project2/app.js" + }, + "seq": 2, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project2/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project2/jsconfig.json, currentDirectory: /users/user/projects/project2 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project2/jsconfig.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project2/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project2/app.js", + "/users/user/projects/project2/app2.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project2/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2 1 undefined Config: /users/user/projects/project2/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2 1 undefined Config: /users/user/projects/project2/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project2/app2.js 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project2/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/project2/node_modules/bar/index.js', result '/users/user/projects/project2/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project2/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project2/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] ======== Resolving module 'foo' from '/users/user/projects/project2/app2.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'foo' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/foo.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/foo.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'foo' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/foo.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/foo.jsx' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] ======== Module name 'foo' was not resolved. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project2/jsconfig.json'. Running extra resolution pass for module 'foo' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] Found 'package.json' at '/home/src/Library/Caches/typescript/package.json'. +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project2/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/foo/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules/@types 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules/@types 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/project2/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project2/app.js SVC-1-0 "var x = require('bar');" + /home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts Text-1 "export const foo = 1;" + /users/user/projects/project2/app2.js Text-1 "var x = require('foo');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + Imported via 'foo' from file 'app2.js' + app2.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/users/user/projects/project2/app.js", + "/users/user/projects/project2/app2.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "unresolvedImports": [ + "bar" + ], + "projectRootPath": "/users/user/projects/project2", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project2/node_modules; all files: [] +TI:: [hh:mm:ss:mss] Found package names: [] +TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: ["bar"] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [ + "bar" + ], + "filesToWatch": [ + "/users/user/projects/project2/bower_components", + "/users/user/projects/project2/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project2/jsconfig.json", + "files": [ + "/users/user/projects/project2/bower_components", + "/users/user/projects/project2/node_modules" + ] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/bower_components 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/bower_components 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project2/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Installing typings ["bar"] +TI:: [hh:mm:ss:mss] Npm config file: /home/src/Library/Caches/typescript/package.json +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "event::beginInstallTypes", + "eventId": 2, + "typingsInstallerVersion": "FakeVersion", + "projectName": "/users/user/projects/project2/jsconfig.json" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "beginInstallTypes", + "body": { + "eventId": 2 + } + } +TI:: [hh:mm:ss:mss] #2 with cwd: /home/src/Library/Caches/typescript arguments: [ + "@types/bar@tsFakeMajor.Minor" +] +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "318b0b83fbc7be458819ec932b0b673d12709d07882bd4b96f96985c09b696c4", + "fileStats": { + "js": 3, + "jsSize": 64, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 2, + "dtsSize": 434, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": true, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project2/app.js", + "configFile": "/users/user/projects/project2/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 2, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/package.json: + {"pollingInterval":2000} +/users/user/projects/project2/bower_components: *new* + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: *new* + {"pollingInterval":500} +/users/user/projects/project2/node_modules/bar/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project2/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project2/package.json: *new* + {"pollingInterval":2000} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: *new* + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: *new* + {} +/users/user/projects/project2/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: *new* + {} +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} +/users/user/projects/project2: *new* + {} +/users/user/projects/project2/node_modules: *new* + {} + +PendingInstalls callback:: count: 2 +1: #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] +2: #2 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts *changed* + version: Text-1 + containingProjects: 2 *changed* + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json *new* +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project1/node_modules/bar/index.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project2/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project2/node_modules/bar/index.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json + +Before request + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project3/app.js" + }, + "seq": 3, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project3/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project3/jsconfig.json, currentDirectory: /users/user/projects/project3 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/jsconfig.json 2000 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project3/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project3/app.js", + "/users/user/projects/project3/app2.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project3/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project3/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project3/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3 1 undefined Config: /users/user/projects/project3/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3 1 undefined Config: /users/user/projects/project3/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/app2.js 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project3/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project3/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/project3/node_modules/bar/index.js', result '/users/user/projects/project3/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project3/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] ======== Resolving module 'foo' from '/users/user/projects/project3/app2.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'foo' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/foo.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/foo.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project3/node_modules/foo.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project3/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Resolution for module 'foo' was found in cache from location '/users/user/projects'. +Info seq [hh:mm:ss:mss] ======== Module name 'foo' was not resolved. ======== +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules/package.json 2000 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project3/package.json 2000 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules/@types 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project3/node_modules/@types 1 undefined Project: /users/user/projects/project3/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project3/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/project3/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project3/app.js SVC-1-0 "var x = require('bar');" + /users/user/projects/project3/app2.js Text-1 "var x = require('foo');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + app2.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project3/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "b03a661e323d76898c84af369d25377a0a5531270f5a2f1e243ca14104fd96c1", + "fileStats": { + "js": 3, + "jsSize": 64, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 1, + "dtsSize": 413, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project3/app.js", + "configFile": "/users/user/projects/project3/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 3, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/package.json: + {"pollingInterval":2000} +/users/user/projects/project2/bower_components: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project2/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project2/package.json: + {"pollingInterval":2000} +/users/user/projects/project3/node_modules/@types: *new* + {"pollingInterval":500} +/users/user/projects/project3/node_modules/bar/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project3/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project3/package.json: *new* + {"pollingInterval":2000} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: + {} +/users/user/projects/project2/jsconfig.json: + {} +/users/user/projects/project3/app2.js: *new* + {} +/users/user/projects/project3/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} +/users/user/projects/project2: + {} +/users/user/projects/project2/node_modules: + {} +/users/user/projects/project3: *new* + {} +/users/user/projects/project3/node_modules: *new* + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts *changed* + version: Text-1 + containingProjects: 3 *changed* + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json + /users/user/projects/project3/jsconfig.json *new* +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project1/node_modules/bar/index.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project2/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project2/node_modules/bar/index.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project3/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json *default* +/users/user/projects/project3/app2.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json +/users/user/projects/project3/node_modules/bar/index.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json + +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Before running Timeout callback:: count: 2 +1: /users/user/projects/project1/jsconfig.json +2: *ensureProjectForOpenFiles* +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false + } +} + + +Timeout callback:: count: 2 +1: /users/user/projects/project1/jsconfig.json *new* +2: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 2 *changed* + projectProgramVersion: 1 + dirty: true *changed* + autoImportProviderHost: undefined *changed* +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Change in config file detected" + } + } +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +TI:: [hh:mm:ss:mss] Closing file watchers for project '/users/user/projects/project1/jsconfig.json' +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json", + "files": [] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Closing file watchers for project '/users/user/projects/project1/jsconfig.json' - done. +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Resolution for module 'bar' was found in cache from location '/users/user/projects/project1'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project1/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/project1/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/jsconfig.json", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /users/user/projects/project1/app.js,/users/user/projects/project2/app.js,/users/user/projects/project3/app.js +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/users/user/projects/project1/app.js", + "/users/user/projects/project2/app.js", + "/users/user/projects/project3/app.js" + ] + } + } +After running Timeout callback:: count: 0 + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/package.json: + {"pollingInterval":2000} +/users/user/projects/project2/bower_components: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project2/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project2/package.json: + {"pollingInterval":2000} +/users/user/projects/project3/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project3/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project3/package.json: + {"pollingInterval":2000} + +PolledWatches *deleted*:: +/users/user/projects/project1/bower_components: + {"pollingInterval":500} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: + {} +/users/user/projects/project2/jsconfig.json: + {} +/users/user/projects/project3/app2.js: + {} +/users/user/projects/project3/jsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} +/users/user/projects/project2: + {} +/users/user/projects/project2/node_modules: + {} +/users/user/projects/project3: + {} +/users/user/projects/project3/node_modules: + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 2 + projectProgramVersion: 2 *changed* + dirty: false *changed* +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Before running PendingInstalls callback:: count: 2 +1: #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] +2: #2 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] + +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/@types/bar :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/@types/bar :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts :: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: Failed Lookup Locations +TI:: Installation #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] complete with success::true +//// [/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts] +export const x = 1; + + +Timeout callback:: count: 1 +4: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation *new* + +TI:: [hh:mm:ss:mss] Installed typings ["@types/bar@tsFakeMajor.Minor"] +TI:: [hh:mm:ss:mss] Installed typing files ["/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts"] +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [ + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts" + ], + "unresolvedImports": [ + "bar" + ], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [ + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts" + ], + "unresolvedImports": [ + "bar" + ], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "event::endInstallTypes", + "eventId": 1, + "projectName": "/users/user/projects/project1/jsconfig.json", + "packagesToInstall": [ + "@types/bar@tsFakeMajor.Minor" + ], + "installSuccess": true, + "typingsInstallerVersion": "FakeVersion" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "endInstallTypes", + "body": { + "eventId": 1, + "packages": [ + "@types/bar@tsFakeMajor.Minor" + ], + "success": true + } + } +TI:: Installation #2 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] complete with success::true + +TI:: [hh:mm:ss:mss] Installed typings ["@types/bar@tsFakeMajor.Minor"] +TI:: [hh:mm:ss:mss] Installed typing files ["/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts"] +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [ + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts" + ], + "unresolvedImports": [ + "bar" + ], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [ + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts" + ], + "unresolvedImports": [ + "bar" + ], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "event::endInstallTypes", + "eventId": 2, + "projectName": "/users/user/projects/project2/jsconfig.json", + "packagesToInstall": [ + "@types/bar@tsFakeMajor.Minor" + ], + "installSuccess": true, + "typingsInstallerVersion": "FakeVersion" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "endInstallTypes", + "body": { + "eventId": 2, + "packages": [ + "@types/bar@tsFakeMajor.Minor" + ], + "success": true + } + } +After running PendingInstalls callback:: count: 0 + +Timeout callback:: count: 3 +4: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +5: /users/user/projects/project2/jsconfig.json *new* +6: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 2 + projectProgramVersion: 2 +/users/user/projects/project2/jsconfig.json (Configured) *changed* + projectStateVersion: 2 *changed* + projectProgramVersion: 1 + dirty: true *changed* + autoImportProviderHost: false +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +Before running Timeout callback:: count: 3 +4: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +5: /users/user/projects/project2/jsconfig.json +6: *ensureProjectForOpenFiles* + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project2/jsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project2/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project2/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project2/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/project2/node_modules/bar/index.js', result '/users/user/projects/project2/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project2/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project2/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'foo' from '/users/user/projects/project2/app2.js' of old program, it was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/bar/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project2/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project2/node_modules/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project2/package.json 2000 undefined Project: /users/user/projects/project2/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project2/app.js SVC-1-0 "var x = require('bar');" + /home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts Text-1 "export const foo = 1;" + /users/user/projects/project2/app2.js Text-1 "var x = require('foo');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts + Imported via 'bar' from file 'app.js' + Matched by default include pattern '**/*' + app.js + Matched by default include pattern '**/*' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + Imported via 'foo' from file 'app2.js' + app2.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts", + "/users/user/projects/project2/app.js", + "/users/user/projects/project2/app2.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "projectRootPath": "/users/user/projects/project2", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project2/node_modules; all files: [] +TI:: [hh:mm:ss:mss] Found package names: [] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [], + "filesToWatch": [ + "/users/user/projects/project2/bower_components", + "/users/user/projects/project2/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project2/jsconfig.json" + } +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project2/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project2/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] No new typings were requested as a result of typings discovery +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Reusing resolution of module 'bar' from '/users/user/projects/project2/app.js' of old program, it was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Reusing resolution of module 'foo' from '/users/user/projects/project2/app2.js' of old program, it was successfully resolved to '/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project2/jsconfig.json projectStateVersion: 3 projectProgramVersion: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project2/app.js SVC-1-0 "var x = require('bar');" + /home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts Text-1 "export const foo = 1;" + /users/user/projects/project2/app2.js Text-1 "var x = require('foo');" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +After running Timeout callback:: count: 2 + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/package.json: + {"pollingInterval":2000} +/users/user/projects/project2/bower_components: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project3/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project3/package.json: + {"pollingInterval":2000} + +PolledWatches *deleted*:: +/users/user/projects/project2/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project2/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project2/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: + {} +/users/user/projects/project2/jsconfig.json: + {} +/users/user/projects/project3/app2.js: + {} +/users/user/projects/project3/jsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} +/users/user/projects/project2: + {} +/users/user/projects/project2/node_modules: + {} +/users/user/projects/project3: + {} +/users/user/projects/project3/node_modules: + {} + +Timeout callback:: count: 2 +6: *ensureProjectForOpenFiles* *deleted* +7: /users/user/projects/project2/jsconfig.json *new* +8: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) + projectStateVersion: 2 + projectProgramVersion: 2 +/users/user/projects/project2/jsconfig.json (Configured) *changed* + projectStateVersion: 3 *changed* + projectProgramVersion: 3 *changed* + dirty: false *changed* + autoImportProviderHost: undefined *changed* +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 3 + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json + /users/user/projects/project3/jsconfig.json +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project1/node_modules/bar/index.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project2/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project2/node_modules/bar/index.js *changed* + version: Text-1 + containingProjects: 0 *changed* + /users/user/projects/project2/jsconfig.json *deleted* +/users/user/projects/project3/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json *default* +/users/user/projects/project3/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json +/users/user/projects/project3/node_modules/bar/index.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json + +Before running Timeout callback:: count: 2 +7: /users/user/projects/project2/jsconfig.json +8: *ensureProjectForOpenFiles* + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /users/user/projects/project1/app.js,/users/user/projects/project2/app.js,/users/user/projects/project3/app.js +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/users/user/projects/project1/app.js", + "/users/user/projects/project2/app.js", + "/users/user/projects/project3/app.js" + ] + } + } +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Before running Timeout callback:: count: 2 +9: /users/user/projects/project1/jsconfig.json +10: *ensureProjectForOpenFiles* +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + } +} + + +Timeout callback:: count: 2 +9: /users/user/projects/project1/jsconfig.json *new* +10: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 3 *changed* + projectProgramVersion: 2 + dirty: true *changed* +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 3 + projectProgramVersion: 3 +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Change in config file detected" + } + } +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Resolution for module 'bar' was found in cache from location '/users/user/projects/project1'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project1/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project1/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/package.json' exists according to earlier cached lookups. +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project1/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 3 projectProgramVersion: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/users/user/projects/project1/app.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "projectRootPath": "/users/user/projects/project1", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project1/node_modules; all files: [] +TI:: [hh:mm:ss:mss] Found package names: [] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [], + "filesToWatch": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json", + "files": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] No new typings were requested as a result of typings discovery +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/jsconfig.json", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project2/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (5) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project3/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (4) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project2/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project2/jsconfig.json +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project3/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project3/jsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /users/user/projects/project1/app.js,/users/user/projects/project2/app.js,/users/user/projects/project3/app.js +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/users/user/projects/project1/app.js", + "/users/user/projects/project2/app.js", + "/users/user/projects/project3/app.js" + ] + } + } +After running Timeout callback:: count: 0 + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/foo/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project2/bower_components: + {"pollingInterval":500} +/users/user/projects/project2/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project3/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project3/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project3/package.json: + {"pollingInterval":2000} + +PolledWatches *deleted*:: +/users/user/projects/project1/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} +/users/user/projects/project2/app2.js: + {} +/users/user/projects/project2/jsconfig.json: + {} +/users/user/projects/project3/app2.js: + {} +/users/user/projects/project3/jsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: + {} +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} +/users/user/projects/project2: + {} +/users/user/projects/project2/node_modules: + {} +/users/user/projects/project3: + {} +/users/user/projects/project3/node_modules: + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 3 + projectProgramVersion: 3 *changed* + dirty: false *changed* +/users/user/projects/project2/jsconfig.json (Configured) + projectStateVersion: 3 + projectProgramVersion: 3 +/users/user/projects/project3/jsconfig.json (Configured) + projectStateVersion: 1 + projectProgramVersion: 1 + autoImportProviderHost: false + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts *changed* + version: Text-1 + containingProjects: 2 *changed* + /users/user/projects/project2/jsconfig.json + /users/user/projects/project1/jsconfig.json *new* +/home/src/Library/Caches/typescript/node_modules/@types/foo/index.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 3 + /users/user/projects/project1/jsconfig.json + /users/user/projects/project2/jsconfig.json + /users/user/projects/project3/jsconfig.json +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project1/node_modules/bar/index.js *changed* + version: Text-1 + containingProjects: 0 *changed* + /users/user/projects/project1/jsconfig.json *deleted* +/users/user/projects/project2/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json *default* +/users/user/projects/project2/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project2/jsconfig.json +/users/user/projects/project2/node_modules/bar/index.js + version: Text-1 + containingProjects: 0 +/users/user/projects/project3/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json *default* +/users/user/projects/project3/app2.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json +/users/user/projects/project3/node_modules/bar/index.js + version: Text-1 + containingProjects: 1 + /users/user/projects/project3/jsconfig.json + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 diff --git a/tests/baselines/reference/tsserver/typeAquisition/receives-update-of-typings-after-project-changes.js b/tests/baselines/reference/tsserver/typeAquisition/receives-update-of-typings-after-project-changes.js new file mode 100644 index 0000000000000..5786019693374 --- /dev/null +++ b/tests/baselines/reference/tsserver/typeAquisition/receives-update-of-typings-after-project-changes.js @@ -0,0 +1,1045 @@ +Info seq [hh:mm:ss:mss] currentDirectory:: /home/src/Vscode/Projects/bin useCaseSensitiveFileNames:: false +Info seq [hh:mm:ss:mss] libs Location:: /home/src/tslibs/TS/Lib +Info seq [hh:mm:ss:mss] globalTypingsCacheLocation:: /home/src/Library/Caches/typescript +Info seq [hh:mm:ss:mss] Provided types map file "/home/src/tslibs/TS/Lib/typesMap.json" doesn't exist +Before request +//// [/users/user/projects/project1/app.js] +var x = require('bar'); + +//// [/users/user/projects/project1/node_modules/bar/index.js] +export const x = 1 + +//// [/home/src/tslibs/TS/Lib/lib.d.ts] +/// +interface Boolean {} +interface Function {} +interface CallableFunction {} +interface NewableFunction {} +interface IArguments {} +interface Number { toExponential: any; } +interface Object {} +interface RegExp {} +interface String { charAt: any; } +interface Array { length: number; [n: number]: T; } +interface ReadonlyArray {} +declare const console: { log(msg: any): void; }; + +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + } +} + + +Info seq [hh:mm:ss:mss] request: + { + "command": "open", + "arguments": { + "file": "/users/user/projects/project1/app.js" + }, + "seq": 1, + "type": "request" + } +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Creating ConfiguredProject: /users/user/projects/project1/jsconfig.json, currentDirectory: /users/user/projects/project1 +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Creating possible configured project for /users/user/projects/project1/app.js to open" + } + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1 1 undefined Config: /users/user/projects/project1/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1 1 undefined Config: /users/user/projects/project1/jsconfig.json WatchType: Wild card directory +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Module resolution kind is not specified, using 'Node10'. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.tsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.d.ts' does not exist. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/project1/node_modules/@types' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/projects/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/user/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/users/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Directory '/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] Loading module 'bar' from 'node_modules' folder, target file types: JavaScript. +Info seq [hh:mm:ss:mss] Searching all ancestor node_modules directories for fallback extensions: JavaScript. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.js' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar.jsx' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/index.js' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] Resolving real path for '/users/user/projects/project1/node_modules/bar/index.js', result '/users/user/projects/project1/node_modules/bar/index.js'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project1/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project1/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] Directory '/home/src/Library/Caches/typescript/node_modules' does not exist, skipping all lookups in it. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/project1/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/user/projects/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/node_modules/@types 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/project1/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + node_modules/bar/index.js + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: Creating typing installer + +PolledWatches:: +/users/user/projects/node_modules: *new* + {"pollingInterval":500} +/users/user/projects/node_modules/@types: *new* + {"pollingInterval":500} +/users/user/projects/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/@types: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules/bar/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/project1/package.json: *new* + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: *new* + {} +/users/user/projects/project1/jsconfig.json: *new* + {} + +FsWatchesRecursive:: +/users/user/projects/project1: *new* + {} +/users/user/projects/project1/node_modules: *new* + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *new* + projectStateVersion: 1 + projectProgramVersion: 0 + +ScriptInfos:: +/home/src/tslibs/TS/Lib/lib.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project1/app.js (Open) *new* + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project1/node_modules/bar/index.js *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json + +TI:: [hh:mm:ss:mss] Global cache location '/home/src/Library/Caches/typescript', safe file path '/home/src/tslibs/TS/Lib/typingSafeList.json', types map path /home/src/tslibs/TS/Lib/typesMap.json +TI:: [hh:mm:ss:mss] Processing cache location '/home/src/Library/Caches/typescript' +TI:: [hh:mm:ss:mss] Trying to find '/home/src/Library/Caches/typescript/package.json'... +TI:: [hh:mm:ss:mss] Finished processing cache location '/home/src/Library/Caches/typescript' +TI:: [hh:mm:ss:mss] Npm config file: /home/src/Library/Caches/typescript/package.json +TI:: [hh:mm:ss:mss] Npm config file: '/home/src/Library/Caches/typescript/package.json' is missing, creating new one... +TI:: [hh:mm:ss:mss] Updating types-registry npm package... +TI:: [hh:mm:ss:mss] npm install --ignore-scripts types-registry@latest +TI:: [hh:mm:ss:mss] Updated types-registry npm package +TI:: typing installer creation complete +//// [/home/src/Library/Caches/typescript/package.json] +{ "private": true } + +//// [/home/src/Library/Caches/typescript/node_modules/types-registry/index.json] +{ + "entries": { + "bar": { + "latest": "1.3.0", + "ts2.0": "1.0.0", + "ts2.1": "1.0.0", + "ts2.2": "1.2.0", + "ts2.3": "1.3.0", + "ts2.4": "1.3.0", + "ts2.5": "1.3.0", + "ts2.6": "1.3.0", + "ts2.7": "1.3.0" + } + } +} + + +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/users/user/projects/project1/app.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "unresolvedImports": [ + "bar" + ], + "projectRootPath": "/users/user/projects/project1", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project1/node_modules; all files: [] +TI:: [hh:mm:ss:mss] Found package names: [] +TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: ["bar"] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [ + "bar" + ], + "filesToWatch": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json", + "files": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Installing typings ["bar"] +TI:: [hh:mm:ss:mss] Npm config file: /home/src/Library/Caches/typescript/package.json +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "event::beginInstallTypes", + "eventId": 1, + "typingsInstallerVersion": "FakeVersion", + "projectName": "/users/user/projects/project1/jsconfig.json" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "beginInstallTypes", + "body": { + "eventId": 1 + } + } +TI:: [hh:mm:ss:mss] #1 with cwd: /home/src/Library/Caches/typescript arguments: [ + "@types/bar@tsFakeMajor.Minor" +] +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "telemetry", + "body": { + "telemetryEventName": "projectInfo", + "payload": { + "projectId": "a24ce251bb636300af6d4777b3f4b21687a6424baa3ae50af422af2a5b2dd7f0", + "fileStats": { + "js": 2, + "jsSize": 41, + "jsx": 0, + "jsxSize": 0, + "ts": 0, + "tsSize": 0, + "tsx": 0, + "tsxSize": 0, + "dts": 1, + "dtsSize": 413, + "deferred": 0, + "deferredSize": 0 + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": true, + "include": false, + "exclude": false + }, + "extends": false, + "files": false, + "include": false, + "exclude": false, + "compileOnSave": false, + "configFileName": "jsconfig.json", + "projectType": "configured", + "languageServiceEnabled": true, + "version": "FakeVersion" + } + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/app.js", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] response: + { + "seq": 0, + "type": "response", + "command": "open", + "request_seq": 1, + "success": true, + "performanceData": { + "updateGraphDurationMs": * + } + } +After request + +PolledWatches:: +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/bower_components: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} + +FsWatchesRecursive:: +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} + +PendingInstalls callback:: count: 1 +1: #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 1 + projectProgramVersion: 1 *changed* + autoImportProviderHost: false *changed* + +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Before running Timeout callback:: count: 2 +1: /users/user/projects/project1/jsconfig.json +2: *ensureProjectForOpenFiles* +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + }, + "typeAcquisition": { + "enable": false + } +} + + +Timeout callback:: count: 2 +1: /users/user/projects/project1/jsconfig.json *new* +2: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 2 *changed* + projectProgramVersion: 1 + dirty: true *changed* + autoImportProviderHost: undefined *changed* + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Change in config file detected" + } + } +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +TI:: [hh:mm:ss:mss] Closing file watchers for project '/users/user/projects/project1/jsconfig.json' +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json", + "files": [] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Closing file watchers for project '/users/user/projects/project1/jsconfig.json' - done. +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Resolution for module 'bar' was found in cache from location '/users/user/projects/project1'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project1/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /users/user/projects/project1/node_modules/bar/index.js Text-1 "export const x = 1" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/jsconfig.json", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /users/user/projects/project1/app.js +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/users/user/projects/project1/app.js" + ] + } + } +After running Timeout callback:: count: 0 + +PolledWatches:: +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/package.json: + {"pollingInterval":2000} + +PolledWatches *deleted*:: +/users/user/projects/project1/bower_components: + {"pollingInterval":500} + +FsWatches:: +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} + +FsWatchesRecursive:: +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 2 + projectProgramVersion: 2 *changed* + dirty: false *changed* + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Before running PendingInstalls callback:: count: 1 +1: #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] + +TI:: Installation #1 with arguments:: [ + "@types/bar@tsFakeMajor.Minor" +] complete with success::true +//// [/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts] +export const x = 1; + + +TI:: [hh:mm:ss:mss] Installed typings ["@types/bar@tsFakeMajor.Minor"] +TI:: [hh:mm:ss:mss] Installed typing files ["/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts"] +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [ + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts" + ], + "unresolvedImports": [ + "bar" + ], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [ + "/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts" + ], + "unresolvedImports": [ + "bar" + ], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "event::endInstallTypes", + "eventId": 1, + "projectName": "/users/user/projects/project1/jsconfig.json", + "packagesToInstall": [ + "@types/bar@tsFakeMajor.Minor" + ], + "installSuccess": true, + "typingsInstallerVersion": "FakeVersion" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "endInstallTypes", + "body": { + "eventId": 1, + "packages": [ + "@types/bar@tsFakeMajor.Minor" + ], + "success": true + } + } +After running PendingInstalls callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Info seq [hh:mm:ss:mss] Scheduled: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] getConfigFileNameForFile:: File: /users/user/projects/project1/app.js ProjectRootPath: undefined:: Result: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Elapsed:: *ms FileWatcher:: Triggered with /users/user/projects/project1/jsconfig.json 1:: WatchInfo: /users/user/projects/project1/jsconfig.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Config file +Before running Timeout callback:: count: 2 +3: /users/user/projects/project1/jsconfig.json +4: *ensureProjectForOpenFiles* +//// [/users/user/projects/project1/jsconfig.json] +{ + "compilerOptions": { + "allowJs": true, + "traceResolution": true + } +} + + +Timeout callback:: count: 2 +3: /users/user/projects/project1/jsconfig.json *new* +4: *ensureProjectForOpenFiles* *new* + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 3 *changed* + projectProgramVersion: 2 + dirty: true *changed* + +Info seq [hh:mm:ss:mss] Running: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingStart", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "reason": "Change in config file detected" + } + } +Info seq [hh:mm:ss:mss] Config: /users/user/projects/project1/jsconfig.json : { + "rootNames": [ + "/users/user/projects/project1/app.js" + ], + "options": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json" + } +} +Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/node_modules/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/project1/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/projects/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/user/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/users/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] ======== Resolving module 'bar' from '/users/user/projects/project1/app.js'. ======== +Info seq [hh:mm:ss:mss] Resolution for module 'bar' was found in cache from location '/users/user/projects/project1'. +Info seq [hh:mm:ss:mss] ======== Module name 'bar' was successfully resolved to '/users/user/projects/project1/node_modules/bar/index.js'. ======== +Info seq [hh:mm:ss:mss] Auto discovery for typings is enabled in project '/users/user/projects/project1/jsconfig.json'. Running extra resolution pass for module 'bar' using cache location '/home/src/Library/Caches/typescript'. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar.d.ts' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts' exists - use it as a name resolution result. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json' does not exist according to earlier cached lookups. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/@types/package.json' does not exist. +Info seq [hh:mm:ss:mss] File '/home/src/Library/Caches/typescript/node_modules/package.json' does not exist. +Info seq [hh:mm:ss:mss] Found 'package.json' at '/home/src/Library/Caches/typescript/package.json'. +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules/bar/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project1/node_modules/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/project1/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /users/user/projects/package.json 2000 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /users/user/projects/project1/jsconfig.json projectStateVersion: 3 projectProgramVersion: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" + /home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts Text-1 "export const x = 1;" + /users/user/projects/project1/app.js SVC-1-0 "var x = require('bar');" + + + ../../../../home/src/tslibs/TS/Lib/lib.d.ts + Default library for target 'es5' + ../../../../home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts + Imported via 'bar' from file 'app.js' + app.js + Matched by default include pattern '**/*' + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +TI:: [hh:mm:ss:mss] Got install request + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "fileNames": [ + "/home/src/tslibs/TS/Lib/lib.d.ts", + "/users/user/projects/project1/app.js" + ], + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "projectRootPath": "/users/user/projects/project1", + "kind": "discover" + } +TI:: [hh:mm:ss:mss] Explicitly included types: [] +TI:: [hh:mm:ss:mss] Searching for typing names in /users/user/projects/project1/node_modules; all files: [] +TI:: [hh:mm:ss:mss] Found package names: [] +TI:: [hh:mm:ss:mss] Finished typings discovery: + { + "cachedTypingPaths": [], + "newTypingNames": [], + "filesToWatch": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +TI:: [hh:mm:ss:mss] Sending response: + { + "kind": "action::watchTypingLocations", + "projectName": "/users/user/projects/project1/jsconfig.json", + "files": [ + "/users/user/projects/project1/bower_components", + "/users/user/projects/project1/node_modules" + ] + } +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/bower_components 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/user/projects/project1/node_modules 1 undefined Project: /users/user/projects/project1/jsconfig.json WatchType: Directory location for typing installer +TI:: [hh:mm:ss:mss] Sending response: + { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "setTypings", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json", + "typeAcquisition": { + "enable": true, + "include": [], + "exclude": [] + }, + "compilerOptions": { + "allowJs": true, + "maxNodeModuleJsDepth": 2, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "noEmit": true, + "traceResolution": true, + "configFilePath": "/users/user/projects/project1/jsconfig.json", + "allowNonTsExtensions": true + }, + "typings": [], + "kind": "action::set" + } + } +TI:: [hh:mm:ss:mss] No new typings were requested as a result of typings discovery +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectLoadingFinish", + "body": { + "projectName": "/users/user/projects/project1/jsconfig.json" + } + } +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "configFileDiag", + "body": { + "triggerFile": "/users/user/projects/project1/jsconfig.json", + "configFile": "/users/user/projects/project1/jsconfig.json", + "diagnostics": [] + } + } +Info seq [hh:mm:ss:mss] Running: *ensureProjectForOpenFiles* +Info seq [hh:mm:ss:mss] Before ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] After ensureProjectForOpenFiles: +Info seq [hh:mm:ss:mss] Project '/users/user/projects/project1/jsconfig.json' (Configured) +Info seq [hh:mm:ss:mss] Files (3) + +Info seq [hh:mm:ss:mss] ----------------------------------------------- +Info seq [hh:mm:ss:mss] Open files: +Info seq [hh:mm:ss:mss] FileName: /users/user/projects/project1/app.js ProjectRootPath: undefined +Info seq [hh:mm:ss:mss] Projects: /users/user/projects/project1/jsconfig.json +Info seq [hh:mm:ss:mss] got projects updated in background /users/user/projects/project1/app.js +Info seq [hh:mm:ss:mss] event: + { + "seq": 0, + "type": "event", + "event": "projectsUpdatedInBackground", + "body": { + "openFiles": [ + "/users/user/projects/project1/app.js" + ] + } + } +After running Timeout callback:: count: 0 + +PolledWatches:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/@types/package.json: *new* + {"pollingInterval":2000} +/home/src/Library/Caches/typescript/node_modules/package.json: *new* + {"pollingInterval":2000} +/users/user/projects/node_modules: + {"pollingInterval":500} +/users/user/projects/node_modules/@types: + {"pollingInterval":500} +/users/user/projects/project1/bower_components: *new* + {"pollingInterval":500} +/users/user/projects/project1/node_modules/@types: + {"pollingInterval":500} + +PolledWatches *deleted*:: +/users/user/projects/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/bar/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/node_modules/package.json: + {"pollingInterval":2000} +/users/user/projects/project1/package.json: + {"pollingInterval":2000} + +FsWatches:: +/home/src/Library/Caches/typescript/package.json: *new* + {} +/home/src/tslibs/TS/Lib/lib.d.ts: + {} +/users/user/projects/project1/jsconfig.json: + {} + +FsWatchesRecursive:: +/home/src/Library/Caches/typescript/node_modules: *new* + {} +/users/user/projects/project1: + {} +/users/user/projects/project1/node_modules: + {} + +Projects:: +/users/user/projects/project1/jsconfig.json (Configured) *changed* + projectStateVersion: 3 + projectProgramVersion: 3 *changed* + dirty: false *changed* + +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/@types/bar/index.d.ts *new* + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json +/users/user/projects/project1/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /users/user/projects/project1/jsconfig.json *default* +/users/user/projects/project1/node_modules/bar/index.js *changed* + version: Text-1 + containingProjects: 0 *changed* + /users/user/projects/project1/jsconfig.json *deleted* + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 + +Before running Timeout callback:: count: 0 + +After running Timeout callback:: count: 0 diff --git a/tests/baselines/reference/tsserver/typingsInstaller/cached-unresolved-typings-are-not-recomputed-if-program-structure-did-not-change.js b/tests/baselines/reference/tsserver/typingsInstaller/cached-unresolved-typings-are-not-recomputed-if-program-structure-did-not-change.js index a2d2a1e488ec9..d609b3e04f9cc 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/cached-unresolved-typings-are-not-recomputed-if-program-structure-did-not-change.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/cached-unresolved-typings-are-not-recomputed-if-program-structure-did-not-change.js @@ -34,11 +34,11 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/typingsInstaller/configured-projects-discover-from-bower_components.js b/tests/baselines/reference/tsserver/typingsInstaller/configured-projects-discover-from-bower_components.js index dd192abf97c9d..1f2a29f8e18ad 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/configured-projects-discover-from-bower_components.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/configured-projects-discover-from-bower_components.js @@ -174,7 +174,6 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } @@ -182,7 +181,6 @@ TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslib TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Searching for typing names in /user/username/projects/project/bower_components; all files: ["/user/username/projects/project/bower_components/jquery/bower.json"] TI:: [hh:mm:ss:mss] Found package names: ["jquery"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -380,7 +378,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/project/jsconfig.json @@ -409,7 +406,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -498,14 +494,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Searching for typing names in /user/username/projects/project/bower_components; all files: ["/user/username/projects/project/bower_components/jquery/bower.json"] TI:: [hh:mm:ss:mss] Found package names: ["jquery"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [ @@ -542,7 +536,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -569,7 +562,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/configured-projects.js b/tests/baselines/reference/tsserver/typingsInstaller/configured-projects.js index 0d47258c726bc..122ef0645acb5 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/configured-projects.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/configured-projects.js @@ -196,14 +196,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/package.json' dependencies: ["jquery"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -403,7 +401,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/project/tsconfig.json @@ -428,7 +425,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -512,13 +508,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/package.json' dependencies: ["jquery"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [ @@ -552,7 +546,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -575,7 +568,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/discover-from-bower.js b/tests/baselines/reference/tsserver/typingsInstaller/discover-from-bower.js index a708f3e5b4203..d4954eac4cc6b 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/discover-from-bower.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/discover-from-bower.js @@ -173,14 +173,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/bower.json' dependencies: ["jquery"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -383,7 +381,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/project/jsconfig.json @@ -412,7 +409,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -501,13 +497,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/bower.json' dependencies: ["jquery"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [ @@ -545,7 +539,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -572,7 +565,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules-empty-types-has-import.js b/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules-empty-types-has-import.js index 3b291952b6b9a..649b2a3ed6cbe 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules-empty-types-has-import.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules-empty-types-has-import.js @@ -96,14 +96,14 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project 1 undefined Config: /user/username/projects/project/jsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project 1 undefined Config: /user/username/projects/project/jsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/project/jsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules 1 undefined Project: /user/username/projects/project/jsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules 1 undefined Project: /user/username/projects/project/jsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /user/username/projects/project/jsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /user/username/projects/project/jsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/jquery/package.json 2000 undefined Project: /user/username/projects/project/jsconfig.json WatchType: File location affecting resolution +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/project/jsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/project/jsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (3) @@ -556,12 +556,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -589,7 +587,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/project/jsconfig.json @@ -617,7 +614,6 @@ Info seq [hh:mm:ss:mss] event: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -629,102 +625,8 @@ Info seq [hh:mm:ss:mss] Files (3) /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" /home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts Text-1 "" /user/username/projects/project/app.js SVC-1-0 "import \"jquery\";" - - - ../../../../home/src/tslibs/TS/Lib/lib.d.ts - Default library for target 'es5' - ../../../../home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts - Imported via "jquery" from file 'app.js' - app.js - Matched by default include pattern '**/*' Info seq [hh:mm:ss:mss] ----------------------------------------------- -TI:: [hh:mm:ss:mss] Got install request - { - "projectName": "/user/username/projects/project/jsconfig.json", - "fileNames": [ - "/home/src/tslibs/TS/Lib/lib.d.ts", - "/user/username/projects/project/app.js" - ], - "compilerOptions": { - "allowJs": true, - "maxNodeModuleJsDepth": 2, - "allowSyntheticDefaultImports": true, - "skipLibCheck": true, - "noEmit": true, - "types": [], - "configFilePath": "/user/username/projects/project/jsconfig.json", - "allowNonTsExtensions": true - }, - "typeAcquisition": { - "enable": true, - "include": [], - "exclude": [] - }, - "unresolvedImports": [], - "projectRootPath": "/user/username/projects/project", - "kind": "discover" - } -TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] -TI:: [hh:mm:ss:mss] Finished typings discovery: - { - "cachedTypingPaths": [], - "newTypingNames": [], - "filesToWatch": [] - } -TI:: [hh:mm:ss:mss] Closing file watchers for project '/user/username/projects/project/jsconfig.json' -TI:: [hh:mm:ss:mss] No watchers are registered for project '/user/username/projects/project/jsconfig.json' -TI:: [hh:mm:ss:mss] Sending response: - { - "projectName": "/user/username/projects/project/jsconfig.json", - "typeAcquisition": { - "enable": true, - "include": [], - "exclude": [] - }, - "compilerOptions": { - "allowJs": true, - "maxNodeModuleJsDepth": 2, - "allowSyntheticDefaultImports": true, - "skipLibCheck": true, - "noEmit": true, - "types": [], - "configFilePath": "/user/username/projects/project/jsconfig.json", - "allowNonTsExtensions": true - }, - "typings": [], - "unresolvedImports": [], - "kind": "action::set" - } -Info seq [hh:mm:ss:mss] event: - { - "seq": 0, - "type": "event", - "event": "setTypings", - "body": { - "projectName": "/user/username/projects/project/jsconfig.json", - "typeAcquisition": { - "enable": true, - "include": [], - "exclude": [] - }, - "compilerOptions": { - "allowJs": true, - "maxNodeModuleJsDepth": 2, - "allowSyntheticDefaultImports": true, - "skipLibCheck": true, - "noEmit": true, - "types": [], - "configFilePath": "/user/username/projects/project/jsconfig.json", - "allowNonTsExtensions": true - }, - "typings": [], - "unresolvedImports": [], - "kind": "action::set" - } - } -TI:: [hh:mm:ss:mss] No new typings were requested as a result of typings discovery After running Timeout callback:: count: 2 PolledWatches:: diff --git a/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules-empty-types.js b/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules-empty-types.js index b500cda94eaa5..06b657abf39de 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules-empty-types.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules-empty-types.js @@ -212,13 +212,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -246,7 +244,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -272,7 +269,6 @@ Info seq [hh:mm:ss:mss] event: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules-explicit-types.js b/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules-explicit-types.js index 38fa11bd62bed..540de94f09310 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules-explicit-types.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules-explicit-types.js @@ -231,13 +231,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -267,7 +265,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -295,7 +292,6 @@ Info seq [hh:mm:ss:mss] event: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -306,7 +302,6 @@ Info seq [hh:mm:ss:mss] Creating AutoImportProviderProject: /dev/null/autoImpor Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/autoImportProviderProject1* -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/jquery/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/autoImportProviderProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider) Info seq [hh:mm:ss:mss] Files (1) diff --git a/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules.js b/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules.js index b38cb198eea30..ae5bdf210dfcf 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/discover-from-node_modules.js @@ -216,7 +216,6 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } @@ -225,7 +224,6 @@ TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/package.json' dependencies: ["jquery"] TI:: [hh:mm:ss:mss] Searching for typing names in /user/username/projects/project/node_modules; all files: ["/user/username/projects/project/node_modules/jquery/package.json"] TI:: [hh:mm:ss:mss] Found package names: ["jquery"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -469,7 +467,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/project/jsconfig.json @@ -498,7 +495,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -594,7 +590,6 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } @@ -602,7 +597,6 @@ TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/package.json' dependencies: ["jquery"] TI:: [hh:mm:ss:mss] Searching for typing names in /user/username/projects/project/node_modules; all files: ["/user/username/projects/project/node_modules/jquery/package.json"] TI:: [hh:mm:ss:mss] Found package names: ["jquery"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [ @@ -640,7 +634,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -667,7 +660,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/expired-cache-entry.js b/tests/baselines/reference/tsserver/typingsInstaller/expired-cache-entry.js index d8e9eb35ba958..96211b38ea7b5 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/expired-cache-entry.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/expired-cache-entry.js @@ -184,14 +184,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: ["jquery"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -335,7 +333,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /dev/null/inferredProject1* @@ -363,7 +360,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -451,13 +447,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: ["jquery"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [ @@ -496,7 +490,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -522,7 +515,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/external-projects-autoDiscovery.js b/tests/baselines/reference/tsserver/typingsInstaller/external-projects-autoDiscovery.js index a92792f07d434..a205e12b3c22f 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/external-projects-autoDiscovery.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/external-projects-autoDiscovery.js @@ -142,13 +142,11 @@ TI:: [hh:mm:ss:mss] Got install request ], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: ["jquery"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -303,7 +301,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/app/test.csproj @@ -328,7 +325,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/external-projects-duplicate-package.js b/tests/baselines/reference/tsserver/typingsInstaller/external-projects-duplicate-package.js index cac56424035c7..0ee66c1ccc1cd 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/external-projects-duplicate-package.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/external-projects-duplicate-package.js @@ -189,13 +189,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project/a/app", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -239,7 +237,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -259,7 +256,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/external-projects-no-type-acquisition.js b/tests/baselines/reference/tsserver/typingsInstaller/external-projects-no-type-acquisition.js index 7fe5747b49bc4..8a0ab3d056e8d 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/external-projects-no-type-acquisition.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/external-projects-no-type-acquisition.js @@ -203,7 +203,6 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } @@ -211,7 +210,6 @@ TI:: [hh:mm:ss:mss] Loaded safelist from types map file '/home/src/tslibs/TS/Lib TI:: [hh:mm:ss:mss] Explicitly included types: ["lodash"] TI:: [hh:mm:ss:mss] Inferred typings from file names: ["lodash"] TI:: [hh:mm:ss:mss] Inferred 'react' typings due to presence of '.jsx' extension -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -394,7 +392,6 @@ TI:: [hh:mm:ss:mss] Sending response: "/home/src/Library/Caches/typescript/node_modules/@types/lodash/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/react/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/app/test.csproj @@ -422,7 +419,6 @@ Info seq [hh:mm:ss:mss] event: "/home/src/Library/Caches/typescript/node_modules/@types/lodash/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/react/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -519,14 +515,12 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: ["lodash"] TI:: [hh:mm:ss:mss] Inferred typings from file names: ["lodash"] TI:: [hh:mm:ss:mss] Inferred 'react' typings due to presence of '.jsx' extension -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [ @@ -566,7 +560,6 @@ TI:: [hh:mm:ss:mss] Sending response: "/home/src/Library/Caches/typescript/node_modules/@types/lodash/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/react/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -593,7 +586,6 @@ Info seq [hh:mm:ss:mss] event: "/home/src/Library/Caches/typescript/node_modules/@types/lodash/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/react/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/external-projects-type-acquisition-with-disableFilenameBasedTypeAcquisition.js b/tests/baselines/reference/tsserver/typingsInstaller/external-projects-type-acquisition-with-disableFilenameBasedTypeAcquisition.js index ce079830eb220..2e1e415200c9e 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/external-projects-type-acquisition-with-disableFilenameBasedTypeAcquisition.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/external-projects-type-acquisition-with-disableFilenameBasedTypeAcquisition.js @@ -144,13 +144,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -197,7 +195,6 @@ TI:: [hh:mm:ss:mss] Sending response: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -220,7 +217,6 @@ Info seq [hh:mm:ss:mss] event: "noEmitForJsFiles": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/external-projects-type-acquisition.js b/tests/baselines/reference/tsserver/typingsInstaller/external-projects-type-acquisition.js index 4d2e1258d992b..9bc4189a5848a 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/external-projects-type-acquisition.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/external-projects-type-acquisition.js @@ -238,7 +238,6 @@ TI:: [hh:mm:ss:mss] Got install request "lodash" ] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } @@ -246,7 +245,6 @@ TI:: [hh:mm:ss:mss] Loaded safelist from types map file '/home/src/tslibs/TS/Lib TI:: [hh:mm:ss:mss] Explicitly included types: ["jquery","moment","lodash","commander"] TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/package.json' dependencies: ["express"] TI:: [hh:mm:ss:mss] Inferred typings from file names: ["lodash","commander"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Typing for lodash is in exclude list, will be ignored. TI:: [hh:mm:ss:mss] Finished typings discovery: { @@ -456,7 +454,6 @@ TI:: [hh:mm:ss:mss] Sending response: "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/express/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/app/test.csproj @@ -491,7 +488,6 @@ Info seq [hh:mm:ss:mss] event: "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/express/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -604,14 +600,12 @@ TI:: [hh:mm:ss:mss] Got install request "lodash" ] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: ["jquery","moment","lodash","commander"] TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/package.json' dependencies: ["express"] TI:: [hh:mm:ss:mss] Inferred typings from file names: ["lodash","commander"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Typing for lodash is in exclude list, will be ignored. TI:: [hh:mm:ss:mss] Finished typings discovery: { @@ -662,7 +656,6 @@ TI:: [hh:mm:ss:mss] Sending response: "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/express/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -696,7 +689,6 @@ Info seq [hh:mm:ss:mss] event: "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/express/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/inferred-projects-with-disableFilenameBasedTypeAcquisition.js b/tests/baselines/reference/tsserver/typingsInstaller/inferred-projects-with-disableFilenameBasedTypeAcquisition.js index 1bb3c38cecdf4..531f3255e0b0a 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/inferred-projects-with-disableFilenameBasedTypeAcquisition.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/inferred-projects-with-disableFilenameBasedTypeAcquisition.js @@ -157,12 +157,10 @@ TI:: [hh:mm:ss:mss] Got install request "enable": true, "disableFilenameBasedTypeAcquisition": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -201,7 +199,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -224,7 +221,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/inferred-projects.js b/tests/baselines/reference/tsserver/typingsInstaller/inferred-projects.js index f7cbf4a15265b..231a1bc11e99e 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/inferred-projects.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/inferred-projects.js @@ -148,14 +148,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/package.json' dependencies: ["jquery"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -302,7 +300,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /dev/null/inferredProject1* @@ -330,7 +327,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -418,13 +414,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/package.json' dependencies: ["jquery"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [ @@ -463,7 +457,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -489,7 +482,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/install-typings-for-unresolved-imports.js b/tests/baselines/reference/tsserver/typingsInstaller/install-typings-for-unresolved-imports.js index 308e629ca3cd8..eccba289d8541 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/install-typings-for-unresolved-imports.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/install-typings-for-unresolved-imports.js @@ -39,11 +39,11 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots @@ -452,12 +452,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -489,7 +487,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /dev/null/inferredProject1* @@ -515,7 +512,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -573,14 +569,16 @@ Projects:: ScriptInfos:: /home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts *new* version: Text-1 - containingProjects: 0 + containingProjects: 1 + /dev/null/inferredProject1* /home/src/Library/Caches/typescript/node_modules/@types/ember__component/index.d.ts *new* version: Text-1 containingProjects: 1 /dev/null/inferredProject1* /home/src/Library/Caches/typescript/node_modules/@types/node/index.d.ts *new* version: Text-1 - containingProjects: 0 + containingProjects: 1 + /dev/null/inferredProject1* /home/src/projects/project/app.js (Open) version: SVC-1-0 containingProjects: 1 diff --git a/tests/baselines/reference/tsserver/typingsInstaller/invalidate-the-resolutions-with-trimmed-names.js b/tests/baselines/reference/tsserver/typingsInstaller/invalidate-the-resolutions-with-trimmed-names.js index b309d1a093781..f2ff9efc83cf4 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/invalidate-the-resolutions-with-trimmed-names.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/invalidate-the-resolutions-with-trimmed-names.js @@ -43,13 +43,13 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/fooo/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution @@ -473,14 +473,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Searching for typing names in /home/src/projects/project/node_modules; all files: [] TI:: [hh:mm:ss:mss] Found package names: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -512,7 +510,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /dev/null/inferredProject1* @@ -538,7 +535,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -612,7 +608,8 @@ ScriptInfos:: /dev/null/inferredProject1* /home/src/Library/Caches/typescript/node_modules/foo/index.d.ts *new* version: Text-1 - containingProjects: 0 + containingProjects: 1 + /dev/null/inferredProject1* /home/src/projects/project/app.js (Open) version: SVC-1-0 containingProjects: 1 @@ -672,14 +669,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Searching for typing names in /home/src/projects/project/node_modules; all files: [] TI:: [hh:mm:ss:mss] Found package names: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -711,7 +706,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -735,7 +729,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -754,6 +747,36 @@ Projects:: projectProgramVersion: 3 *changed* dirty: false *changed* +ScriptInfos:: +/home/src/Library/Caches/typescript/node_modules/foo/a/a.d.ts + version: Text-1 + containingProjects: 1 + /dev/null/inferredProject1* +/home/src/Library/Caches/typescript/node_modules/foo/a/b.d.ts + version: Text-1 + containingProjects: 1 + /dev/null/inferredProject1* +/home/src/Library/Caches/typescript/node_modules/foo/a/c.d.ts + version: Text-1 + containingProjects: 1 + /dev/null/inferredProject1* +/home/src/Library/Caches/typescript/node_modules/foo/index.d.ts *changed* + version: Text-1 + containingProjects: 0 *changed* + /dev/null/inferredProject1* *deleted* +/home/src/projects/project/app.js (Open) + version: SVC-1-0 + containingProjects: 1 + /dev/null/inferredProject1* *default* +/home/src/projects/project/node_modules/fooo/index.d.ts + version: Text-1 + containingProjects: 1 + /dev/null/inferredProject1* +/home/src/tslibs/TS/Lib/lib.d.ts + version: Text-1 + containingProjects: 1 + /dev/null/inferredProject1* + Info seq [hh:mm:ss:mss] request: { "command": "applyChangedToOpenFiles", diff --git a/tests/baselines/reference/tsserver/typingsInstaller/invalidate-the-resolutions.js b/tests/baselines/reference/tsserver/typingsInstaller/invalidate-the-resolutions.js index 0292d083e02aa..43db95156268d 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/invalidate-the-resolutions.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/invalidate-the-resolutions.js @@ -39,13 +39,13 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/fooo/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution @@ -451,14 +451,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Searching for typing names in /home/src/projects/project/node_modules; all files: [] TI:: [hh:mm:ss:mss] Found package names: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -490,7 +488,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /dev/null/inferredProject1* @@ -516,7 +513,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -576,7 +572,8 @@ Projects:: ScriptInfos:: /home/src/Library/Caches/typescript/node_modules/foo/index.d.ts *new* version: Text-1 - containingProjects: 0 + containingProjects: 1 + /dev/null/inferredProject1* /home/src/projects/project/app.js (Open) version: SVC-1-0 containingProjects: 1 @@ -598,106 +595,8 @@ Info seq [hh:mm:ss:mss] Files (4) /home/src/Library/Caches/typescript/node_modules/foo/index.d.ts Text-1 "export function a(): void;" /home/src/projects/project/node_modules/fooo/index.d.ts Text-1 "export var x: string;" /home/src/projects/project/app.js SVC-1-0 "import * as a from \"foo\";import * as x from \"fooo\";" - - - ../../tslibs/TS/Lib/lib.d.ts - Default library for target 'es5' - ../../Library/Caches/typescript/node_modules/foo/index.d.ts - Imported via "foo" from file 'app.js' - node_modules/fooo/index.d.ts - Imported via "fooo" from file 'app.js' - app.js - Root file specified for compilation Info seq [hh:mm:ss:mss] ----------------------------------------------- -TI:: [hh:mm:ss:mss] Got install request - { - "projectName": "/dev/null/inferredProject1*", - "fileNames": [ - "/home/src/tslibs/TS/Lib/lib.d.ts", - "/home/src/projects/project/app.js" - ], - "compilerOptions": { - "target": 1, - "jsx": 1, - "allowNonTsExtensions": true, - "allowJs": true, - "noEmitForJsFiles": true, - "maxNodeModuleJsDepth": 2 - }, - "typeAcquisition": { - "enable": true, - "include": [], - "exclude": [] - }, - "unresolvedImports": [], - "projectRootPath": "/home/src/projects/project", - "kind": "discover" - } -TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Searching for typing names in /home/src/projects/project/node_modules; all files: [] -TI:: [hh:mm:ss:mss] Found package names: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] -TI:: [hh:mm:ss:mss] Finished typings discovery: - { - "cachedTypingPaths": [], - "newTypingNames": [], - "filesToWatch": [ - "/home/src/projects/project/bower_components", - "/home/src/projects/project/node_modules" - ] - } -TI:: [hh:mm:ss:mss] Sending response: - { - "kind": "action::watchTypingLocations", - "projectName": "/dev/null/inferredProject1*" - } -TI:: [hh:mm:ss:mss] Sending response: - { - "projectName": "/dev/null/inferredProject1*", - "typeAcquisition": { - "enable": true, - "include": [], - "exclude": [] - }, - "compilerOptions": { - "target": 1, - "jsx": 1, - "allowNonTsExtensions": true, - "allowJs": true, - "noEmitForJsFiles": true, - "maxNodeModuleJsDepth": 2 - }, - "typings": [], - "unresolvedImports": [], - "kind": "action::set" - } -Info seq [hh:mm:ss:mss] event: - { - "seq": 0, - "type": "event", - "event": "setTypings", - "body": { - "projectName": "/dev/null/inferredProject1*", - "typeAcquisition": { - "enable": true, - "include": [], - "exclude": [] - }, - "compilerOptions": { - "target": 1, - "jsx": 1, - "allowNonTsExtensions": true, - "allowJs": true, - "noEmitForJsFiles": true, - "maxNodeModuleJsDepth": 2 - }, - "typings": [], - "unresolvedImports": [], - "kind": "action::set" - } - } -TI:: [hh:mm:ss:mss] No new typings were requested as a result of typings discovery Info seq [hh:mm:ss:mss] Resolution from : /home/src/projects/project/app.js for "fooo" goes to: { "resolvedFileName": "/home/src/projects/project/node_modules/fooo/index.d.ts", "extension": ".d.ts", @@ -712,24 +611,6 @@ Projects:: projectProgramVersion: 3 *changed* dirty: false *changed* -ScriptInfos:: -/home/src/Library/Caches/typescript/node_modules/foo/index.d.ts *changed* - version: Text-1 - containingProjects: 1 *changed* - /dev/null/inferredProject1* *new* -/home/src/projects/project/app.js (Open) - version: SVC-1-0 - containingProjects: 1 - /dev/null/inferredProject1* *default* -/home/src/projects/project/node_modules/fooo/index.d.ts - version: Text-1 - containingProjects: 1 - /dev/null/inferredProject1* -/home/src/tslibs/TS/Lib/lib.d.ts - version: Text-1 - containingProjects: 1 - /dev/null/inferredProject1* - Info seq [hh:mm:ss:mss] request: { "command": "applyChangedToOpenFiles", diff --git a/tests/baselines/reference/tsserver/typingsInstaller/local-module-should-not-be-picked-up.js b/tests/baselines/reference/tsserver/typingsInstaller/local-module-should-not-be-picked-up.js index d29dd1f743bdf..ef5d62f669767 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/local-module-should-not-be-picked-up.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/local-module-should-not-be-picked-up.js @@ -98,10 +98,10 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project 1 undefined Config: /user/username/projects/project/jsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/config.js 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/project/jsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/config 1 undefined Project: /user/username/projects/project/jsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/config 1 undefined Project: /user/username/projects/project/jsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project 0 undefined Project: /user/username/projects/project/jsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project 0 undefined Project: /user/username/projects/project/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/config 1 undefined Project: /user/username/projects/project/jsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/config 1 undefined Project: /user/username/projects/project/jsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/jsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/jsconfig.json WatchType: Type roots @@ -199,13 +199,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -246,7 +244,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -271,7 +268,6 @@ Info seq [hh:mm:ss:mss] event: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/malformed-packagejson.js b/tests/baselines/reference/tsserver/typingsInstaller/malformed-packagejson.js index b437ee97d4694..b943664ff3676 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/malformed-packagejson.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/malformed-packagejson.js @@ -139,14 +139,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: ["co } }"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -194,7 +192,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -218,7 +215,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -290,13 +286,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: ["commander"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -385,7 +379,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /dev/null/inferredProject1* @@ -413,7 +406,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -500,13 +492,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: ["commander"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [ @@ -543,7 +533,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -569,7 +558,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/multiple-projects.js b/tests/baselines/reference/tsserver/typingsInstaller/multiple-projects.js index 6e138bac171b1..d216d260fec91 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/multiple-projects.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/multiple-projects.js @@ -205,14 +205,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/package.json' dependencies: ["jquery"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -414,7 +412,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/project/tsconfig.json @@ -439,7 +436,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -524,13 +520,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/package.json' dependencies: ["jquery"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [ @@ -564,7 +558,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -587,7 +580,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -792,8 +784,6 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /us Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/project2/tsconfig.json Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project2/node_modules/@types 1 undefined Project: /user/username/projects/project2/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project2/node_modules/@types 1 undefined Project: /user/username/projects/project2/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/project2/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/project2/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/project2/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/project2/tsconfig.json' (Configured) Info seq [hh:mm:ss:mss] Files (2) @@ -824,13 +814,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project2", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project2/package.json' dependencies: ["commander"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -981,14 +969,12 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/node_modules 1 undefined Project: /user/username/projects/project/tsconfig.json WatchType: Directory location for typing installer Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/node_modules 1 undefined Project: /user/username/projects/project/tsconfig.json WatchType: Directory location for typing installer TI:: [hh:mm:ss:mss] Closing file watchers for project '/user/username/projects/project/tsconfig.json' - done. +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/tsconfig.json WatchType: Type roots +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/jquery/package.json 2000 undefined Project: /user/username/projects/project/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/package.json 2000 undefined Project: /user/username/projects/project/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/package.json 2000 undefined Project: /user/username/projects/project/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /home/src/Library/Caches/typescript/package.json 2000 undefined Project: /user/username/projects/project/tsconfig.json WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/project/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/project/package.json 250 undefined WatchType: package.json file Info seq [hh:mm:ss:mss] FileWatcher:: Close:: WatchInfo: /user/username/projects/project/app.js 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Project '/user/username/projects/project2/tsconfig.json' (Configured) diff --git a/tests/baselines/reference/tsserver/typingsInstaller/non-expired-cache-entry.js b/tests/baselines/reference/tsserver/typingsInstaller/non-expired-cache-entry.js index b5610ff8a744c..8815374693aea 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/non-expired-cache-entry.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/non-expired-cache-entry.js @@ -184,14 +184,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/Vscode/Projects/bin", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: ["jquery"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [ @@ -246,7 +244,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /dev/null/inferredProject1* @@ -274,7 +271,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/pick-typing-names-from-nonrelative-unresolved-imports.js b/tests/baselines/reference/tsserver/typingsInstaller/pick-typing-names-from-nonrelative-unresolved-imports.js index 74b838aeefb65..e473870ff08eb 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/pick-typing-names-from-nonrelative-unresolved-imports.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/pick-typing-names-from-nonrelative-unresolved-imports.js @@ -44,15 +44,15 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/lib 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/lib 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/lib 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/lib 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/typingsInstaller/progress-notification-for-error.js b/tests/baselines/reference/tsserver/typingsInstaller/progress-notification-for-error.js index 3088d58c0645f..5da46c6b36296 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/progress-notification-for-error.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/progress-notification-for-error.js @@ -143,14 +143,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: ["commander"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], diff --git a/tests/baselines/reference/tsserver/typingsInstaller/progress-notification.js b/tests/baselines/reference/tsserver/typingsInstaller/progress-notification.js index a5041614b5897..dd9243db7f601 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/progress-notification.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/progress-notification.js @@ -163,14 +163,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: ["commander"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -304,7 +302,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /dev/null/inferredProject1* @@ -332,7 +329,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -420,13 +416,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: ["commander"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [ @@ -463,7 +457,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -489,7 +482,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/projectRootPath-is-provided-for-inferred-project.js b/tests/baselines/reference/tsserver/typingsInstaller/projectRootPath-is-provided-for-inferred-project.js index 807213af79cd5..012d11d9d9141 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/projectRootPath-is-provided-for-inferred-project.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/projectRootPath-is-provided-for-inferred-project.js @@ -199,13 +199,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/san2", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -248,7 +246,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -275,7 +272,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/redo-resolutions-pointing-to-js-on-typing-install.js b/tests/baselines/reference/tsserver/typingsInstaller/redo-resolutions-pointing-to-js-on-typing-install.js index 91089cdc4b6ee..7b4ee654e4dca 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/redo-resolutions-pointing-to-js-on-typing-install.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/redo-resolutions-pointing-to-js-on-typing-install.js @@ -42,15 +42,15 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/a/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/a/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/a/b/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/a/b/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/a/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/a/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/commander/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/package.json 2000 undefined Project: /dev/null/inferredProject1* WatchType: File location affecting resolution @@ -462,12 +462,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/a/b", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -499,7 +497,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /dev/null/inferredProject1* @@ -525,7 +522,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -595,7 +591,8 @@ Projects:: ScriptInfos:: /home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts *new* version: Text-1 - containingProjects: 0 + containingProjects: 1 + /dev/null/inferredProject1* /home/src/tslibs/TS/Lib/lib.d.ts version: Text-1 containingProjects: 1 diff --git a/tests/baselines/reference/tsserver/typingsInstaller/scoped-name-discovery.js b/tests/baselines/reference/tsserver/typingsInstaller/scoped-name-discovery.js index 31a1adecb3b3d..b2233a830f6f1 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/scoped-name-discovery.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/scoped-name-discovery.js @@ -211,7 +211,6 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } @@ -220,7 +219,6 @@ TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/package.json' dependencies: ["@zkat/cacache"] TI:: [hh:mm:ss:mss] Searching for typing names in /user/username/projects/project/node_modules; all files: ["/user/username/projects/project/node_modules/@zkat/cacache/package.json"] TI:: [hh:mm:ss:mss] Found package names: ["@zkat/cacache"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -464,7 +462,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/zkat__cacache/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/project/jsconfig.json @@ -493,7 +490,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/zkat__cacache/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -589,7 +585,6 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } @@ -597,7 +592,6 @@ TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/package.json' dependencies: ["@zkat/cacache"] TI:: [hh:mm:ss:mss] Searching for typing names in /user/username/projects/project/node_modules; all files: ["/user/username/projects/project/node_modules/@zkat/cacache/package.json"] TI:: [hh:mm:ss:mss] Found package names: ["@zkat/cacache"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -636,7 +630,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/project/jsconfig.json @@ -663,7 +656,6 @@ Info seq [hh:mm:ss:mss] event: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -710,7 +702,6 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project", "kind": "discover" } @@ -718,7 +709,6 @@ TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/package.json' dependencies: ["@zkat/cacache"] TI:: [hh:mm:ss:mss] Searching for typing names in /user/username/projects/project/node_modules; all files: ["/user/username/projects/project/node_modules/@zkat/cacache/package.json"] TI:: [hh:mm:ss:mss] Found package names: ["@zkat/cacache"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -757,7 +747,6 @@ TI:: [hh:mm:ss:mss] Sending response: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -782,7 +771,6 @@ Info seq [hh:mm:ss:mss] event: "allowNonTsExtensions": true }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/should-handle-node-core-modules.js b/tests/baselines/reference/tsserver/typingsInstaller/should-handle-node-core-modules.js index e9e7832d72f73..e8f78f6866100 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/should-handle-node-core-modules.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/should-handle-node-core-modules.js @@ -39,11 +39,11 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots @@ -417,12 +417,10 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -454,7 +452,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /dev/null/inferredProject1* @@ -480,7 +477,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -532,7 +528,8 @@ Projects:: ScriptInfos:: /home/src/Library/Caches/typescript/node_modules/node/index.d.ts *new* version: Text-1 - containingProjects: 0 + containingProjects: 1 + /dev/null/inferredProject1* /home/src/projects/project/app.js (Open) version: SVC-1-0 containingProjects: 1 @@ -576,7 +573,8 @@ After request ScriptInfos:: /home/src/Library/Caches/typescript/node_modules/node/index.d.ts version: Text-1 - containingProjects: 0 + containingProjects: 1 + /dev/null/inferredProject1* /home/src/projects/project/app.js (Open) *changed* version: SVC-1-1 *changed* containingProjects: 1 @@ -598,14 +596,6 @@ Info seq [hh:mm:ss:mss] Files (3) /home/src/tslibs/TS/Lib/lib.d.ts Text-1 "/// \ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array { length: number; [n: number]: T; }\ninterface ReadonlyArray {}\ndeclare const console: { log(msg: any): void; };" /home/src/Library/Caches/typescript/node_modules/node/index.d.ts Text-1 "\ndeclare module \"net\" {\n export type n = number;\n}\ndeclare module \"stream\" {\n export type s = string;\n}" /home/src/projects/project/app.js SVC-1-1 "// @ts-check\n\nconst net = require(\"net\");\nconst stream = require(\"s tream\");" - - - ../../tslibs/TS/Lib/lib.d.ts - Default library for target 'es5' - ../../Library/Caches/typescript/node_modules/node/index.d.ts - Imported via "net" from file 'app.js' - app.js - Root file specified for compilation Info seq [hh:mm:ss:mss] ----------------------------------------------- TI:: [hh:mm:ss:mss] Got install request @@ -741,20 +731,6 @@ Projects:: projectProgramVersion: 3 *changed* dirty: false *changed* -ScriptInfos:: -/home/src/Library/Caches/typescript/node_modules/node/index.d.ts *changed* - version: Text-1 - containingProjects: 1 *changed* - /dev/null/inferredProject1* *new* -/home/src/projects/project/app.js (Open) - version: SVC-1-1 - containingProjects: 1 - /dev/null/inferredProject1* *default* -/home/src/tslibs/TS/Lib/lib.d.ts - version: Text-1 - containingProjects: 1 - /dev/null/inferredProject1* - Before request Info seq [hh:mm:ss:mss] request: @@ -815,107 +791,6 @@ Info seq [hh:mm:ss:mss] Files (3) /home/src/projects/project/app.js SVC-1-2 "// @ts-check\n\nconst bar = require(\"bar\");const net = require(\"net\");\nconst stream = require(\"s tream\");" Info seq [hh:mm:ss:mss] ----------------------------------------------- -TI:: [hh:mm:ss:mss] Got install request - { - "projectName": "/dev/null/inferredProject1*", - "fileNames": [ - "/home/src/tslibs/TS/Lib/lib.d.ts", - "/home/src/projects/project/app.js" - ], - "compilerOptions": { - "target": 1, - "jsx": 1, - "allowNonTsExtensions": true, - "allowJs": true, - "noEmitForJsFiles": true, - "maxNodeModuleJsDepth": 2 - }, - "typeAcquisition": { - "enable": true, - "include": [], - "exclude": [] - }, - "unresolvedImports": [ - "bar", - "s tream" - ], - "projectRootPath": "/home/src/projects/project", - "kind": "discover" - } -TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: ["bar","s tream"] -TI:: [hh:mm:ss:mss] Finished typings discovery: - { - "cachedTypingPaths": [], - "newTypingNames": [ - "bar", - "s tream" - ], - "filesToWatch": [ - "/home/src/projects/project/bower_components", - "/home/src/projects/project/node_modules" - ] - } -TI:: [hh:mm:ss:mss] Sending response: - { - "kind": "action::watchTypingLocations", - "projectName": "/dev/null/inferredProject1*" - } -TI:: [hh:mm:ss:mss] Installing typings ["bar","s tream"] -TI:: [hh:mm:ss:mss] 'bar':: Entry for package 'bar' does not exist in local types registry - skipping... -TI:: [hh:mm:ss:mss] 's tream':: 's tream' is in missingTypingsSet - skipping... -TI:: [hh:mm:ss:mss] All typings are known to be missing or invalid - no need to install more typings -TI:: [hh:mm:ss:mss] Sending response: - { - "projectName": "/dev/null/inferredProject1*", - "typeAcquisition": { - "enable": true, - "include": [], - "exclude": [] - }, - "compilerOptions": { - "target": 1, - "jsx": 1, - "allowNonTsExtensions": true, - "allowJs": true, - "noEmitForJsFiles": true, - "maxNodeModuleJsDepth": 2 - }, - "typings": [], - "unresolvedImports": [ - "bar", - "s tream" - ], - "kind": "action::set" - } -Info seq [hh:mm:ss:mss] event: - { - "seq": 0, - "type": "event", - "event": "setTypings", - "body": { - "projectName": "/dev/null/inferredProject1*", - "typeAcquisition": { - "enable": true, - "include": [], - "exclude": [] - }, - "compilerOptions": { - "target": 1, - "jsx": 1, - "allowNonTsExtensions": true, - "allowJs": true, - "noEmitForJsFiles": true, - "maxNodeModuleJsDepth": 2 - }, - "typings": [], - "unresolvedImports": [ - "bar", - "s tream" - ], - "kind": "action::set" - } - } After program update Projects:: diff --git a/tests/baselines/reference/tsserver/typingsInstaller/should-not-initialize-invaalid-package-names.js b/tests/baselines/reference/tsserver/typingsInstaller/should-not-initialize-invaalid-package-names.js index 60b28324a7c06..9bfb1a411a033 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/should-not-initialize-invaalid-package-names.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/should-not-initialize-invaalid-package-names.js @@ -131,14 +131,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: ["; say ‘Hello from TypeScript!’ #"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -186,7 +184,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -210,7 +207,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/telemetry-events.js b/tests/baselines/reference/tsserver/typingsInstaller/telemetry-events.js index bfd2eec07c8b3..d57053ae5c38c 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/telemetry-events.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/telemetry-events.js @@ -143,14 +143,12 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: ["commander"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -284,7 +282,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /dev/null/inferredProject1* @@ -312,7 +309,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -400,13 +396,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "/home/src/projects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: [] TI:: [hh:mm:ss:mss] Typing names in '/home/src/projects/project/package.json' dependencies: ["commander"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [ @@ -443,7 +437,6 @@ TI:: [hh:mm:ss:mss] Sending response: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -469,7 +462,6 @@ Info seq [hh:mm:ss:mss] event: "typings": [ "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/throttle-delayed-run-install-requests.js b/tests/baselines/reference/tsserver/typingsInstaller/throttle-delayed-run-install-requests.js index e1df89a9bf4f9..201366a319008 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/throttle-delayed-run-install-requests.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/throttle-delayed-run-install-requests.js @@ -246,14 +246,12 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } TI:: [hh:mm:ss:mss] Loaded safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: ["jquery","cordova","lodash","commander"] TI:: [hh:mm:ss:mss] Inferred typings from file names: ["lodash","commander"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -429,10 +427,6 @@ Info seq [hh:mm:ss:mss] request: } Info seq [hh:mm:ss:mss] Creating ExternalProject: /user/username/projects/app/test2.csproj, currentDirectory: /user/username/projects/app Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/app/test2.csproj -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/app/node_modules/@types 1 undefined Project: /user/username/projects/app/test2.csproj WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/app/node_modules/@types 1 undefined Project: /user/username/projects/app/test2.csproj WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/app/test2.csproj WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/app/test2.csproj WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/app/test2.csproj projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/app/test2.csproj' (External) Info seq [hh:mm:ss:mss] Files (2) @@ -467,12 +461,10 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: ["grunt","gulp"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -649,7 +641,6 @@ TI:: [hh:mm:ss:mss] Sending response: "/home/src/Library/Caches/typescript/node_modules/@types/lodash/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/app/test1.csproj @@ -682,7 +673,6 @@ Info seq [hh:mm:ss:mss] event: "/home/src/Library/Caches/typescript/node_modules/@types/lodash/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -780,7 +770,6 @@ TI:: [hh:mm:ss:mss] Sending response: "/home/src/Library/Caches/typescript/node_modules/@types/grunt/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/gulp/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/app/test2.csproj @@ -809,7 +798,6 @@ Info seq [hh:mm:ss:mss] event: "/home/src/Library/Caches/typescript/node_modules/@types/grunt/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/gulp/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -922,13 +910,11 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: ["jquery","cordova","lodash","commander"] TI:: [hh:mm:ss:mss] Inferred typings from file names: ["lodash","commander"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [ @@ -975,7 +961,6 @@ TI:: [hh:mm:ss:mss] Sending response: "/home/src/Library/Caches/typescript/node_modules/@types/lodash/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -1007,7 +992,6 @@ Info seq [hh:mm:ss:mss] event: "/home/src/Library/Caches/typescript/node_modules/@types/lodash/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -1015,9 +999,6 @@ TI:: [hh:mm:ss:mss] No new typings were requested as a result of typings discove Info seq [hh:mm:ss:mss] Running: /user/username/projects/app/test2.csproj Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/app/test2.csproj Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/grunt/package.json 2000 undefined Project: /user/username/projects/app/test2.csproj WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/package.json 2000 undefined Project: /user/username/projects/app/test2.csproj WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/package.json 2000 undefined Project: /user/username/projects/app/test2.csproj WatchType: File location affecting resolution -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/package.json 2000 undefined Project: /user/username/projects/app/test2.csproj WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/Library/Caches/typescript/node_modules/@types/gulp/package.json 2000 undefined Project: /user/username/projects/app/test2.csproj WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/app/test2.csproj projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/app/test2.csproj' (External) @@ -1061,12 +1042,10 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: ["grunt","gulp"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [ @@ -1105,7 +1084,6 @@ TI:: [hh:mm:ss:mss] Sending response: "/home/src/Library/Caches/typescript/node_modules/@types/grunt/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/gulp/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -1133,7 +1111,6 @@ Info seq [hh:mm:ss:mss] event: "/home/src/Library/Caches/typescript/node_modules/@types/grunt/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/gulp/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/throttle-delayed-typings-to-install.js b/tests/baselines/reference/tsserver/typingsInstaller/throttle-delayed-typings-to-install.js index 6a4dac81fee88..3453906f00fe2 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/throttle-delayed-typings-to-install.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/throttle-delayed-typings-to-install.js @@ -243,7 +243,6 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } @@ -251,7 +250,6 @@ TI:: [hh:mm:ss:mss] Loaded safelist from types map file '/home/src/tslibs/TS/Lib TI:: [hh:mm:ss:mss] Explicitly included types: ["jquery","moment","lodash","commander"] TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/package.json' dependencies: ["express"] TI:: [hh:mm:ss:mss] Inferred typings from file names: ["lodash","commander"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -467,7 +465,6 @@ TI:: [hh:mm:ss:mss] Sending response: "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/express/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/app/test.csproj @@ -501,7 +498,6 @@ Info seq [hh:mm:ss:mss] event: "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/express/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -619,14 +615,12 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: ["jquery","moment","lodash","commander"] TI:: [hh:mm:ss:mss] Typing names in '/user/username/projects/project/package.json' dependencies: ["express"] TI:: [hh:mm:ss:mss] Inferred typings from file names: ["lodash","commander"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [ @@ -676,7 +670,6 @@ TI:: [hh:mm:ss:mss] Sending response: "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/express/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -709,7 +702,6 @@ Info seq [hh:mm:ss:mss] event: "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/express/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/throttle-scheduled-run-install-requests-with-defer-refreshed.js b/tests/baselines/reference/tsserver/typingsInstaller/throttle-scheduled-run-install-requests-with-defer-refreshed.js index d55b4316d69ef..021395f11d6d1 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/throttle-scheduled-run-install-requests-with-defer-refreshed.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/throttle-scheduled-run-install-requests-with-defer-refreshed.js @@ -125,7 +125,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Scheduling throttled operation: "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } @@ -247,8 +246,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/app/node_modules/@types 1 undefined Project: /user/username/projects/project/app/test2.csproj WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/app/test2.csproj WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/app/test2.csproj WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/project/app/test2.csproj WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/project/app/test2.csproj WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/project/app/test2.csproj projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/project/app/test2.csproj' (External) Info seq [hh:mm:ss:mss] Files (2) @@ -283,7 +280,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Scheduling throttled operation: "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/app", "kind": "discover" } @@ -439,7 +435,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Scheduling throttled operation: "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/app", "kind": "discover" } @@ -497,7 +492,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Sending request: "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } @@ -612,14 +606,12 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } TI:: [hh:mm:ss:mss] Loaded safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: ["jquery","cordova","commander"] TI:: [hh:mm:ss:mss] Inferred typings from file names: ["commander"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -775,7 +767,6 @@ TI:: [hh:mm:ss:mss] Sending response: "/home/src/Library/Caches/typescript/node_modules/@types/cordova/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] TIAdapter:: Received response: @@ -801,7 +792,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Received response: "/home/src/Library/Caches/typescript/node_modules/@types/cordova/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] TIAdapter:: Skipping defunct request for: /user/username/projects/project/app/test2.csproj @@ -834,7 +824,6 @@ Info seq [hh:mm:ss:mss] event: "/home/src/Library/Caches/typescript/node_modules/@types/cordova/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -922,7 +911,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Sending request: "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/app", "kind": "discover" } @@ -949,13 +937,11 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/app", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: ["grunt","gulp","lodash"] TI:: [hh:mm:ss:mss] Inferred typings from file names: ["lodash"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -1115,7 +1101,6 @@ TI:: [hh:mm:ss:mss] Sending response: "/home/src/Library/Caches/typescript/node_modules/@types/gulp/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/lodash/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] TIAdapter:: Received response: @@ -1141,7 +1126,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Received response: "/home/src/Library/Caches/typescript/node_modules/@types/gulp/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/lodash/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/project/app/test2.csproj @@ -1172,7 +1156,6 @@ Info seq [hh:mm:ss:mss] event: "/home/src/Library/Caches/typescript/node_modules/@types/gulp/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/lodash/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/throttle-scheduled-run-install-requests-with-defer-while-queuing-again.js b/tests/baselines/reference/tsserver/typingsInstaller/throttle-scheduled-run-install-requests-with-defer-while-queuing-again.js index 7895e938e726c..40ea83ea8fa8a 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/throttle-scheduled-run-install-requests-with-defer-while-queuing-again.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/throttle-scheduled-run-install-requests-with-defer-while-queuing-again.js @@ -123,7 +123,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Scheduling throttled operation: "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } @@ -241,10 +240,6 @@ Info seq [hh:mm:ss:mss] request: } Info seq [hh:mm:ss:mss] Creating ExternalProject: /user/username/projects/app/test2.csproj, currentDirectory: /user/username/projects/app Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/app/test2.csproj -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/app/node_modules/@types 1 undefined Project: /user/username/projects/app/test2.csproj WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/app/node_modules/@types 1 undefined Project: /user/username/projects/app/test2.csproj WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/app/test2.csproj WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/app/test2.csproj WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/app/test2.csproj projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/app/test2.csproj' (External) Info seq [hh:mm:ss:mss] Files (2) @@ -279,7 +274,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Scheduling throttled operation: "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } @@ -394,10 +388,6 @@ Info seq [hh:mm:ss:mss] request: Info seq [hh:mm:ss:mss] Excluded '/user/username/projects/project/lodash.js' because it matched lodash from the legacy safelist Info seq [hh:mm:ss:mss] Creating ExternalProject: /user/username/projects/app/test3.csproj, currentDirectory: /user/username/projects/app Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/app/test3.csproj -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/app/node_modules/@types 1 undefined Project: /user/username/projects/app/test3.csproj WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/app/node_modules/@types 1 undefined Project: /user/username/projects/app/test3.csproj WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/app/test3.csproj WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/app/test3.csproj WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/app/test3.csproj projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/app/test3.csproj' (External) Info seq [hh:mm:ss:mss] Files (2) @@ -433,7 +423,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Scheduling throttled operation: "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } @@ -551,7 +540,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Sending request: "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } @@ -665,14 +653,12 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } TI:: [hh:mm:ss:mss] Loaded safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: ["jquery","commander"] TI:: [hh:mm:ss:mss] Inferred typings from file names: ["commander"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -814,7 +800,6 @@ TI:: [hh:mm:ss:mss] Sending response: "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] TIAdapter:: Received response: @@ -838,7 +823,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Received response: "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] TIAdapter:: Scheduling request for: /user/username/projects/app/test2.csproj @@ -868,7 +852,6 @@ Info seq [hh:mm:ss:mss] event: "/home/src/Library/Caches/typescript/node_modules/@types/jquery/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -954,7 +937,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Sending request: "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } @@ -979,12 +961,10 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: ["grunt","gulp"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -1096,7 +1076,6 @@ TI:: [hh:mm:ss:mss] Sending response: "/home/src/Library/Caches/typescript/node_modules/@types/grunt/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/gulp/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] TIAdapter:: Received response: @@ -1120,7 +1099,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Received response: "/home/src/Library/Caches/typescript/node_modules/@types/grunt/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/gulp/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] TIAdapter:: Scheduling request for: /user/username/projects/app/test3.csproj @@ -1150,7 +1128,6 @@ Info seq [hh:mm:ss:mss] event: "/home/src/Library/Caches/typescript/node_modules/@types/grunt/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/gulp/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -1240,7 +1217,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Sending request: "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } @@ -1266,13 +1242,11 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: ["cordova","lodash"] TI:: [hh:mm:ss:mss] Inferred typings from file names: ["lodash"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -1394,7 +1368,6 @@ TI:: [hh:mm:ss:mss] Sending response: "/home/src/Library/Caches/typescript/node_modules/@types/cordova/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/lodash/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] TIAdapter:: Received response: @@ -1418,7 +1391,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Received response: "/home/src/Library/Caches/typescript/node_modules/@types/cordova/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/lodash/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/app/test3.csproj @@ -1447,7 +1419,6 @@ Info seq [hh:mm:ss:mss] event: "/home/src/Library/Caches/typescript/node_modules/@types/cordova/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/lodash/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/throttle-scheduled-run-install-requests-with-defer.js b/tests/baselines/reference/tsserver/typingsInstaller/throttle-scheduled-run-install-requests-with-defer.js index cb600b44c9c09..5a8a394f08af5 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/throttle-scheduled-run-install-requests-with-defer.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/throttle-scheduled-run-install-requests-with-defer.js @@ -131,7 +131,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Scheduling throttled operation: "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } @@ -249,10 +248,6 @@ Info seq [hh:mm:ss:mss] request: } Info seq [hh:mm:ss:mss] Creating ExternalProject: /user/username/projects/app/test2.csproj, currentDirectory: /user/username/projects/app Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/app/test2.csproj -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/app/node_modules/@types 1 undefined Project: /user/username/projects/app/test2.csproj WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/app/node_modules/@types 1 undefined Project: /user/username/projects/app/test2.csproj WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/app/test2.csproj WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/app/test2.csproj WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/app/test2.csproj projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/app/test2.csproj' (External) Info seq [hh:mm:ss:mss] Files (2) @@ -287,7 +282,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Scheduling throttled operation: "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } @@ -399,7 +393,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Sending request: "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } @@ -516,14 +509,12 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } TI:: [hh:mm:ss:mss] Loaded safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: ["jquery","cordova","lodash","commander"] TI:: [hh:mm:ss:mss] Inferred typings from file names: ["lodash","commander"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -685,7 +676,6 @@ TI:: [hh:mm:ss:mss] Sending response: "/home/src/Library/Caches/typescript/node_modules/@types/lodash/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] TIAdapter:: Received response: @@ -713,7 +703,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Received response: "/home/src/Library/Caches/typescript/node_modules/@types/lodash/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] TIAdapter:: Scheduling request for: /user/username/projects/app/test2.csproj @@ -747,7 +736,6 @@ Info seq [hh:mm:ss:mss] event: "/home/src/Library/Caches/typescript/node_modules/@types/lodash/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -836,7 +824,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Sending request: "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } @@ -861,12 +848,10 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: ["grunt","gulp"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -978,7 +963,6 @@ TI:: [hh:mm:ss:mss] Sending response: "/home/src/Library/Caches/typescript/node_modules/@types/grunt/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/gulp/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] TIAdapter:: Received response: @@ -1002,7 +986,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Received response: "/home/src/Library/Caches/typescript/node_modules/@types/grunt/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/gulp/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/app/test2.csproj @@ -1031,7 +1014,6 @@ Info seq [hh:mm:ss:mss] event: "/home/src/Library/Caches/typescript/node_modules/@types/grunt/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/gulp/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/typingsInstaller/throttle-scheduled-run-install-requests-without-reaching-limit.js b/tests/baselines/reference/tsserver/typingsInstaller/throttle-scheduled-run-install-requests-without-reaching-limit.js index d2e7ffd044f1e..0c9d3ff581ac4 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/throttle-scheduled-run-install-requests-without-reaching-limit.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/throttle-scheduled-run-install-requests-without-reaching-limit.js @@ -131,7 +131,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Scheduling throttled operation: "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } @@ -249,7 +248,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Sending request: "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } @@ -366,14 +364,12 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/app", "kind": "discover" } TI:: [hh:mm:ss:mss] Loaded safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: ["jquery","cordova","lodash","commander"] TI:: [hh:mm:ss:mss] Inferred typings from file names: ["lodash","commander"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -535,7 +531,6 @@ TI:: [hh:mm:ss:mss] Sending response: "/home/src/Library/Caches/typescript/node_modules/@types/lodash/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] TIAdapter:: Received response: @@ -563,7 +558,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Received response: "/home/src/Library/Caches/typescript/node_modules/@types/lodash/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/app/test1.csproj @@ -596,7 +590,6 @@ Info seq [hh:mm:ss:mss] event: "/home/src/Library/Caches/typescript/node_modules/@types/lodash/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/commander/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } @@ -687,8 +680,6 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/pr Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/app/node_modules/@types 1 undefined Project: /user/username/projects/project/app/test2.csproj WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/app/test2.csproj WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/app/test2.csproj WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/project/app/test2.csproj WatchType: Type roots -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules/@types 1 undefined Project: /user/username/projects/project/app/test2.csproj WatchType: Type roots Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /user/username/projects/project/app/test2.csproj projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed:: *ms Info seq [hh:mm:ss:mss] Project '/user/username/projects/project/app/test2.csproj' (External) Info seq [hh:mm:ss:mss] Files (2) @@ -723,7 +714,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Scheduling throttled operation: "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/app", "kind": "discover" } @@ -862,7 +852,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Sending request: "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/app", "kind": "discover" } @@ -887,12 +876,10 @@ TI:: [hh:mm:ss:mss] Got install request "exclude": [], "enable": true }, - "unresolvedImports": [], "projectRootPath": "/user/username/projects/project/app", "kind": "discover" } TI:: [hh:mm:ss:mss] Explicitly included types: ["grunt","gulp"] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -1032,7 +1019,6 @@ TI:: [hh:mm:ss:mss] Sending response: "/home/src/Library/Caches/typescript/node_modules/@types/grunt/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/gulp/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] TIAdapter:: Received response: @@ -1056,7 +1042,6 @@ Info seq [hh:mm:ss:mss] TIAdapter:: Received response: "/home/src/Library/Caches/typescript/node_modules/@types/grunt/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/gulp/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/project/app/test2.csproj @@ -1085,7 +1070,6 @@ Info seq [hh:mm:ss:mss] event: "/home/src/Library/Caches/typescript/node_modules/@types/grunt/index.d.ts", "/home/src/Library/Caches/typescript/node_modules/@types/gulp/index.d.ts" ], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/watchEnvironment/external-project-watch-options-errors.js b/tests/baselines/reference/tsserver/watchEnvironment/external-project-watch-options-errors.js index 6c5ab852c57b4..a47239479c9a1 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/external-project-watch-options-errors.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/external-project-watch-options-errors.js @@ -58,11 +58,11 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/project.csproj +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":[]} Project: /user/username/projects/myproject/project.csproj WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":[]} Project: /user/username/projects/myproject/project.csproj WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":[]} Project: /user/username/projects/myproject/project.csproj WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":[]} Project: /user/username/projects/myproject/project.csproj WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":[]} Project: /user/username/projects/myproject/project.csproj WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":[]} Project: /user/username/projects/myproject/project.csproj WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/bar/package.json 2000 {"excludeDirectories":[]} Project: /user/username/projects/myproject/project.csproj WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/package.json 2000 {"excludeDirectories":[]} Project: /user/username/projects/myproject/project.csproj WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/package.json 2000 {"excludeDirectories":[]} Project: /user/username/projects/myproject/project.csproj WatchType: File location affecting resolution diff --git a/tests/baselines/reference/tsserver/watchEnvironment/external-project-watch-options-in-host-configuration.js b/tests/baselines/reference/tsserver/watchEnvironment/external-project-watch-options-in-host-configuration.js index b167687eece24..b0a491178de5f 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/external-project-watch-options-in-host-configuration.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/external-project-watch-options-in-host-configuration.js @@ -84,10 +84,10 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":["node_modules"]} WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":["node_modules"]} WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/project.csproj -Info seq [hh:mm:ss:mss] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.csproj WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 {"excludeDirectories":["node_modules"]} WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.csproj WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.csproj WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.csproj WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 {"excludeDirectories":["node_modules"]} WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/bar/package.json 2000 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.csproj WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/package.json 2000 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.csproj WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/package.json 2000 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.csproj WatchType: File location affecting resolution diff --git a/tests/baselines/reference/tsserver/watchEnvironment/external-project-watch-options.js b/tests/baselines/reference/tsserver/watchEnvironment/external-project-watch-options.js index a39ad8f2e962a..c472f2532ffe4 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/external-project-watch-options.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/external-project-watch-options.js @@ -58,10 +58,10 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/project.csproj -Info seq [hh:mm:ss:mss] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.csproj WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.csproj WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.csproj WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.csproj WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/bar/package.json 2000 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.csproj WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/package.json 2000 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.csproj WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/package.json 2000 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.csproj WatchType: File location affecting resolution diff --git a/tests/baselines/reference/tsserver/watchEnvironment/inferred-project-watch-options-errors.js b/tests/baselines/reference/tsserver/watchEnvironment/inferred-project-watch-options-errors.js index 5e0292eb65eee..956e5ed751a49 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/inferred-project-watch-options-errors.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/inferred-project-watch-options-errors.js @@ -68,13 +68,13 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":[]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":[]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":[]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":[]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":[]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":[]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/bar/package.json 2000 {"excludeDirectories":[]} Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/package.json 2000 {"excludeDirectories":[]} Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/package.json 2000 {"excludeDirectories":[]} Project: /dev/null/inferredProject1* WatchType: File location affecting resolution diff --git a/tests/baselines/reference/tsserver/watchEnvironment/inferred-project-watch-options-in-host-configuration.js b/tests/baselines/reference/tsserver/watchEnvironment/inferred-project-watch-options-in-host-configuration.js index f2cee354b7256..8a180238cf892 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/inferred-project-watch-options-in-host-configuration.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/inferred-project-watch-options-in-host-configuration.js @@ -94,12 +94,12 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 {"excludeDirectories":["node_modules"]} WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 {"excludeDirectories":["node_modules"]} WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":["node_modules"]} WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":["node_modules"]} WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 {"excludeDirectories":["node_modules"]} WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/bar/package.json 2000 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/package.json 2000 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/package.json 2000 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: File location affecting resolution diff --git a/tests/baselines/reference/tsserver/watchEnvironment/inferred-project-watch-options.js b/tests/baselines/reference/tsserver/watchEnvironment/inferred-project-watch-options.js index f5f97f89fad3e..de5fb325c9d17 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/inferred-project-watch-options.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/inferred-project-watch-options.js @@ -68,12 +68,12 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/project Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/bar/package.json 2000 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/package.json 2000 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/package.json 2000 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: File location affecting resolution diff --git a/tests/baselines/reference/tsserver/watchEnvironment/project-with-ascii-file-names-with-i.js b/tests/baselines/reference/tsserver/watchEnvironment/project-with-ascii-file-names-with-i.js index fc78a5d3d5407..3efcaa3fbf235 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/project-with-ascii-file-names-with-i.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/project-with-ascii-file-names-with-i.js @@ -37,11 +37,11 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /User/userName/Projects/i/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /User/userName/Projects/i/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /User/userName/Projects/i/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /User/userName/Projects/i/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /User/userName/Projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /User/userName/Projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /User/userName/Projects/i/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /User/userName/Projects/i/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /User/userName/Projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/watchEnvironment/project-with-ascii-file-names.js b/tests/baselines/reference/tsserver/watchEnvironment/project-with-ascii-file-names.js index 4887cfe71425d..7e2ed29b40ab2 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/project-with-ascii-file-names.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/project-with-ascii-file-names.js @@ -37,11 +37,11 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /User/userName/Projects/I/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /User/userName/Projects/I/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /User/userName/Projects/I/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /User/userName/Projects/I/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /User/userName/Projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /User/userName/Projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /User/userName/Projects/I/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /User/userName/Projects/I/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /User/userName/Projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/watchEnvironment/project-with-unicode-file-names.js b/tests/baselines/reference/tsserver/watchEnvironment/project-with-unicode-file-names.js index 82992c69f22f4..f945cc82f77c1 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/project-with-unicode-file-names.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/project-with-unicode-file-names.js @@ -37,11 +37,11 @@ Info seq [hh:mm:ss:mss] Creating InferredProject: /dev/null/inferredProject1*, Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /User/userName/Projects/İ/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /User/userName/Projects/İ/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /User/userName/Projects/İ/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /User/userName/Projects/İ/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /User/userName/Projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /User/userName/Projects/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /User/userName/Projects/İ/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /User/userName/Projects/İ/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /User/userName/Projects/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/watchEnvironment/recursive-directory-does-not-watch-files-starting-with-dot-in-node_modules.js b/tests/baselines/reference/tsserver/watchEnvironment/recursive-directory-does-not-watch-files-starting-with-dot-in-node_modules.js index 5e662e2ddb6f1..bf90499fe561a 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/recursive-directory-does-not-watch-files-starting-with-dot-in-node_modules.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/recursive-directory-does-not-watch-files-starting-with-dot-in-node_modules.js @@ -66,13 +66,13 @@ Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /a/username/works Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/username/workspace/project 1 undefined Config: /a/username/workspace/project/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /a/username/workspace/project/src/file1.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /a/username/workspace/project/tsconfig.json -Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /a/username/workspace/project/src 1 undefined Project: /a/username/workspace/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/username/workspace/project/src 1 undefined Project: /a/username/workspace/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /a/username/workspace/project/node_modules 1 undefined Project: /a/username/workspace/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/username/workspace/project/node_modules 1 undefined Project: /a/username/workspace/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /a/username/workspace/node_modules 1 undefined Project: /a/username/workspace/project/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/username/workspace/node_modules 1 undefined Project: /a/username/workspace/project/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /a/username/workspace/project/node_modules/@types 1 undefined Project: /a/username/workspace/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/username/workspace/project/node_modules/@types 1 undefined Project: /a/username/workspace/project/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /a/username/workspace/node_modules/@types 1 undefined Project: /a/username/workspace/project/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/watchEnvironment/watching-files-with-network-style-paths.js b/tests/baselines/reference/tsserver/watchEnvironment/watching-files-with-network-style-paths.js index 682c421f060ca..067c91998b76b 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/watching-files-with-network-style-paths.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/watching-files-with-network-style-paths.js @@ -125,13 +125,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "c:/myprojects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -171,7 +169,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -195,7 +192,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -355,13 +351,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "//vda1cs4850/myprojects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -399,7 +393,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -423,7 +416,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -581,13 +573,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "//vda1cs4850/c$/myprojects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -627,7 +617,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -651,7 +640,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -827,13 +815,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "c:/users/username/myprojects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -873,7 +859,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -897,7 +882,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } @@ -1073,13 +1057,11 @@ TI:: [hh:mm:ss:mss] Got install request "include": [], "exclude": [] }, - "unresolvedImports": [], "projectRootPath": "//vda1cs4850/c$/users/username/myprojects/project", "kind": "discover" } TI:: [hh:mm:ss:mss] Failed to load safelist from types map file '/home/src/tslibs/TS/Lib/typesMap.json' TI:: [hh:mm:ss:mss] Explicitly included types: [] -TI:: [hh:mm:ss:mss] Inferred typings from unresolved imports: [] TI:: [hh:mm:ss:mss] Finished typings discovery: { "cachedTypingPaths": [], @@ -1119,7 +1101,6 @@ TI:: [hh:mm:ss:mss] Sending response: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } Info seq [hh:mm:ss:mss] event: @@ -1143,7 +1124,6 @@ Info seq [hh:mm:ss:mss] event: "maxNodeModuleJsDepth": 2 }, "typings": [], - "unresolvedImports": [], "kind": "action::set" } } diff --git a/tests/baselines/reference/tsserver/watchEnvironment/watching-npm-install-in-codespaces-where-workspaces-folder-is-hosted-at-root.js b/tests/baselines/reference/tsserver/watchEnvironment/watching-npm-install-in-codespaces-where-workspaces-folder-is-hosted-at-root.js index e5631fe2b8df9..6d26f5752b7de 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/watching-npm-install-in-codespaces-where-workspaces-folder-is-hosted-at-root.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/watching-npm-install-in-codespaces-where-workspaces-folder-is-hosted-at-root.js @@ -62,12 +62,12 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /workspaces/somerepo/src 1 undefined Config: /workspaces/somerepo/src/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /workspaces/somerepo/src 1 undefined Config: /workspaces/somerepo/src/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /workspaces/somerepo/src/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /workspaces/somerepo/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /workspaces/somerepo/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /workspaces/somerepo/src/node_modules 1 undefined Project: /workspaces/somerepo/src/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /workspaces/somerepo/src/node_modules 1 undefined Project: /workspaces/somerepo/src/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /workspaces/somerepo/node_modules 1 undefined Project: /workspaces/somerepo/src/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /workspaces/somerepo/node_modules 1 undefined Project: /workspaces/somerepo/src/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /workspaces/somerepo/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /workspaces/somerepo/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /workspaces/somerepo/node_modules/@types/random-seed/package.json 2000 undefined Project: /workspaces/somerepo/src/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /workspaces/somerepo/node_modules/@types/package.json 2000 undefined Project: /workspaces/somerepo/src/tsconfig.json WatchType: File location affecting resolution @@ -312,35 +312,35 @@ Info seq [hh:mm:ss:mss] event: } After running Immedidate callback:: count: 0 +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules/@types/random-seed :: WatchInfo: /workspaces/somerepo/node_modules 1 undefined Project: /workspaces/somerepo/src/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Scheduled: /workspaces/somerepo/src/tsconfig.jsonFailedLookupInvalidation +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules/@types/random-seed :: WatchInfo: /workspaces/somerepo/node_modules 1 undefined Project: /workspaces/somerepo/src/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules/@types/random-seed :: WatchInfo: /workspaces/somerepo/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] Scheduled: /workspaces/somerepo/src/tsconfig.json Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* Info seq [hh:mm:ss:mss] Scheduled: /workspaces/somerepo/src/tsconfig.json, Cancelled earlier one Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules/@types/random-seed :: WatchInfo: /workspaces/somerepo/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules/@types/random-seed :: WatchInfo: /workspaces/somerepo/node_modules 1 undefined Project: /workspaces/somerepo/src/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Scheduled: /workspaces/somerepo/src/tsconfig.jsonFailedLookupInvalidation -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules/@types/random-seed :: WatchInfo: /workspaces/somerepo/node_modules 1 undefined Project: /workspaces/somerepo/src/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules/@types/random-seed :: WatchInfo: /workspaces/somerepo/node_modules/@types 1 undefined Project: /workspaces/somerepo/src/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Scheduled: /workspaces/somerepo/src/tsconfig.json, Cancelled earlier one Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one Info seq [hh:mm:ss:mss] Scheduled: /workspaces/somerepo/src/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules/@types/random-seed :: WatchInfo: /workspaces/somerepo/node_modules/@types 1 undefined Project: /workspaces/somerepo/src/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules/@types :: WatchInfo: /workspaces/somerepo/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules/@types :: WatchInfo: /workspaces/somerepo/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules/@types :: WatchInfo: /workspaces/somerepo/node_modules 1 undefined Project: /workspaces/somerepo/src/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Scheduled: /workspaces/somerepo/src/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules/@types :: WatchInfo: /workspaces/somerepo/node_modules 1 undefined Project: /workspaces/somerepo/src/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules/@types :: WatchInfo: /workspaces/somerepo/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules/@types :: WatchInfo: /workspaces/somerepo/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules/@types :: WatchInfo: /workspaces/somerepo/node_modules/@types 1 undefined Project: /workspaces/somerepo/src/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Scheduled: /workspaces/somerepo/src/tsconfig.json, Cancelled earlier one Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one Info seq [hh:mm:ss:mss] Scheduled: /workspaces/somerepo/src/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules/@types :: WatchInfo: /workspaces/somerepo/node_modules/@types 1 undefined Project: /workspaces/somerepo/src/tsconfig.json WatchType: Type roots -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules :: WatchInfo: /workspaces/somerepo/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules :: WatchInfo: /workspaces/somerepo/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules :: WatchInfo: /workspaces/somerepo/node_modules 1 undefined Project: /workspaces/somerepo/src/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Scheduled: /workspaces/somerepo/src/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules :: WatchInfo: /workspaces/somerepo/node_modules 1 undefined Project: /workspaces/somerepo/src/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules :: WatchInfo: /workspaces/somerepo/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules :: WatchInfo: /workspaces/somerepo/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Before request //// [/workspaces/somerepo/node_modules/@types/random-seed/index.d.ts] deleted @@ -614,12 +614,6 @@ Info seq [hh:mm:ss:mss] event: } Info seq [hh:mm:ss:mss] sysLog:: onTimerToUpdateChildWatches:: 3 Info seq [hh:mm:ss:mss] sysLog:: invokingWatchers:: Elapsed:: *ms:: 0 -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules/@types/random-seed/index.d.ts 0:: WatchInfo: /workspaces/somerepo/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules/@types/random-seed/index.d.ts 0:: WatchInfo: /workspaces/somerepo/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules/@types/random-seed 1:: WatchInfo: /workspaces/somerepo/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules/@types/random-seed 1:: WatchInfo: /workspaces/somerepo/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules/@types 2:: WatchInfo: /workspaces/somerepo/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules/@types 2:: WatchInfo: /workspaces/somerepo/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules/@types/random-seed/index.d.ts 0:: WatchInfo: /workspaces/somerepo/node_modules 1 undefined Project: /workspaces/somerepo/src/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Scheduled: /workspaces/somerepo/src/tsconfig.jsonFailedLookupInvalidation Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules/@types/random-seed/index.d.ts 0:: WatchInfo: /workspaces/somerepo/node_modules 1 undefined Project: /workspaces/somerepo/src/tsconfig.json WatchType: Failed Lookup Locations @@ -629,6 +623,12 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /worksp Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules/@types 2:: WatchInfo: /workspaces/somerepo/node_modules 1 undefined Project: /workspaces/somerepo/src/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Scheduled: /workspaces/somerepo/src/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules/@types 2:: WatchInfo: /workspaces/somerepo/node_modules 1 undefined Project: /workspaces/somerepo/src/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules/@types/random-seed/index.d.ts 0:: WatchInfo: /workspaces/somerepo/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules/@types/random-seed/index.d.ts 0:: WatchInfo: /workspaces/somerepo/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules/@types/random-seed 1:: WatchInfo: /workspaces/somerepo/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules/@types/random-seed 1:: WatchInfo: /workspaces/somerepo/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules/@types 2:: WatchInfo: /workspaces/somerepo/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules/@types 2:: WatchInfo: /workspaces/somerepo/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules/@types/random-seed/index.d.ts 0:: WatchInfo: /workspaces/somerepo/node_modules/@types 1 undefined Project: /workspaces/somerepo/src/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Scheduled: /workspaces/somerepo/src/tsconfig.json Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles* @@ -871,11 +871,11 @@ Before running Timeout callback:: count: 3 Info seq [hh:mm:ss:mss] Running: /workspaces/somerepo/src/tsconfig.json Info seq [hh:mm:ss:mss] sysLog:: onTimerToUpdateChildWatches:: 2 Info seq [hh:mm:ss:mss] sysLog:: invokingWatchers:: Elapsed:: *ms:: 0 -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules :: WatchInfo: /workspaces/somerepo/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules :: WatchInfo: /workspaces/somerepo/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules :: WatchInfo: /workspaces/somerepo/node_modules 1 undefined Project: /workspaces/somerepo/src/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Scheduled: /workspaces/somerepo/src/tsconfig.jsonFailedLookupInvalidation Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules :: WatchInfo: /workspaces/somerepo/node_modules 1 undefined Project: /workspaces/somerepo/src/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules :: WatchInfo: /workspaces/somerepo/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules :: WatchInfo: /workspaces/somerepo/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /workspaces/somerepo/node_modules/@types :: WatchInfo: /workspaces/somerepo/node_modules/@types 1 undefined Project: /workspaces/somerepo/src/tsconfig.json WatchType: Type roots Info seq [hh:mm:ss:mss] Scheduled: /workspaces/somerepo/src/tsconfig.json Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one diff --git a/tests/baselines/reference/tsserver/watchEnvironment/when-watchFile-is-single-watcher-per-file.js b/tests/baselines/reference/tsserver/watchEnvironment/when-watchFile-is-single-watcher-per-file.js index 6337a9c08a0f0..881636e9e2445 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/when-watchFile-is-single-watcher-per-file.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/when-watchFile-is-single-watcher-per-file.js @@ -65,10 +65,10 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots diff --git a/tests/baselines/reference/tsserver/watchEnvironment/with-excludeDirectories-option-in-configFile.js b/tests/baselines/reference/tsserver/watchEnvironment/with-excludeDirectories-option-in-configFile.js index 3fd3250b78894..7b466dd11f46b 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/with-excludeDirectories-option-in-configFile.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/with-excludeDirectories-option-in-configFile.js @@ -80,12 +80,12 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/bar/package.json 2000 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/package.json 2000 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/package.json 2000 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution diff --git a/tests/baselines/reference/tsserver/watchEnvironment/with-excludeDirectories-option-in-configuration.js b/tests/baselines/reference/tsserver/watchEnvironment/with-excludeDirectories-option-in-configuration.js index 6a493fe1594f4..6d7a8a4d648b4 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/with-excludeDirectories-option-in-configuration.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/with-excludeDirectories-option-in-configuration.js @@ -106,12 +106,12 @@ Info seq [hh:mm:ss:mss] event: Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info seq [hh:mm:ss:mss] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":["node_modules"]} WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":["node_modules"]} WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info seq [hh:mm:ss:mss] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/tslibs/TS/Lib/lib.d.ts 500 {"excludeDirectories":["node_modules"]} WatchType: Closed Script info -Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/bar/package.json 2000 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/package.json 2000 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/package.json 2000 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: File location affecting resolution